Class ShowDialogResponse
Contains the result of a show dialog request finished after calling ShowDialog(ShowDialogRequest) or ShowDialogAsync(ShowDialogRequest). Immutable class.
Inheritance
System.Object
ShowDialogResponse
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SIX.TimApi
Assembly: TimApi.dll
Syntax
public class ShowDialogResponse
Constructors
ShowDialogResponse(Reason, String, CardData)
Declaration
public ShowDialogResponse(Reason reason, string userInput, CardData cardData)
Parameters
Type | Name | Description |
---|---|---|
Reason | reason | |
System.String | userInput | |
CardData | cardData |
Properties
CardData
Card data or null if absent.
Declaration
public CardData CardData { get; set; }
Property Value
Type | Description |
---|---|
CardData | The card data. |
Reason
Reason for closing dialog
Declaration
public Reason Reason { get; set; }
Property Value
Type | Description |
---|---|
Reason | The reason. |
UserInput
User input or null if absent.
Declaration
public string UserInput { get; set; }
Property Value
Type | Description |
---|---|
System.String | The user input. |
Methods
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()