C# 클래스 Microsoft.AspNetCore.Html.HtmlContentBuilder

An IHtmlContentBuilder implementation using an in memory list.
상속: IHtmlContentBuilder
파일 보기 프로젝트 열기: aspnet/HtmlAbstractions 1 사용 예제들

Private Properties

프로퍼티 타입 설명
DebuggerToString string

공개 메소드들

메소드 설명
Append ( string unencoded ) : IHtmlContentBuilder
AppendHtml ( IHtmlContent htmlContent ) : IHtmlContentBuilder
AppendHtml ( string encoded ) : IHtmlContentBuilder
Clear ( ) : IHtmlContentBuilder
CopyTo ( IHtmlContentBuilder destination ) : void
HtmlContentBuilder ( ) : System

Creates a new HtmlContentBuilder.

HtmlContentBuilder ( IList entries ) : System

Creates a new HtmlContentBuilder with the given list of entries.

HtmlContentBuilder ( int capacity ) : System

Creates a new HtmlContentBuilder with the given initial capacity.

MoveTo ( IHtmlContentBuilder destination ) : void
WriteTo ( TextWriter writer, System.Text.Encodings.Web.HtmlEncoder encoder ) : void

비공개 메소드들

메소드 설명
DebuggerToString ( ) : string

메소드 상세

Append() 공개 메소드

public Append ( string unencoded ) : IHtmlContentBuilder
unencoded string
리턴 IHtmlContentBuilder

AppendHtml() 공개 메소드

public AppendHtml ( IHtmlContent htmlContent ) : IHtmlContentBuilder
htmlContent IHtmlContent
리턴 IHtmlContentBuilder

AppendHtml() 공개 메소드

public AppendHtml ( string encoded ) : IHtmlContentBuilder
encoded string
리턴 IHtmlContentBuilder

Clear() 공개 메소드

public Clear ( ) : IHtmlContentBuilder
리턴 IHtmlContentBuilder

CopyTo() 공개 메소드

public CopyTo ( IHtmlContentBuilder destination ) : void
destination IHtmlContentBuilder
리턴 void

HtmlContentBuilder() 공개 메소드

Creates a new HtmlContentBuilder.
public HtmlContentBuilder ( ) : System
리턴 System

HtmlContentBuilder() 공개 메소드

Creates a new HtmlContentBuilder with the given list of entries.
public HtmlContentBuilder ( IList entries ) : System
entries IList /// The list of entries. The will use this list without making a copy. ///
리턴 System

HtmlContentBuilder() 공개 메소드

Creates a new HtmlContentBuilder with the given initial capacity.
public HtmlContentBuilder ( int capacity ) : System
capacity int The initial capacity of the backing store.
리턴 System

MoveTo() 공개 메소드

public MoveTo ( IHtmlContentBuilder destination ) : void
destination IHtmlContentBuilder
리턴 void

WriteTo() 공개 메소드

public WriteTo ( TextWriter writer, System.Text.Encodings.Web.HtmlEncoder encoder ) : void
writer System.IO.TextWriter
encoder System.Text.Encodings.Web.HtmlEncoder
리턴 void