Table of Contents

Class CommandSubmissionResult<T>

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

Represents result returned from command which expects

public class CommandSubmissionResult<T>

Type Parameters

T
Inheritance
object
CommandSubmissionResult<T>
Extension Methods

Constructors

CommandSubmissionResult(FormSubmissionStatus, T)

Initializes a new instance of the CommandSubmissionResult<T> class.

public CommandSubmissionResult(FormSubmissionStatus status, T result)

Parameters

status FormSubmissionStatus

The success/failure status of the result.

result T

The 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; }

Property Value

FormSubmissionStatus