HtmlTextWriter.RenderEndTag Method
이 문서의 내용
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes the end tag of a markup element to the output stream.
public:
virtual void RenderEndTag();
public virtual void RenderEndTag();
abstract member RenderEndTag : unit -> unit
override this.RenderEndTag : unit -> unit
Public Overridable Sub RenderEndTag ()
The following code example demonstrates how to call the RenderEndTag method after both the RenderBeginTag method that generates the opening tag and the Write method that renders the inner markup between the opening and closing tags of the custom MyTag
element have been called.
This code example generates the following markup:
<MyTag>
Contents of MyTag
</MyTag>
// Create a non-standard tag.
writer->RenderBeginTag( "MyTag" );
writer->Write( "Contents of MyTag" );
writer->RenderEndTag();
writer->WriteLine();
// Create a non-standard tag.
writer.RenderBeginTag("MyTag");
writer.Write("Contents of MyTag");
writer.RenderEndTag();
writer.WriteLine();
' Create a non-standard tag.
writer.RenderBeginTag("MyTag")
writer.Write("Contents of MyTag")
writer.RenderEndTag()
writer.WriteLine()
Call the RenderEndTag method after the RenderBeginTag overload is called and after all content between the opening and closing tags (inner markup) of the element has been rendered.
Applies to
제품 | 버전 |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.