BlobClient Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BlobClient() |
Initializes a new instance of the BlobClient class for mocking. |
BlobClient(Uri, BlobClientOptions) |
Initializes a new instance of the BlobClient class. |
BlobClient(String, String, String) |
Initializes a new instance of the BlobClient class. |
BlobClient(Uri, AzureSasCredential, BlobClientOptions) |
Initializes a new instance of the BlobClient class. |
BlobClient(Uri, TokenCredential, BlobClientOptions) |
Initializes a new instance of the BlobClient class. |
BlobClient(Uri, StorageSharedKeyCredential, BlobClientOptions) |
Initializes a new instance of the BlobClient class. |
BlobClient(String, String, String, BlobClientOptions) |
Initializes a new instance of the BlobClient class. |
BlobClient()
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class for mocking.
protected BlobClient ();
Protected Sub New ()
Applies to
BlobClient(Uri, BlobClientOptions)
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class.
public BlobClient (Uri blobUri, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.BlobClient : Uri * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobClient
Public Sub New (blobUri As Uri, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the blob that includes the name of the account, the name of the container, and the name of the blob. This is likely to be similar to "https://{account_name}.blob.core.windows.net/{container_name}/{blob_name}".
- options
- BlobClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
BlobClient(String, String, String)
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class.
public BlobClient (string connectionString, string blobContainerName, string blobName);
new Azure.Storage.Blobs.BlobClient : string * string * string -> Azure.Storage.Blobs.BlobClient
Public Sub New (connectionString As String, blobContainerName As String, blobName As String)
Parameters
- connectionString
- String
A connection string includes the authentication information required for your application to access data in an Azure Storage account at runtime.
For more information, Configure Azure Storage connection strings.
- blobContainerName
- String
The name of the container containing this blob.
- blobName
- String
The name of this blob.
Applies to
BlobClient(Uri, AzureSasCredential, BlobClientOptions)
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class.
public BlobClient (Uri blobUri, Azure.AzureSasCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.BlobClient : Uri * Azure.AzureSasCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobClient
Public Sub New (blobUri As Uri, credential As AzureSasCredential, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the blob that includes the name of the account, the name of the container, and the name of the blob. This is likely to be similar to "https://{account_name}.blob.core.windows.net/{container_name}/{blob_name}". Must not contain shared access signature, which should be passed in the second parameter.
- credential
- AzureSasCredential
The shared access signature credential used to sign requests.
- options
- BlobClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Remarks
This constructor should only be used when shared access signature needs to be updated during lifespan of this client.
Applies to
BlobClient(Uri, TokenCredential, BlobClientOptions)
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class.
public BlobClient (Uri blobUri, Azure.Core.TokenCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.BlobClient : Uri * Azure.Core.TokenCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobClient
Public Sub New (blobUri As Uri, credential As TokenCredential, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the blob that includes the name of the account, the name of the container, and the name of the blob. This is likely to be similar to "https://{account_name}.blob.core.windows.net/{container_name}/{blob_name}".
- credential
- TokenCredential
The token credential used to sign requests.
- options
- BlobClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
BlobClient(Uri, StorageSharedKeyCredential, BlobClientOptions)
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class.
public BlobClient (Uri blobUri, Azure.Storage.StorageSharedKeyCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.BlobClient : Uri * Azure.Storage.StorageSharedKeyCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobClient
Public Sub New (blobUri As Uri, credential As StorageSharedKeyCredential, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the blob that includes the name of the account, the name of the container, and the name of the blob. This is likely to be similar to "https://{account_name}.blob.core.windows.net/{container_name}/{blob_name}".
- credential
- StorageSharedKeyCredential
The shared key credential used to sign requests.
- options
- BlobClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
BlobClient(String, String, String, BlobClientOptions)
- Source:
- BlobClient.cs
- Source:
- BlobClient.cs
Initializes a new instance of the BlobClient class.
public BlobClient (string connectionString, string blobContainerName, string blobName, Azure.Storage.Blobs.BlobClientOptions options);
new Azure.Storage.Blobs.BlobClient : string * string * string * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobClient
Public Sub New (connectionString As String, blobContainerName As String, blobName As String, options As BlobClientOptions)
Parameters
- connectionString
- String
A connection string includes the authentication information required for your application to access data in an Azure Storage account at runtime.
For more information, Configure Azure Storage connection strings.
- blobContainerName
- String
The name of the container containing this blob.
- blobName
- String
The name of this blob.
- options
- BlobClientOptions
Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.
Applies to
Azure SDK for .NET