HtmlContentBuilderExtensions.AppendLine メソッド

定義

オーバーロード

AppendLine(IHtmlContentBuilder)

を追加します NewLine

AppendLine(IHtmlContentBuilder, IHtmlContent)

値を追加した NewLine 後に を IHtmlContent 追加します。

AppendLine(IHtmlContentBuilder, String)

値を追加した NewLine 後に を String 追加します。 値は指定されたとおりにエンコードされていないものとして扱われ、出力に書き込む前に HTML エンコードされます。

AppendLine(IHtmlContentBuilder)

ソース:
HtmlContentBuilderExtensions.cs
ソース:
HtmlContentBuilderExtensions.cs

を追加します 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)

ソース:
HtmlContentBuilderExtensions.cs
ソース:
HtmlContentBuilderExtensions.cs

値を追加した 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)

ソース:
HtmlContentBuilderExtensions.cs
ソース:
HtmlContentBuilderExtensions.cs

値を追加した 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

適用対象