HtmlContentBuilderExtensions.AppendLine 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.
Overloads
| AppendLine(IHtmlContentBuilder) | 
						 Appends an NewLine.  | 
        	
| AppendLine(IHtmlContentBuilder, IHtmlContent) | 
						 Appends an NewLine after appending the IHtmlContent value.  | 
        	
| AppendLine(IHtmlContentBuilder, String) | 
						 Appends an NewLine after appending the String value. The value is treated as unencoded as-provided, and will be HTML encoded before writing to output.  | 
        	
AppendLine(IHtmlContentBuilder)
Appends an 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
	Parameters
- builder
 - IHtmlContentBuilder
 
The IHtmlContentBuilder.
Returns
The IHtmlContentBuilder.
Applies to
AppendLine(IHtmlContentBuilder, IHtmlContent)
Appends an NewLine after appending the IHtmlContent value.
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
	Parameters
- builder
 - IHtmlContentBuilder
 
The IHtmlContentBuilder.
- content
 - IHtmlContent
 
The IHtmlContent to append.
Returns
The IHtmlContentBuilder.
Applies to
AppendLine(IHtmlContentBuilder, String)
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
	Parameters
- builder
 - IHtmlContentBuilder
 
The IHtmlContentBuilder.
Returns
The IHtmlContentBuilder.