CloudBlobClient コンストラクター

定義

オーバーロード

CloudBlobClient(Uri, DelegatingHandler)

指定された BLOB サービスのエンドポイントと匿名の資格情報を使用して、CloudBlobClient の新しいインスタンスを初期化します。

CloudBlobClient(StorageUri, StorageCredentials, DelegatingHandler)

指定された BLOB Service のエンドポイントとアカウントの資格情報を使用して、CloudBlobClient の新しいインスタンスを初期化します。

CloudBlobClient(Uri, StorageCredentials, DelegatingHandler)

指定された BLOB Service のエンドポイントとアカウントの資格情報を使用して、CloudBlobClient の新しいインスタンスを初期化します。

CloudBlobClient(Uri, DelegatingHandler)

指定された BLOB サービスのエンドポイントと匿名の資格情報を使用して、CloudBlobClient の新しいインスタンスを初期化します。

public CloudBlobClient (Uri baseUri, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Blob.CloudBlobClient : Uri * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Blob.CloudBlobClient
Public Sub New (baseUri As Uri, Optional delegatingHandler As DelegatingHandler = Nothing)

パラメーター

baseUri
Uri

クライアントの作成に使用する BLOB Service のエンドポイントを表す Uri オブジェクトです。

delegatingHandler
DelegatingHandler

1 つ以上の DelegatingHandler インスタンスのチェーン。最も内側には null InnerHandler が必要です。

適用対象

CloudBlobClient(StorageUri, StorageCredentials, DelegatingHandler)

指定された BLOB Service のエンドポイントとアカウントの資格情報を使用して、CloudBlobClient の新しいインスタンスを初期化します。

public CloudBlobClient (Microsoft.Azure.Storage.StorageUri storageUri, Microsoft.Azure.Storage.Auth.StorageCredentials credentials, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Blob.CloudBlobClient : Microsoft.Azure.Storage.StorageUri * Microsoft.Azure.Storage.Auth.StorageCredentials * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Blob.CloudBlobClient
Public Sub New (storageUri As StorageUri, credentials As StorageCredentials, Optional delegatingHandler As DelegatingHandler = Nothing)

パラメーター

storageUri
StorageUri

クライアントの作成に使用する BLOB Service のエンドポイントを表す StorageUri オブジェクトです。

credentials
StorageCredentials

StorageCredentials オブジェクト。

delegatingHandler
DelegatingHandler

1 つ以上の DelegatingHandler インスタンスのチェーン。最も内側には null InnerHandler が必要です。

適用対象

CloudBlobClient(Uri, StorageCredentials, DelegatingHandler)

指定された BLOB Service のエンドポイントとアカウントの資格情報を使用して、CloudBlobClient の新しいインスタンスを初期化します。

public CloudBlobClient (Uri baseUri, Microsoft.Azure.Storage.Auth.StorageCredentials credentials, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Blob.CloudBlobClient : Uri * Microsoft.Azure.Storage.Auth.StorageCredentials * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Blob.CloudBlobClient
Public Sub New (baseUri As Uri, credentials As StorageCredentials, Optional delegatingHandler As DelegatingHandler = Nothing)

パラメーター

baseUri
Uri

クライアントの作成に使用する BLOB Service のエンドポイントを表す Uri オブジェクトです。

credentials
StorageCredentials

StorageCredentials オブジェクト。

delegatingHandler
DelegatingHandler

1 つ以上の DelegatingHandler インスタンスのチェーン。最も内側には null InnerHandler が必要です。

適用対象