HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Метод

Определение

Получает имя атрибута разметки, связанного с указанным значением HtmlTextWriterAttribute.

protected:
 System::String ^ GetAttributeName(System::Web::UI::HtmlTextWriterAttribute attrKey);
protected string GetAttributeName (System.Web.UI.HtmlTextWriterAttribute attrKey);
member this.GetAttributeName : System.Web.UI.HtmlTextWriterAttribute -> string
Protected Function GetAttributeName (attrKey As HtmlTextWriterAttribute) As String

Параметры

attrKey
HtmlTextWriterAttribute

HtmlTextWriterAttribute для которого требуется получить имя атрибута разметки.

Возвращаемое значение

String

Строка, содержащая имя атрибута разметки.

Примеры

В следующем примере кода показано, как использовать GetAttributeName метод для преобразования Size значения перечисления в его строковое имя.

// Use the GetAttributeName method to associate 
// the Size attribute with its HtmlTextWriteAttribute
// enumeration value in a Write method call.
Write( GetAttributeName( HtmlTextWriterAttribute::Size ) );
// Use the GetAttributeName method to associate 
// the Size attribute with its HtmlTextWriteAttribute
// enumeration value in a Write method call.
Write(GetAttributeName(HtmlTextWriterAttribute.Size));
' Use the GetAttributeName method to associate 
' the Size attribute with its HtmlTextWriteAttribute
' enumeration value in a Write method call.
writer.Write(GetAttributeName(HtmlTextWriterAttribute.Size))

Комментарии

Метод GetAttributeName возвращает пустую строку (""), если attrKey не является допустимым HtmlTextWriterAttribute значением.

Применяется к

См. также раздел