Table of Contents

Interface IFormComponentCommandInvocationModel

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

Represents model for invoking a form component command.

public interface IFormComponentCommandInvocationModel
Extension Methods

Properties

AdditionalActionIdentifier

Name of the additional action the command is invoked within.

string AdditionalActionIdentifier { get; }

Property Value

string

Remarks

The default implementation returns null.

CommandData

Data for the command as a JSON string.

string CommandData { get; }

Property Value

string

CommandName

Name of the command to be invoked.

string CommandName { get; }

Property Value

string

FieldName

Name of the field to retrieve the component for on which to invoke the command.

string FieldName { get; }

Property Value

string

Files

Files sent in the command.

IUploadedFilesCollection Files { get; }

Property Value

IUploadedFilesCollection

Remarks

The implementing property needs to be decorated by the BindUploadedFilesAttribute to correctly bind the files.

See Also