DialogStateManager.Add Method

Definition

Overloads

Add(KeyValuePair<String,Object>)

Adds an item to the dialog state manager.

Add(String, Object)

Adds an element to the dialog state manager.

Add(KeyValuePair<String,Object>)

Adds an item to the dialog state manager.

public void Add (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member Add : System.Collections.Generic.KeyValuePair<string, obj> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Add (item As KeyValuePair(Of String, Object))

Parameters

item
KeyValuePair<String,Object>

The KeyValuePair<TKey,TValue> with the key and object of the item to add.

Implements

Remarks

This method is not supported.

Applies to

Add(String, Object)

Adds an element to the dialog state manager.

public void Add (string key, object value);
abstract member Add : string * obj -> unit
override this.Add : string * obj -> unit
Public Sub Add (key As String, value As Object)

Parameters

key
String

Key of the element to add.

value
Object

Value of the element to add.

Implements

Applies to