Property | Type | Description | |
---|---|---|---|
GenerateFilePathSegment | string | ||
GetFieldName | string |
Method | Description | |
---|---|---|
DeserializeConfiguration ( string configuration ) : object |
Deserializes the configuration for a store data handler. In this case, no deserialization is necessary. |
|
HandleForm ( FormSubmissionContext context, object configuration ) : void |
Handles a form submission (stores it).
|
|
PrepareHandleForm ( FormSubmissionContext context, object configuration ) : void |
Prepares to handle to form submission. In this case, no preparation is necessary. |
Method | Description | |
---|---|---|
GenerateFilePathSegment ( ) : string |
Generates a file path segment. This is used to generate unique paths so lots of files can be stored without the names colliding. |
|
GetFieldName ( System.Guid fieldId, IFormField>.Dictionary |
Tries to get a field name by its ID.
|
public DeserializeConfiguration ( string configuration ) : object | ||
configuration | string | /// The configuration. /// |
return | object |
public HandleForm ( FormSubmissionContext context, object configuration ) : void | ||
context | FormSubmissionContext | /// The form submission context. /// |
configuration | object | /// The handler configuration. /// |
return | void |
public PrepareHandleForm ( FormSubmissionContext context, object configuration ) : void | ||
context | FormSubmissionContext | /// The form submission context. /// |
configuration | object | /// The handler configuration. /// |
return | void |