Table of Contents

Class CommandResponse<TResult>

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

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
object
CommandResponse<TResult>
Implements
Extension Methods

Constructors

CommandResponse(TResult)

Initializes a new instance of the CommandResponse<TResult> class.

public CommandResponse(TResult result)

Parameters

result TResult

The 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