HtmlContentBuilderExtensions.AppendLine 메서드

정의

오버로드

AppendLine(IHtmlContentBuilder)

NewLine추가합니다.

AppendLine(IHtmlContentBuilder, IHtmlContent)

값을 추가한 후 를 NewLine 추가합니다 IHtmlContent .

AppendLine(IHtmlContentBuilder, String)

값을 추가한 후 를 NewLine 추가합니다 String . 값은 제공된 대로 인코딩되지 않은 것으로 처리되며 출력에 쓰기 전에 HTML 인코딩됩니다.

AppendLine(IHtmlContentBuilder)

NewLine추가합니다.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendLine(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendLine (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder);
static member AppendLine : Microsoft.AspNetCore.Html.IHtmlContentBuilder -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendLine (builder As IHtmlContentBuilder) As IHtmlContentBuilder

매개 변수

반환

IHtmlContentBuilder

적용 대상

AppendLine(IHtmlContentBuilder, IHtmlContent)

값을 추가한 후 를 NewLine 추가합니다 IHtmlContent .

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendLine(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder, Microsoft::AspNetCore::Html::IHtmlContent ^ content);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendLine (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, Microsoft.AspNetCore.Html.IHtmlContent content);
static member AppendLine : Microsoft.AspNetCore.Html.IHtmlContentBuilder * Microsoft.AspNetCore.Html.IHtmlContent -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendLine (builder As IHtmlContentBuilder, content As IHtmlContent) As IHtmlContentBuilder

매개 변수

content
IHtmlContent

추가할 IHtmlContent입니다.

반환

IHtmlContentBuilder

적용 대상

AppendLine(IHtmlContentBuilder, String)

값을 추가한 후 를 NewLine 추가합니다 String . 값은 제공된 대로 인코딩되지 않은 것으로 처리되며 출력에 쓰기 전에 HTML 인코딩됩니다.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendLine(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder, System::String ^ unencoded);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendLine (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, string unencoded);
static member AppendLine : Microsoft.AspNetCore.Html.IHtmlContentBuilder * string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendLine (builder As IHtmlContentBuilder, unencoded As String) As IHtmlContentBuilder

매개 변수

unencoded
String

추가할 String입니다.

반환

IHtmlContentBuilder

적용 대상