Overloads
Appends a formatted value to the message.
public void AppendFormatted<T>(T? value);
| Name |
Description |
| T |
The type of the value. |
| Name |
Type |
Description |
| value |
T |
The value to format and append. |
Appends a formatted enumerable to the message.
public void AppendFormatted<T>(IEnumerable<T> value);
| Name |
Description |
| T |
The type of elements in the enumerable. |
| Name |
Type |
Description |
| value |
IEnumerable<T> |
The enumerable to format and append. |
Appends a formatted string value to the message using the specified format.
public void AppendFormatted(string? value, string format);
| Name |
Type |
Description |
| value |
String |
The string value to append. |
| format |
String |
The format specifier. Use "L" for literal (unquoted) output. |