Skip to content
DocsTry Aspire
DocsTry

IAzurePrivateEndpointTargetNotification Methods

InterfaceMethods1 member
An optional interface that can be implemented by resources that are targets for Azure private endpoints, to receive a notification when a private endpoint is created for them.
OnPrivateEndpointCreated(IResourceBuilder<AzurePrivateEndpointResource>)Section titled OnPrivateEndpointCreated(IResourceBuilder<AzurePrivateEndpointResource>)abstract
Handles the event that occurs when a new Azure private endpoint resource is created.
public interface IAzurePrivateEndpointTargetNotification
{
public abstract void OnPrivateEndpointCreated(
IResourceBuilder<AzurePrivateEndpointResource> privateEndpoint)
{
// ...
}
}
privateEndpointIResourceBuilder<AzurePrivateEndpointResource>The Azure private endpoint resource that was created. Cannot be null.