TemplateInstanceAttribute.Instances Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft den TemplateInstance-Enumerationswert ab, den die aktuelle Vorlageninstanz darstellt.
public:
property System::Web::UI::TemplateInstance Instances { System::Web::UI::TemplateInstance get(); };
public System.Web.UI.TemplateInstance Instances { get; }
member this.Instances : System.Web.UI.TemplateInstance
Public ReadOnly Property Instances As TemplateInstance
Eigenschaftswert
Ein TemplateInstance-Enumerationswert, den die aktuelle Vorlageninstanz darstellt.
Beispiele
Im folgenden Codebeispiel wird die Verwendung der Instances -Eigenschaft veranschaulicht.
Page_Load
Im Fall einer ASPX-Seite wird die MyLoginViewA
Klasse des benutzerdefinierten Steuerelements TemplateInstanceAttribute für die AnonymousTemplate
-Eigenschaft abgefragt.
Die Definition des Steuerelements MyLoginViewA
finden Sie unter TemplateInstanceAttribute.
protected void Page_Load(object sender, EventArgs e)
{
// Get the class type for which to access metadata.
Type clsType = typeof(MyLoginViewA);
// Get the PropertyInfo object for FirstTemplate.
PropertyInfo pInfo = clsType.GetProperty("AnonymousTemplate");
// See if the TemplateInstanceAttribute is defined for this property.
bool isDef = Attribute.IsDefined(pInfo, typeof(TemplateInstanceAttribute));
// Display the result if the attribute exists.
if (isDef)
{
TemplateInstanceAttribute tia =
(TemplateInstanceAttribute)Attribute.GetCustomAttribute(pInfo, typeof(TemplateInstanceAttribute));
Response.Write("The <AnonymousTemplate> has the TemplateInstanceAttribute = " + tia.Instances.ToString() + ".<br />");
if (tia.IsDefaultAttribute())
Response.Write("The TemplateInstanceAttribute used is the same as the default instance.");
else
Response.Write("The TemplateInstanceAttribute used is not the same as the default instance.");
}
}
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
' Get the class type for which to access metadata.
Dim clsType As Type = GetType(MyLoginViewA)
' Get the PropertyInfo object for FirstTemplate.
Dim pInfo As PropertyInfo = clsType.GetProperty("AnonymousTemplate")
' See if the TemplateInstanceAttribute is defined for this property.
Dim isDef As Boolean = Attribute.IsDefined(pInfo, GetType(TemplateContainerAttribute))
' Display the result if the attribute exists.
If isDef Then
Dim tia As TemplateInstanceAttribute = CType(Attribute.GetCustomAttribute(pInfo, GetType(TemplateInstanceAttribute)), TemplateInstanceAttribute)
Response.Write("The <AnonymousTemplate> has the TemplateInstanceAttribute = " & tia.Instances.ToString() & ".<br />")
If (tia.IsDefaultAttribute()) Then
Response.Write("The TemplateInstanceAttribute used is the same as the default instance.")
Else
Response.Write("The TemplateInstanceAttribute used is not the same as the default instance.")
End If
End If
End Sub
Hinweise
Die möglichen Werte sind entweder das Single Feld oder das Multiple Feld.