Class MessageResultEventArgs
Provides data for the result of an executed report action.
Inheritance
Namespace: Telerik.Windows.Controls.ConversationalUI
Assembly: Telerik.Windows.Controls.ConversationalUI.dll
Syntax
public class MessageResultEventArgs : RoutedEventArgs
Constructors
MessageResultEventArgs()
Declaration
public MessageResultEventArgs()
Properties
CloseAfterReport
Gets or sets a value that indicates whether message should be removed after report.
Declaration
public bool CloseAfterReport { get; set; }
Property Value
System.Boolean
|
DataObjectResult
Gets or sets the object value of the post result.
Declaration
public object DataObjectResult { get; set; }
Property Value
System.Object
|
Message
Gets the message that reports the current result.
Declaration
public MessageBase Message { get; }
Property Value
MessageBase
|
PostResultInline
Gets or sets a value that indicates whether text result should be post as an inline message.
Declaration
public bool PostResultInline { get; set; }
Property Value
System.Boolean
|
PropertyName
Gets the name of the modified property.
Declaration
public string PropertyName { get; }
Property Value
System.String
|
ReportType
Gets the message report type.
Declaration
public MessageReportType ReportType { get; }
Property Value
MessageReportType
|
TextMessageResult
Gets or sets the message result that will be post as a text message.
Declaration
public string TextMessageResult { get; set; }
Property Value
System.String
|