IAttributeAccessor.GetAttribute-Methode
Ruft bei der Implementierung durch eine Klasse die angegebene Attributeigenschaft vom Serversteuerelement ab.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Function GetAttribute ( _
key As String _
) As String
'Usage
Dim instance As IAttributeAccessor
Dim key As String
Dim returnValue As String
returnValue = instance.GetAttribute(key)
string GetAttribute (
string key
)
String^ GetAttribute (
String^ key
)
String GetAttribute (
String key
)
function GetAttribute (
key : String
) : String
Parameter
- key
Ein String, der den Namen des Serversteuerelementattributs darstellt.
Rückgabewert
Der Wert des angegebenen Attributs.
Beispiel
Im folgenden Codebeispiel wird eine Implementierung der GetAttribute-Methode gezeigt.
' Implement the GetAttribute method for the control. When
' this method is called from a page, the values for the control's
' properties can be displayed in the page.
Public Function GetAttribute(name As String) As String Implements IAttributeAccessor.GetAttribute
Return CType(ViewState(name), String)
End Function 'GetAttribute
// Implement the GetAttribute method for the control. When
// this method is called from a page, the values for the control's
// properties can be displayed in the page.
public String GetAttribute(String name)
{
return (String)ViewState[name];
}
// Implement the GetAttribute method for the control. When
// this method is called from a page, the values for the control's
// properties can be displayed in the page.
public String GetAttribute(String name)
{
return (String)(this.get_ViewState().get_Item(name));
} //GetAttribute
Plattformen
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
IAttributeAccessor-Schnittstelle
IAttributeAccessor-Member
System.Web.UI-Namespace