3 implementations of IResourceWithArgs
Aspire.Hosting (3)
ApplicationModel\ContainerResource.cs (1)
14: Resource(name), IResourceWithEnvironment, IResourceWithArgs, IResourceWithEndpoints, IResourceWithWaitSupport,
ApplicationModel\ExecutableResource.cs (1)
24: Resource(name), IResourceWithEnvironment, IResourceWithArgs, IResourceWithEndpoints, IResourceWithWaitSupport,
ApplicationModel\ProjectResource.cs (1)
13: Resource(name), IResourceWithEnvironment, IResourceWithArgs, IResourceWithServiceDiscovery, IResourceWithWaitSupport,
10 references to IResourceWithArgs
Aspire.Hosting (10)
ApplicationModel\ResourceExtensions.cs (2)
217/// Using <see cref="GetArgumentValuesAsync(IResourceWithArgs, DistributedApplicationOperation)"/> inside 239public static async ValueTask<string[]> GetArgumentValuesAsync(this IResourceWithArgs resource,
ResourceBuilderExtensions.cs (8)
209/// <param name="builder">The resource builder for a resource implementing <see cref="IResourceWithArgs"/>.</param> 212public static IResourceBuilder<T> WithArgs<T>(this IResourceBuilder<T> builder, params string[] args) where T : IResourceWithArgs 224/// <param name="builder">The resource builder for a resource implementing <see cref="IResourceWithArgs"/>.</param> 227public static IResourceBuilder<T> WithArgs<T>(this IResourceBuilder<T> builder, params object[] args) where T : IResourceWithArgs 241/// <param name="builder">The resource builder for a resource implementing <see cref="IResourceWithArgs"/>.</param> 244public static IResourceBuilder<T> WithArgs<T>(this IResourceBuilder<T> builder, Action<CommandLineArgsCallbackContext> callback) where T : IResourceWithArgs 260/// <param name="builder">The resource builder for a resource implementing <see cref="IResourceWithArgs"/>.</param> 263public static IResourceBuilder<T> WithArgs<T>(this IResourceBuilder<T> builder, Func<CommandLineArgsCallbackContext, Task> callback) where T : IResourceWithArgs