AppendBlobClient 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
AppendBlobClient() |
Initializes a new instance of the AppendBlobClient class for mocking. |
AppendBlobClient(Uri, BlobClientOptions) |
Initializes a new instance of the AppendBlobClient class. |
AppendBlobClient(String, String, String) |
Initializes a new instance of the AppendBlobClient class. |
AppendBlobClient(Uri, AzureSasCredential, BlobClientOptions) |
Initializes a new instance of the AppendBlobClient class. |
AppendBlobClient(Uri, TokenCredential, BlobClientOptions) |
Initializes a new instance of the AppendBlobClient class. |
AppendBlobClient(Uri, StorageSharedKeyCredential, BlobClientOptions) |
Initializes a new instance of the AppendBlobClient class. |
AppendBlobClient(String, String, String, BlobClientOptions) |
Initializes a new instance of the AppendBlobClient class. |
AppendBlobClient()
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class for mocking.
protected AppendBlobClient ();
Protected Sub New ()
Applies to
AppendBlobClient(Uri, BlobClientOptions)
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class.
public AppendBlobClient (Uri blobUri, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.AppendBlobClient : Uri * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.AppendBlobClient
Public Sub New (blobUri As Uri, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the append 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
AppendBlobClient(String, String, String)
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class.
public AppendBlobClient (string connectionString, string blobContainerName, string blobName);
new Azure.Storage.Blobs.Specialized.AppendBlobClient : string * string * string -> Azure.Storage.Blobs.Specialized.AppendBlobClient
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 append blob.
- blobName
- String
The name of this append blob.
Applies to
AppendBlobClient(Uri, AzureSasCredential, BlobClientOptions)
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class.
public AppendBlobClient (Uri blobUri, Azure.AzureSasCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.AppendBlobClient : Uri * Azure.AzureSasCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.AppendBlobClient
Public Sub New (blobUri As Uri, credential As AzureSasCredential, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the append 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
AppendBlobClient(Uri, TokenCredential, BlobClientOptions)
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class.
public AppendBlobClient (Uri blobUri, Azure.Core.TokenCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.AppendBlobClient : Uri * Azure.Core.TokenCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.AppendBlobClient
Public Sub New (blobUri As Uri, credential As TokenCredential, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the append 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
AppendBlobClient(Uri, StorageSharedKeyCredential, BlobClientOptions)
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class.
public AppendBlobClient (Uri blobUri, Azure.Storage.StorageSharedKeyCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.AppendBlobClient : Uri * Azure.Storage.StorageSharedKeyCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.AppendBlobClient
Public Sub New (blobUri As Uri, credential As StorageSharedKeyCredential, Optional options As BlobClientOptions = Nothing)
Parameters
- blobUri
- Uri
A Uri referencing the append 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
AppendBlobClient(String, String, String, BlobClientOptions)
- Source:
- AppendBlobClient.cs
- Source:
- AppendBlobClient.cs
Initializes a new instance of the AppendBlobClient class.
public AppendBlobClient (string connectionString, string blobContainerName, string blobName, Azure.Storage.Blobs.BlobClientOptions options);
new Azure.Storage.Blobs.Specialized.AppendBlobClient : string * string * string * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.AppendBlobClient
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 append blob.
- blobName
- String
The name of this append 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