ReferenceExpressionBuilder.ReferenceExpressionBuilderInterpolatedStringHandler.AppendFormatted 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
AppendFormatted(String) |
Appends a formatted value to the expression. |
AppendFormatted<T>(T) |
Appends a formatted value to the expression. The value must implement IValueProvider and IManifestExpressionProvider. |
AppendFormatted(String)
- Source:
- ReferenceExpression.cs
Appends a formatted value to the expression.
public readonly void AppendFormatted (string? value);
member this.AppendFormatted : string -> unit
Public Sub AppendFormatted (value As String)
Parameters
- value
- String
The formatted string to be appended to the interpolated string.
Applies to
AppendFormatted<T>(T)
- Source:
- ReferenceExpression.cs
Appends a formatted value to the expression. The value must implement IValueProvider and IManifestExpressionProvider.
public void AppendFormatted<T> (T valueProvider) where T : Aspire.Hosting.ApplicationModel.IValueProvider, Aspire.Hosting.ApplicationModel.IManifestExpressionProvider;
member this.AppendFormatted : 'T -> unit (requires 'T :> Aspire.Hosting.ApplicationModel.IValueProvider and 'T :> Aspire.Hosting.ApplicationModel.IManifestExpressionProvider)
Public Sub AppendFormatted(Of T As {IValueProvider, IManifestExpressionProvider}) (valueProvider As T)
Type Parameters
- T
Parameters
- valueProvider
- T
An instance of an object which implements IValueProvider and IManifestExpressionProvider.