Class CommandResponse<TResult>
Page command response carrying the data to be handled by the client template.
public sealed class CommandResponse<TResult> : ICommandResponse<TResult>, ICommandResponse
Type Parameters
TResult
Type of the data returned to the template.
- Inheritance
-
objectCommandResponse<TResult>
- Implements
-
ICommandResponse<TResult>
- Extension Methods
Constructors
CommandResponse(TResult)
Initializes a new instance of the CommandResponse<TResult> class.
public CommandResponse(TResult result)
Parameters
result
TResultThe data to be handled by the client template.
Properties
CommandName
Name of the command to be executed from the client template.
public string CommandName { get; set; }
Property Value
- string
Messages
Messages to display on the client.
public ICollection<CommandResponseMessage> Messages { get; }
Property Value
- ICollection<CommandResponseMessage>
Result
Data returned to the client template.
public TResult Result { get; set; }
Property Value
- TResult