HtmlTextWriter.SelfClosingTagEnd フィールド

定義

自己終了マークアップ要素の終了スラッシュ記号と右山かっこ (/>) を表します。

public: System::String ^ SelfClosingTagEnd;
public const string SelfClosingTagEnd;
val mutable SelfClosingTagEnd : string
Public Const SelfClosingTagEnd As String 

フィールド値

次のコード例は、カスタム FileName プロパティの値の後に引用符と フィールドで表される文字をレンダリングする方法を SelfClosingTagEnd 示しています。 このコード例では、 メソッドを Write 呼び出し、 フィールドを SelfClosingTagEnd パラメーター引数として渡して 要素を閉じます。

このコード例では、プロパティ値を FileName レンダリングし、次のマークアップをレンダリングします。

" />

// Write the name of the image file from the 
// FileName property, close the path, and then
// close the <img> element.
writer.Write(FileName);
writer.Write(HtmlTextWriter.DoubleQuoteChar);
writer.Write(HtmlTextWriter.SelfClosingTagEnd);
' Write the name of the image file from the 
' FileName property, close the path, and then
' close the <img> element.
writer.Write(FileName)
writer.Write(HtmlTextWriter.DoubleQuoteChar)
writer.Write(HtmlTextWriter.SelfClosingTagEnd)

注釈

フィールドは SelfClosingTagEnd 、自己終了マークアップ要素を RenderBeginTag 構築するときに、 メソッドによって使用されます。

適用対象

こちらもご覧ください