次の方法で共有


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 = 新しい 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 = 新しい DefaultContractResolver()。

適用対象