IAttributeAccessor.GetAttribute(String) Method

Definition

When implemented by a class, retrieves the specified attribute property from the server control.

public:
 System::String ^ GetAttribute(System::String ^ key);
public string GetAttribute (string key);
abstract member GetAttribute : string -> string
Public Function GetAttribute (key As String) As String

Parameters

key
String

A String that represents the name of the server control attribute.

Returns

The value of the specified attribute.

Examples

The following code example demonstrates an implementation of the GetAttribute method.

// 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 Function GetAttribute(name As String) As String Implements IAttributeAccessor.GetAttribute
   Return CType(ViewState(name), String)
End Function 'GetAttribute

Applies to