ChoiceSet.Implicit Operator
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
Implicit(JToken to ChoiceSet) |
Converts a Newtonsoft.Json.Linq.JToken into a ChoiceSet. |
Implicit(Boolean to ChoiceSet) |
Converts a bool into a ChoiceSet. |
Implicit(String to ChoiceSet) |
Converts a string into a ChoiceSet. |
Implicit(JToken to ChoiceSet)
Converts a Newtonsoft.Json.Linq.JToken into a ChoiceSet.
public static implicit operator Microsoft.Bot.Builder.Dialogs.Adaptive.Input.ChoiceSet (Newtonsoft.Json.Linq.JToken value);
static member op_Implicit : Newtonsoft.Json.Linq.JToken -> Microsoft.Bot.Builder.Dialogs.Adaptive.Input.ChoiceSet
Public Shared Widening Operator CType (value As JToken) As ChoiceSet
Parameters
- value
- Newtonsoft.Json.Linq.JToken
Newtonsoft.Json.Linq.JToken expression.
Returns
Applies to
Implicit(Boolean to ChoiceSet)
Converts a bool into a ChoiceSet.
public static implicit operator Microsoft.Bot.Builder.Dialogs.Adaptive.Input.ChoiceSet (bool value);
static member op_Implicit : bool -> Microsoft.Bot.Builder.Dialogs.Adaptive.Input.ChoiceSet
Public Shared Widening Operator CType (value As Boolean) As ChoiceSet
Parameters
- value
- Boolean
Bool expression.
Returns
Applies to
Implicit(String to ChoiceSet)
Converts a string into a ChoiceSet.
public static implicit operator Microsoft.Bot.Builder.Dialogs.Adaptive.Input.ChoiceSet (string value);
static member op_Implicit : string -> Microsoft.Bot.Builder.Dialogs.Adaptive.Input.ChoiceSet
Public Shared Widening Operator CType (value As String) As ChoiceSet
Parameters
- value
- String
String expression.