HtmlTextWriter.SelfClosingTagEnd Bidang
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mewakili tanda garis miring penutup dan kurung sudut kanan (/>) dari elemen markup penutupan mandiri.
public: System::String ^ SelfClosingTagEnd;
public const string SelfClosingTagEnd;
val mutable SelfClosingTagEnd : string
Public Const SelfClosingTagEnd As String
Nilai Bidang
Contoh
Contoh kode berikut menunjukkan cara merender nilai properti kustom FileName
diikuti dengan tanda kutip dan karakter yang diwakili oleh SelfClosingTagEnd bidang . Contoh kode memanggil Write metode dan meneruskan SelfClosingTagEnd bidang sebagai argumen parameter untuk menutup elemen .
Contoh kode ini merender FileName
nilai properti, lalu markup berikut:
" />
// 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)
Keterangan
Bidang SelfClosingTagEnd digunakan oleh RenderBeginTag metode saat membuat elemen markup penutupan mandiri.