TableServiceClient コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
TableServiceClient()
- Source:
- TableServiceClient.cs
モック作成のために クラスの TableServiceClient 新しいインスタンスを初期化します。
protected TableServiceClient ();
Protected Sub New ()
適用対象
TableServiceClient(Uri, TokenCredential, TableClientOptions)
- Source:
- TableServiceClient.cs
指定した を使用して、 TableServiceClient の新しいインスタンスを初期化します Uri。
public TableServiceClient (Uri endpoint, Azure.Core.TokenCredential tokenCredential, Azure.Data.Tables.TableClientOptions options = default);
new Azure.Data.Tables.TableServiceClient : Uri * Azure.Core.TokenCredential * Azure.Data.Tables.TableClientOptions -> Azure.Data.Tables.TableServiceClient
Public Sub New (endpoint As Uri, tokenCredential As TokenCredential, Optional options As TableClientOptions = Nothing)
パラメーター
- endpoint
- Uri
Uriテーブル サービス アカウントを参照している 。 これは、"https://{account_name}.table.core.windows.net/" または "https://{account_name}.table.cosmos.azure.com/" に似ている可能性があります。
- tokenCredential
- TokenCredential
TokenCredential要求を承認するために使用される 。
- options
- TableClientOptions
すべての要求に適用される認証、再試行などのトランスポート パイプライン ポリシーを定義するオプションのクライアント オプション。
例外
endpoint
または tokenCredential
が null です。
適用対象
TableServiceClient(Uri, AzureSasCredential, TableClientOptions)
- Source:
- TableServiceClient.cs
指定した を使用して、 TableServiceClient の新しいインスタンスを初期化します Uri。
public TableServiceClient (Uri endpoint, Azure.AzureSasCredential credential, Azure.Data.Tables.TableClientOptions options = default);
new Azure.Data.Tables.TableServiceClient : Uri * Azure.AzureSasCredential * Azure.Data.Tables.TableClientOptions -> Azure.Data.Tables.TableServiceClient
Public Sub New (endpoint As Uri, credential As AzureSasCredential, Optional options As TableClientOptions = Nothing)
パラメーター
- endpoint
- Uri
Uriテーブル サービス アカウントを参照している 。 これは、"https://{account_name}.table.core.windows.net/" または "https://{account_name}.table.cosmos.azure.com/" に似ている可能性があります。
- credential
- AzureSasCredential
要求の署名に使用される共有アクセス署名資格情報。
- options
- TableClientOptions
すべての要求に適用される認証、再試行などのトランスポート パイプライン ポリシーを定義するオプションのクライアント オプション。
例外
endpoint
は 'https' で始まらない。
endpoint
が null です。
適用対象
TableServiceClient(Uri, TableSharedKeyCredential)
- Source:
- TableServiceClient.cs
指定したテーブル サービス Uri と をTableServiceClient使用して、 の新しいインスタンスをTableSharedKeyCredential初期化します。
public TableServiceClient (Uri endpoint, Azure.Data.Tables.TableSharedKeyCredential credential);
new Azure.Data.Tables.TableServiceClient : Uri * Azure.Data.Tables.TableSharedKeyCredential -> Azure.Data.Tables.TableServiceClient
Public Sub New (endpoint As Uri, credential As TableSharedKeyCredential)
パラメーター
- endpoint
- Uri
Uriテーブル サービス アカウントを参照している 。 これは、"https://{account_name}.table.core.windows.net/" または "https://{account_name}.table.cosmos.azure.com/" に似ている可能性があります。
- credential
- TableSharedKeyCredential
要求の署名に使用される共有キー資格情報。
例外
endpoint
または credential
が null です。
適用対象
TableServiceClient(Uri, TableSharedKeyCredential, TableClientOptions)
- Source:
- TableServiceClient.cs
指定したテーブル サービス Uri と をTableServiceClient使用して、 の新しいインスタンスをTableSharedKeyCredential初期化します。
public TableServiceClient (Uri endpoint, Azure.Data.Tables.TableSharedKeyCredential credential, Azure.Data.Tables.TableClientOptions options);
new Azure.Data.Tables.TableServiceClient : Uri * Azure.Data.Tables.TableSharedKeyCredential * Azure.Data.Tables.TableClientOptions -> Azure.Data.Tables.TableServiceClient
Public Sub New (endpoint As Uri, credential As TableSharedKeyCredential, options As TableClientOptions)
パラメーター
- endpoint
- Uri
Uriテーブル サービス アカウントを参照している 。 これは、"https://{account_name}.table.core.windows.net/" または "https://{account_name}.table.cosmos.azure.com/" に似ている可能性があります。
- credential
- TableSharedKeyCredential
要求の署名に使用される共有キー資格情報。
- options
- TableClientOptions
すべての要求に適用される認証、再試行などのトランスポート パイプライン ポリシーを定義するオプションのクライアント オプション。
例外
endpoint
または credential
が null です。
適用対象
TableServiceClient(Uri, AzureSasCredential)
- Source:
- TableServiceClient.cs
Shared Access Signature (SAS) トークン資格情報を含む指定した Uri を使用して、 のTableServiceClient新しいインスタンスを初期化します。
public TableServiceClient (Uri endpoint, Azure.AzureSasCredential credential);
new Azure.Data.Tables.TableServiceClient : Uri * Azure.AzureSasCredential -> Azure.Data.Tables.TableServiceClient
Public Sub New (endpoint As Uri, credential As AzureSasCredential)
パラメーター
- endpoint
- Uri
Uriテーブル サービス アカウントを参照している 。 これは、"https://{account_name}.table.core.windows.net/" または "https://{account_name}.table.cosmos.azure.com/" に似ている可能性があります。
- credential
- AzureSasCredential
要求の署名に使用される共有アクセス署名資格情報。 SAS トークンの作成に関するページを参照してください GenerateSasUri(TableAccountSasPermissions, TableAccountSasResourceTypes, DateTimeOffset) 。
例外
endpoint
は 'https' で始まらない。
credential
が null です。
適用対象
TableServiceClient(String, TableClientOptions)
- Source:
- TableServiceClient.cs
指定した接続文字列を使用して、 TableServiceClient の新しいインスタンスを初期化します。
public TableServiceClient (string connectionString, Azure.Data.Tables.TableClientOptions options = default);
new Azure.Data.Tables.TableServiceClient : string * Azure.Data.Tables.TableClientOptions -> Azure.Data.Tables.TableServiceClient
Public Sub New (connectionString As String, Optional options As TableClientOptions = Nothing)
パラメーター
- connectionString
- String
接続文字列には、アプリケーションの実行時に Azure Storage アカウント内のデータにアクセスするために必要な認証情報が格納されています。
詳細については、以下を参照してください。 Azure Storage 接続文字列を構成します。
- options
- TableClientOptions
すべての要求に適用される認証、再試行などのトランスポート パイプライン ポリシーを定義するオプションのクライアント オプション。
例外
connectionString
が null です。
connectionString
が無効です。
適用対象
TableServiceClient(String)
- Source:
- TableServiceClient.cs
指定した接続文字列を使用して、 TableServiceClient の新しいインスタンスを初期化します。
public TableServiceClient (string connectionString);
new Azure.Data.Tables.TableServiceClient : string -> Azure.Data.Tables.TableServiceClient
Public Sub New (connectionString As String)
パラメーター
- connectionString
- String
接続文字列には、アプリケーションの実行時に Azure Storage アカウント内のデータにアクセスするために必要な認証情報が格納されています。
詳細については、以下を参照してください。 Azure Storage 接続文字列を構成します。
例外
connectionString
が null です。
適用対象
TableServiceClient(Uri, TableClientOptions)
- Source:
- TableServiceClient.cs
Shared Access Signature (SAS) トークン資格情報を含む指定した Uri を使用して、 のTableServiceClient新しいインスタンスを初期化します。 SAS トークンの作成に関するページを参照してください GenerateSasUri(TableAccountSasPermissions, TableAccountSasResourceTypes, DateTimeOffset) 。
public TableServiceClient (Uri endpoint, Azure.Data.Tables.TableClientOptions options = default);
new Azure.Data.Tables.TableServiceClient : Uri * Azure.Data.Tables.TableClientOptions -> Azure.Data.Tables.TableServiceClient
Public Sub New (endpoint As Uri, Optional options As TableClientOptions = Nothing)
パラメーター
- endpoint
- Uri
Uriテーブル サービス アカウントを参照している 。 これは、"https://{account_name}.table.core.windows.net/" または "https://{account_name}.table.cosmos.azure.com/" に似ている可能性があります。
- options
- TableClientOptions
すべての要求に適用される認証、再試行などのトランスポート パイプライン ポリシーを定義するオプションのクライアント オプション。
例外
endpoint
は 'https' で始まらない。
endpoint
が null です。
適用対象
Azure SDK for .NET