BlobsTranscriptStore コンストラクター

定義

オーバーロード

名前 説明
BlobsTranscriptStore(String, String, JsonSerializer)

BlobsTranscriptStore クラスの新しいインスタンスを初期化します。

BlobsTranscriptStore(String, String, StorageTransferOptions, JsonSerializer)

BlobsTranscriptStore クラスの新しいインスタンスを初期化します。

BlobsTranscriptStore(String, String, JsonSerializer)

BlobsTranscriptStore クラスの新しいインスタンスを初期化します。

public BlobsTranscriptStore(string dataConnectionString, string containerName, Newtonsoft.Json.JsonSerializer jsonSerializer = default);
new Microsoft.Bot.Builder.Azure.Blobs.BlobsTranscriptStore : string * string * Newtonsoft.Json.JsonSerializer -> Microsoft.Bot.Builder.Azure.Blobs.BlobsTranscriptStore
Public Sub New (dataConnectionString As String, containerName As String, Optional jsonSerializer As JsonSerializer = Nothing)

パラメーター

dataConnectionString
String

Azure Storage の接続文字列。

containerName
String

エンティティが格納される BLOB コンテナーの名前。

jsonSerializer
Newtonsoft.Json.JsonSerializer

カスタムJsonSerializerを渡す場合、以下の設定を推奨します:

jsonSerializer.TypeNameHandling = TypeNameHandling.None.

jsonSerializer.NullValueHandling = NullValueHandling.Include.

jsonSerializer.ContractResolver = new DefaultContractResolver().

適用対象

BlobsTranscriptStore(String, String, StorageTransferOptions, JsonSerializer)

BlobsTranscriptStore クラスの新しいインスタンスを初期化します。

public BlobsTranscriptStore(string dataConnectionString, string containerName, Azure.Storage.StorageTransferOptions storageTransferOptions, Newtonsoft.Json.JsonSerializer jsonSerializer = default);
new Microsoft.Bot.Builder.Azure.Blobs.BlobsTranscriptStore : string * string * Azure.Storage.StorageTransferOptions * Newtonsoft.Json.JsonSerializer -> Microsoft.Bot.Builder.Azure.Blobs.BlobsTranscriptStore
Public Sub New (dataConnectionString As String, containerName As String, storageTransferOptions As StorageTransferOptions, Optional jsonSerializer As JsonSerializer = Nothing)

パラメーター

dataConnectionString
String

Azure Storage の接続文字列。

containerName
String

エンティティが格納される BLOB コンテナーの名前。

storageTransferOptions
StorageTransferOptions

並列転送のオプションを提供するために StorageTransferOptions

jsonSerializer
Newtonsoft.Json.JsonSerializer

カスタムJsonSerializerを渡す場合、以下の設定を推奨します:

jsonSerializer.TypeNameHandling = TypeNameHandling.None.

jsonSerializer.NullValueHandling = NullValueHandling.Include.

jsonSerializer.ContractResolver = new DefaultContractResolver().

適用対象