2 instantiations of EndpointUpdateContext
Aspire.Hosting (2)
ResourceBuilderExtensions.cs (2)
1504
return builder.WithEndpoint(endpointName, endpoint => callback(new
EndpointUpdateContext
(endpoint)), createIfNotExists);
1539
return builder.WithEndpoint(endpointName, endpoint => callback(new
EndpointUpdateContext
(endpoint)), createIfNotExists: false);
4 references to EndpointUpdateContext
Aspire.Hosting (4)
ResourceBuilderExtensions.cs (4)
1498
internal static IResourceBuilder<T> WithEndpointCallback<T>(this IResourceBuilder<T> builder, [EndpointName] string endpointName, Action<
EndpointUpdateContext
> callback, bool createIfNotExists = true) where T : IResourceWithEndpoints
1511
internal static IResourceBuilder<T> WithHttpEndpointCallback<T>(this IResourceBuilder<T> builder, Action<
EndpointUpdateContext
> callback, [EndpointName] string? name = null, bool createIfNotExists = true) where T : IResourceWithEndpoints
1523
internal static IResourceBuilder<T> WithHttpsEndpointCallback<T>(this IResourceBuilder<T> builder, Action<
EndpointUpdateContext
> callback, [EndpointName] string? name = null, bool createIfNotExists = true) where T : IResourceWithEndpoints
1531
private static IResourceBuilder<T> WithWellKnownEndpointCallback<T>(this IResourceBuilder<T> builder, Action<
EndpointUpdateContext
> callback, string endpointName, bool createIfNotExists, Action<IResourceBuilder<T>, string> createEndpoint) where T : IResourceWithEndpoints