ContainerResourceBuilderExtensions.WithEntrypoint<T> Method
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.
Sets the Entrypoint for the container.
public static Aspire.Hosting.ApplicationModel.IResourceBuilder<T> WithEntrypoint<T> (this Aspire.Hosting.ApplicationModel.IResourceBuilder<T> builder, string entrypoint) where T : Aspire.Hosting.ApplicationModel.ContainerResource;
static member WithEntrypoint : Aspire.Hosting.ApplicationModel.IResourceBuilder<'T (requires 'T :> Aspire.Hosting.ApplicationModel.ContainerResource)> * string -> Aspire.Hosting.ApplicationModel.IResourceBuilder<'T (requires 'T :> Aspire.Hosting.ApplicationModel.ContainerResource)> (requires 'T :> Aspire.Hosting.ApplicationModel.ContainerResource)
<Extension()>
Public Function WithEntrypoint(Of T As ContainerResource) (builder As IResourceBuilder(Of T), entrypoint As String) As IResourceBuilder(Of T)
Type Parameters
- T
The resource type.
Parameters
- builder
- IResourceBuilder<T>
The resource builder.
- entrypoint
- String
The new entrypoint for the container.
Returns
The IResourceBuilder<T>.