<PackageReference Include="Azure.Storage.Common" Version="12.22.0-beta.2" />

StorageConnectionString

Gets a StorageConnectionString object that references the well-known development storage account.

public Uri BlobEndpoint { get; }

Gets the primary endpoint for the Blob service, as configured for the storage account.

public ValueTuple<Uri, Uri> BlobStorageUri { get; set; }

Gets the endpoints for the Blob service at the primary and secondary location, as configured for the storage account.

public object Credentials { get; set; }

Gets the credentials used to create this StorageConnectionString object.

public Uri FileEndpoint { get; }

Gets the primary endpoint for the File service, as configured for the storage account.

public ValueTuple<Uri, Uri> FileStorageUri { get; set; }

Gets the endpoints for the File service at the primary and secondary location, as configured for the storage account.

public Uri QueueEndpoint { get; }

Gets the primary endpoint for the Queue service, as configured for the storage account.

public ValueTuple<Uri, Uri> QueueStorageUri { get; set; }

Gets the endpoints for the Queue service at the primary and secondary location, as configured for the storage account.

public Uri TableEndpoint { get; }

Gets the primary endpoint for the Table service, as configured for the storage account.

public ValueTuple<Uri, Uri> TableStorageUri { get; set; }

Gets the endpoints for the Table service at the primary and secondary location, as configured for the storage account.

public StorageConnectionString(object storageCredentials, ValueTuple<Uri, Uri> blobStorageUri = default, ValueTuple<Uri, Uri> queueStorageUri = default, ValueTuple<Uri, Uri> tableStorageUri = default, ValueTuple<Uri, Uri> fileStorageUri = default)

Initializes a new instance of the StorageConnectionString class using the specified account credentials and service endpoints.

public static StorageConnectionString Parse(string connectionString)

Parses a connection string and returns a StorageConnectionString created from the connection string.

public static bool TryParse(string connectionString, out StorageConnectionString account)

Indicates whether a connection string can be parsed to return a StorageConnectionString object.