PageBlobClient Constructors

Definition

Overloads

PageBlobClient()

Initializes a new instance of the PageBlobClient class for mocking.

PageBlobClient(Uri, BlobClientOptions)

Initializes a new instance of the PageBlobClient class.

PageBlobClient(String, String, String)

Initializes a new instance of the PageBlobClient class.

PageBlobClient(Uri, AzureSasCredential, BlobClientOptions)

Initializes a new instance of the PageBlobClient class.

PageBlobClient(Uri, TokenCredential, BlobClientOptions)

Initializes a new instance of the PageBlobClient class.

PageBlobClient(Uri, StorageSharedKeyCredential, BlobClientOptions)

Initializes a new instance of the PageBlobClient class.

PageBlobClient(String, String, String, BlobClientOptions)

Initializes a new instance of the PageBlobClient class.

PageBlobClient()

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class for mocking.

protected PageBlobClient ();
Protected Sub New ()

Applies to

PageBlobClient(Uri, BlobClientOptions)

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class.

public PageBlobClient (Uri blobUri, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.PageBlobClient : Uri * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.PageBlobClient
Public Sub New (blobUri As Uri, Optional options As BlobClientOptions = Nothing)

Parameters

blobUri
Uri

A Uri referencing the page blob that includes the name of the account, the name of the blob container, and the name of the blob.

options
BlobClientOptions

Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.

Applies to

PageBlobClient(String, String, String)

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class.

public PageBlobClient (string connectionString, string blobContainerName, string blobName);
new Azure.Storage.Blobs.Specialized.PageBlobClient : string * string * string -> Azure.Storage.Blobs.Specialized.PageBlobClient
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 page blob.

blobName
String

The name of this page blob.

Applies to

PageBlobClient(Uri, AzureSasCredential, BlobClientOptions)

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class.

public PageBlobClient (Uri blobUri, Azure.AzureSasCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.PageBlobClient : Uri * Azure.AzureSasCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.PageBlobClient
Public Sub New (blobUri As Uri, credential As AzureSasCredential, Optional options As BlobClientOptions = Nothing)

Parameters

blobUri
Uri

A Uri referencing the page blob that includes the name of the account, the name of the blob container, and the name of the blob. 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

PageBlobClient(Uri, TokenCredential, BlobClientOptions)

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class.

public PageBlobClient (Uri blobUri, Azure.Core.TokenCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.PageBlobClient : Uri * Azure.Core.TokenCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.PageBlobClient
Public Sub New (blobUri As Uri, credential As TokenCredential, Optional options As BlobClientOptions = Nothing)

Parameters

blobUri
Uri

A Uri referencing the page blob that includes the name of the account, the name of the blob container, and the name of the blob.

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

PageBlobClient(Uri, StorageSharedKeyCredential, BlobClientOptions)

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class.

public PageBlobClient (Uri blobUri, Azure.Storage.StorageSharedKeyCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);
new Azure.Storage.Blobs.Specialized.PageBlobClient : Uri * Azure.Storage.StorageSharedKeyCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.PageBlobClient
Public Sub New (blobUri As Uri, credential As StorageSharedKeyCredential, Optional options As BlobClientOptions = Nothing)

Parameters

blobUri
Uri

A Uri referencing the page blob that includes the name of the account, the name of the blob container, and the name of the blob.

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

PageBlobClient(String, String, String, BlobClientOptions)

Source:
PageBlobClient.cs
Source:
PageBlobClient.cs

Initializes a new instance of the PageBlobClient class.

public PageBlobClient (string connectionString, string blobContainerName, string blobName, Azure.Storage.Blobs.BlobClientOptions options);
new Azure.Storage.Blobs.Specialized.PageBlobClient : string * string * string * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.Specialized.PageBlobClient
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 page blob.

blobName
String

The name of this page blob.

options
BlobClientOptions

Optional client options that define the transport pipeline policies for authentication, retries, etc., that are applied to every request.

Applies to