Share via


CertificateTrustConfigurationCallbackAnnotationContext.Arguments Property

Definition

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;
   });

Applies to