Partager via


MemoryStorage Constructeurs

Définition

Surcharges

MemoryStorage(Dictionary<String,JObject>)

Initialise une nouvelle instance de la classe MemoryStorage.

MemoryStorage(JsonSerializer, Dictionary<String,JObject>)

Initialise une nouvelle instance de la classe MemoryStorage.

MemoryStorage(Dictionary<String,JObject>)

Initialise une nouvelle instance de la classe 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)

Paramètres

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

Dictionnaire préexistant à utiliser ; ou null pour en utiliser un nouveau.

S’applique à

MemoryStorage(JsonSerializer, Dictionary<String,JObject>)

Initialise une nouvelle instance de la classe 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)

Paramètres

jsonSerializer
Newtonsoft.Json.JsonSerializer

Si vous transmettez un JsonSerializer personnalisé, nous vous recommandons les paramètres suivants :

jsonSerializer.TypeNameHandling = TypeNameHandling.All.

jsonSerializer.NullValueHandling = NullValueHandling.Include.

jsonSerializer.ContractResolver = new DefaultContractResolver().

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

Dictionnaire préexistant à utiliser ; ou null pour en utiliser un nouveau.

S’applique à