Interface IFormComponentCommandInvocationModel
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
Remarks
The implementing property needs to be decorated by the BindUploadedFilesAttribute to correctly bind the files.