6 instantiations of CommandLineArgsCallbackContext
Aspire.Hosting (1)
ApplicationModel\ResourceExtensions.cs (1)
285var context = new CommandLineArgsCallbackContext(args, cancellationToken)
Aspire.Hosting.Azure (1)
AzureResourcePreparer.cs (1)
383var context = new CommandLineArgsCallbackContext([], cancellationToken: cancellationToken);
Aspire.Hosting.Azure.AppContainers (1)
ContainerAppContext.cs (1)
425var context = new CommandLineArgsCallbackContext(Args, cancellationToken: cancellationToken)
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebsiteContext.cs (1)
65var context = new CommandLineArgsCallbackContext(Args, cancellationToken)
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentContext.cs (1)
147var context = new CommandLineArgsCallbackContext(serviceResource.Args, cancellationToken: cancellationToken)
Aspire.Hosting.Kubernetes (1)
KubernetesResource.cs (1)
229var context = new CommandLineArgsCallbackContext([], cancellationToken: cancellationToken);
16 references to CommandLineArgsCallbackContext
Aspire.Hosting (7)
ApplicationModel\CommandLineArgsCallbackAnnotation.cs (2)
18public CommandLineArgsCallbackAnnotation(Func<CommandLineArgsCallbackContext, Task> callback) 43public Func<CommandLineArgsCallbackContext, Task> Callback { get; }
ApplicationModel\ResourceExtensions.cs (1)
285var context = new CommandLineArgsCallbackContext(args, cancellationToken)
ContainerResourceBuilderExtensions.cs (2)
345/// This is intended to pass additional arguments to the underlying container runtime run command to enable advanced features such as exposing GPUs to the container. To pass runtime arguments to the actual container, use the <see cref="ResourceBuilderExtensions.WithArgs{T}(IResourceBuilder{T}, Action{CommandLineArgsCallbackContext})"/> method. 367/// This is intended to pass additional arguments to the underlying container runtime run command to enable advanced features such as exposing GPUs to the container. To pass runtime arguments to the actual container, use the <see cref="ResourceBuilderExtensions.WithArgs{T}(IResourceBuilder{T}, Func{CommandLineArgsCallbackContext, Task})"/> method.
ResourceBuilderExtensions.cs (2)
315public static IResourceBuilder<T> WithArgs<T>(this IResourceBuilder<T> builder, Action<CommandLineArgsCallbackContext> callback) where T : IResourceWithArgs 334public static IResourceBuilder<T> WithArgs<T>(this IResourceBuilder<T> builder, Func<CommandLineArgsCallbackContext, Task> callback) where T : IResourceWithArgs
Aspire.Hosting.Azure (1)
AzureResourcePreparer.cs (1)
383var context = new CommandLineArgsCallbackContext([], cancellationToken: cancellationToken);
Aspire.Hosting.Azure.AppContainers (1)
ContainerAppContext.cs (1)
425var context = new CommandLineArgsCallbackContext(Args, cancellationToken: cancellationToken)
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebsiteContext.cs (1)
65var context = new CommandLineArgsCallbackContext(Args, cancellationToken)
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentContext.cs (1)
147var context = new CommandLineArgsCallbackContext(serviceResource.Args, cancellationToken: cancellationToken)
Aspire.Hosting.Kubernetes (1)
KubernetesResource.cs (1)
229var context = new CommandLineArgsCallbackContext([], cancellationToken: cancellationToken);
Aspire.Hosting.Python (4)
PythonAppResourceBuilderExtensions.cs (2)
155private static void AddArguments(string scriptPath, string[] scriptArgs, CommandLineArgsCallbackContext context) 165private static void AddOpenTelemetryArguments(CommandLineArgsCallbackContext context)
PythonProjectResourceBuilderExtensions.cs (2)
158private static void AddProjectArguments(string scriptPath, string[] scriptArgs, CommandLineArgsCallbackContext context) 168private static void AddOpenTelemetryArguments(CommandLineArgsCallbackContext context)