HtmlTextWriter.SelfClosingTagEnd フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
自己終了マークアップ要素の終了スラッシュ記号と右山かっこ (/>) を表します。
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 構築するときに、 メソッドによって使用されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET