AzureStorageBlobDataProtectionBuilderExtensions.PersistKeysToAzureBlobStorage メソッド

定義

オーバーロード

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, BlobClient)

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Func<IServiceProvider,BlobClient>)

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Uri)

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Uri, TokenCredential)

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Uri, StorageSharedKeyCredential)

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, String, String, String)

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, BlobClient)

ソース:
AzureStorageBlobDataProtectionBuilderExtensions.cs

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToAzureBlobStorage (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Azure.Storage.Blobs.BlobClient blobClient);
static member PersistKeysToAzureBlobStorage : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Azure.Storage.Blobs.BlobClient -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToAzureBlobStorage (builder As IDataProtectionBuilder, blobClient As BlobClient) As IDataProtectionBuilder

パラメーター

builder
IDataProtectionBuilder

変更するビルダー インスタンス。

blobClient
BlobClient

BlobClientキー ファイルを格納する必要がある 。

戻り値

builder

注釈

によって blobClient 参照される BLOB が既に存在している必要があります。

適用対象

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Func<IServiceProvider,BlobClient>)

ソース:
AzureStorageBlobDataProtectionBuilderExtensions.cs

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToAzureBlobStorage (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Func<IServiceProvider,Azure.Storage.Blobs.BlobClient> blobClientFactory);
static member PersistKeysToAzureBlobStorage : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Func<IServiceProvider, Azure.Storage.Blobs.BlobClient> -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToAzureBlobStorage (builder As IDataProtectionBuilder, blobClientFactory As Func(Of IServiceProvider, BlobClient)) As IDataProtectionBuilder

パラメーター

builder
IDataProtectionBuilder

変更するビルダー インスタンス。

blobClientFactory
Func<IServiceProvider,BlobClient>

キー ファイルを格納する必要がある を BlobClient 作成するために使用されるファクトリ デリゲート。

戻り値

builder

注釈

によって blobClient 参照される BLOB が既に存在している必要があります。

適用対象

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Uri)

ソース:
AzureStorageBlobDataProtectionBuilderExtensions.cs

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToAzureBlobStorage (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Uri blobSasUri);
static member PersistKeysToAzureBlobStorage : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Uri -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToAzureBlobStorage (builder As IDataProtectionBuilder, blobSasUri As Uri) As IDataProtectionBuilder

パラメーター

builder
IDataProtectionBuilder

変更するビルダー インスタンス。

blobSasUri
Uri

戻り値

builder

注釈

によって blobSasUri 参照されるコンテナーは既に存在している必要があります。

適用対象

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Uri, TokenCredential)

ソース:
AzureStorageBlobDataProtectionBuilderExtensions.cs

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToAzureBlobStorage (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Uri blobUri, Azure.Core.TokenCredential tokenCredential);
static member PersistKeysToAzureBlobStorage : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Uri * Azure.Core.TokenCredential -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToAzureBlobStorage (builder As IDataProtectionBuilder, blobUri As Uri, tokenCredential As TokenCredential) As IDataProtectionBuilder

パラメーター

builder
IDataProtectionBuilder

変更するビルダー インスタンス。

blobUri
Uri
tokenCredential
TokenCredential

BLOB に接続するための資格情報。

戻り値

builder

注釈

によって blobUri 参照されるコンテナーは既に存在している必要があります。

適用対象

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, Uri, StorageSharedKeyCredential)

ソース:
AzureStorageBlobDataProtectionBuilderExtensions.cs

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToAzureBlobStorage (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Uri blobUri, Azure.Storage.StorageSharedKeyCredential sharedKeyCredential);
static member PersistKeysToAzureBlobStorage : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Uri * Azure.Storage.StorageSharedKeyCredential -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToAzureBlobStorage (builder As IDataProtectionBuilder, blobUri As Uri, sharedKeyCredential As StorageSharedKeyCredential) As IDataProtectionBuilder

パラメーター

builder
IDataProtectionBuilder

変更するビルダー インスタンス。

blobUri
Uri
sharedKeyCredential
StorageSharedKeyCredential

BLOB に接続するための資格情報。

戻り値

builder

注釈

によって blobUri 参照されるコンテナーは既に存在している必要があります。

適用対象

PersistKeysToAzureBlobStorage(IDataProtectionBuilder, String, String, String)

ソース:
AzureStorageBlobDataProtectionBuilderExtensions.cs

Azure Blob Storageで指定したパスにキーを保持するようにデータ保護システムを構成します。

public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder PersistKeysToAzureBlobStorage (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, string connectionString, string containerName, string blobName);
static member PersistKeysToAzureBlobStorage : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * string * string * string -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function PersistKeysToAzureBlobStorage (builder As IDataProtectionBuilder, connectionString As String, containerName As String, blobName As String) As IDataProtectionBuilder

パラメーター

builder
IDataProtectionBuilder

変更するビルダー インスタンス。

connectionString
String

接続文字列には、アプリケーションの実行時に Azure Storage アカウント内のデータにアクセスするために必要な認証情報が格納されています。

containerName
String

使用するコンテナー名。

blobName
String

使用する BLOB 名。

戻り値

builder

注釈

によって containerName 参照されるコンテナーは既に存在している必要があります。

適用対象