Skip to content
Docs Try Aspire

IAzurePrivateEndpointTargetNotification Methods

Interface Methods 1 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)
{
// ...
}
}
privateEndpoint IResourceBuilder<AzurePrivateEndpointResource> The Azure private endpoint resource that was created. Cannot be null.