StorageUri Constructors

Definition

Overloads

StorageUri(Uri)

Initializes a new instance of the StorageUri class using the primary endpoint for the storage account.

StorageUri(Uri, Uri)

Initializes a new instance of the StorageUri class using the primary and secondary endpoints for the storage account.

StorageUri(Uri)

Initializes a new instance of the StorageUri class using the primary endpoint for the storage account.

public StorageUri (Uri primaryUri);
new Microsoft.Azure.Storage.StorageUri : Uri -> Microsoft.Azure.Storage.StorageUri
Public Sub New (primaryUri As Uri)

Parameters

primaryUri
Uri

The Uri for the primary endpoint.

Applies to

StorageUri(Uri, Uri)

Initializes a new instance of the StorageUri class using the primary and secondary endpoints for the storage account.

public StorageUri (Uri primaryUri, Uri secondaryUri);
new Microsoft.Azure.Storage.StorageUri : Uri * Uri -> Microsoft.Azure.Storage.StorageUri
Public Sub New (primaryUri As Uri, secondaryUri As Uri)

Parameters

primaryUri
Uri

The Uri for the primary endpoint.

secondaryUri
Uri

The Uri for the secondary endpoint.

Applies to