DialogStateManager.Add Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.