IndentedStringBuilder.Append Method

Definition

Overloads

Append(Char)

Appends the current indent and then the given char to the string being built.

Append(IEnumerable<Char>)

Appends the current indent and then the given chars to the string being built.

Append(IEnumerable<String>)

Appends the current indent and then the given strings to the string being built.

Append(FormattableString)

Appends the current indent and then the given string to the string being built.

Append(String)

Appends the current indent and then the given string to the string being built.

Append(Char)

Appends the current indent and then the given char to the string being built.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (char value);
abstract member Append : char -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : char -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As Char) As IndentedStringBuilder

Parameters

value
Char

The char to append.

Returns

This builder so that additional calls can be chained.

Applies to

Append(IEnumerable<Char>)

Appends the current indent and then the given chars to the string being built.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (System.Collections.Generic.IEnumerable<char> value);
abstract member Append : seq<char> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : seq<char> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As IEnumerable(Of Char)) As IndentedStringBuilder

Parameters

value
IEnumerable<Char>

The chars to append.

Returns

This builder so that additional calls can be chained.

Applies to

Append(IEnumerable<String>)

Appends the current indent and then the given strings to the string being built.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (System.Collections.Generic.IEnumerable<string> value);
abstract member Append : seq<string> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : seq<string> -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As IEnumerable(Of String)) As IndentedStringBuilder

Parameters

value
IEnumerable<String>

The strings to append.

Returns

This builder so that additional calls can be chained.

Applies to

Append(FormattableString)

Appends the current indent and then the given string to the string being built.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (FormattableString value);
abstract member Append : FormattableString -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : FormattableString -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As FormattableString) As IndentedStringBuilder

Parameters

value
FormattableString

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to

Append(String)

Appends the current indent and then the given string to the string being built.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder Append (string value);
abstract member Append : string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.Append : string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function Append (value As String) As IndentedStringBuilder

Parameters

value
String

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to