CertificateTrustConfigurationCallbackAnnotationContext.Arguments Property
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.
Gets the command line arguments associated with the callback context. Values can be either a string or a path value provider such as CertificateBundlePath or CertificateDirectoriesPath.
public System.Collections.Generic.List<object> Arguments { get; init; }
member this.Arguments : System.Collections.Generic.List<obj> with get, set
Public Property Arguments As List(Of Object)
Property Value
Remarks
builder.AddContainer("my-resource", "my-image:latest")
.WithCertificateTrustConfigurationCallback(ctx =>
{
ctx.Arguments.Add("--use-system-ca");
return Task.CompletedTask;
});