다음을 통해 공유


MemoryStorage 생성자

정의

오버로드

MemoryStorage(Dictionary<String,JObject>)

MemoryStorage 클래스의 새 인스턴스를 초기화합니다.

MemoryStorage(JsonSerializer, Dictionary<String,JObject>)

MemoryStorage 클래스의 새 인스턴스를 초기화합니다.

MemoryStorage(Dictionary<String,JObject>)

MemoryStorage 클래스의 새 인스턴스를 초기화합니다.

public MemoryStorage (System.Collections.Generic.Dictionary<string,Newtonsoft.Json.Linq.JObject> dictionary = default);
new Microsoft.Bot.Builder.MemoryStorage : System.Collections.Generic.Dictionary<string, Newtonsoft.Json.Linq.JObject> -> Microsoft.Bot.Builder.MemoryStorage
Public Sub New (Optional dictionary As Dictionary(Of String, JObject) = Nothing)

매개 변수

dictionary
Dictionary<String,Newtonsoft.Json.Linq.JObject>

사용할 기존 사전입니다. 또는 null을 사용하여 새 항목을 사용합니다.

적용 대상

MemoryStorage(JsonSerializer, Dictionary<String,JObject>)

MemoryStorage 클래스의 새 인스턴스를 초기화합니다.

public MemoryStorage (Newtonsoft.Json.JsonSerializer jsonSerializer, System.Collections.Generic.Dictionary<string,Newtonsoft.Json.Linq.JObject> dictionary = default);
new Microsoft.Bot.Builder.MemoryStorage : Newtonsoft.Json.JsonSerializer * System.Collections.Generic.Dictionary<string, Newtonsoft.Json.Linq.JObject> -> Microsoft.Bot.Builder.MemoryStorage
Public Sub New (jsonSerializer As JsonSerializer, Optional dictionary As Dictionary(Of String, JObject) = Nothing)

매개 변수

jsonSerializer
Newtonsoft.Json.JsonSerializer

사용자 지정 JsonSerializer를 전달하는 경우 다음 설정을 사용하는 것이 좋습니다.

jsonSerializer.TypeNameHandling = TypeNameHandling.All.

jsonSerializer.NullValueHandling = NullValueHandling.Include.

jsonSerializer.ContractResolver = new DefaultContractResolver().

dictionary
Dictionary<String,Newtonsoft.Json.Linq.JObject>

사용할 기존 사전입니다. 또는 null을 사용하여 새 항목을 사용합니다.

적용 대상