Skip to content
Docs Try Aspire

AzureVirtualNetworkResource Constructors

Class Constructors 3 members
Represents an Azure Virtual Network resource.
Constructor(string, Action<AzureResourceInfrastructure>) Section titled Constructor(string, Action<AzureResourceInfrastructure>)
Represents an Azure Virtual Network resource.
public class AzureVirtualNetworkResource
{
public AzureVirtualNetworkResource(
string name,
Action<AzureResourceInfrastructure> configureInfrastructure)
{
// ...
}
}
name string The name of the resource.
configureInfrastructure Action<AzureResourceInfrastructure> Callback to configure the Azure Virtual Network resource.
Constructor(string, Action<AzureResourceInfrastructure>, string?) Section titled Constructor(string, Action<AzureResourceInfrastructure>, string?)
Initializes a new instance of the AzureVirtualNetworkResource class with a string address prefix.
public class AzureVirtualNetworkResource
{
public AzureVirtualNetworkResource(
string name,
Action<AzureResourceInfrastructure> configureInfrastructure,
string? addressPrefix)
{
// ...
}
}
name string The name of the resource.
configureInfrastructure Action<AzureResourceInfrastructure> Callback to configure the Azure Virtual Network resource.
addressPrefix string? The address prefix for the virtual network (e.g., "10.0.0.0/16").
Constructor(string, Action<AzureResourceInfrastructure>, ParameterResource) Section titled Constructor(string, Action<AzureResourceInfrastructure>, ParameterResource)
Initializes a new instance of the AzureVirtualNetworkResource class with a parameterized address prefix.
public class AzureVirtualNetworkResource
{
public AzureVirtualNetworkResource(
string name,
Action<AzureResourceInfrastructure> configureInfrastructure,
ParameterResource addressPrefix)
{
// ...
}
}
name string The name of the resource.
configureInfrastructure Action<AzureResourceInfrastructure> Callback to configure the Azure Virtual Network resource.
addressPrefix ParameterResource The parameter resource containing the address prefix for the virtual network.