Class CommandSubmissionResult<T>
Represents result returned from command which expects
public class CommandSubmissionResult<T>
Type Parameters
T
- Inheritance
-
objectCommandSubmissionResult<T>
- Extension Methods
Constructors
CommandSubmissionResult(FormSubmissionStatus, T)
Initializes a new instance of the CommandSubmissionResult<T> class.
public CommandSubmissionResult(FormSubmissionStatus status, T result)
Parameters
status
FormSubmissionStatusThe success/failure status of the result.
result
TThe result object.
Properties
Result
Gets the result object.
public T Result { get; }
Property Value
- T
Status
Gets the status of the form submission result.
public FormSubmissionStatus Status { get; }