HtmlTextWriter.GetTagName(HtmlTextWriterTag) Metodo

Definizione

Ottiene l'elemento di markup associato al valore di enumerazione di HtmlTextWriterTag specificato.

protected:
 virtual System::String ^ GetTagName(System::Web::UI::HtmlTextWriterTag tagKey);
protected virtual string GetTagName (System.Web.UI.HtmlTextWriterTag tagKey);
abstract member GetTagName : System.Web.UI.HtmlTextWriterTag -> string
override this.GetTagName : System.Web.UI.HtmlTextWriterTag -> string
Protected Overridable Function GetTagName (tagKey As HtmlTextWriterTag) As String

Parametri

tagKey
HtmlTextWriterTag

Oggetto HtmlTextWriterTag per il quale ottenere l'elemento di markup.

Restituisce

String

Stringa che rappresenta l'elemento di markup.

Esempio

Nell'esempio di codice seguente viene illustrato come chiudere un <font> elemento usando il WriteEndTag metodo . Il WriteEndTag metodo chiama il metodo per convertire il Font GetTagName valore in una stringa.

// Close the Font element.
WriteEndTag( GetTagName( HtmlTextWriterTag::Font ) );
// Close the Font element.
Write(GetTagName(HtmlTextWriterTag.Font));
    ' Close the Font element.
    Me.WriteEndTag(GetTagName(HtmlTextWriterTag.Font))
End If

Commenti

Se tagKey non è un valore valido HtmlTextWriterTag , il GetTagName metodo restituisce una stringa vuota ("").

Si applica a

Vedi anche