Class ReusableFieldSchemaEditBase
Reusable schema edit page base.
public abstract class ReusableFieldSchemaEditBase : ModelEditPage<ReusableFieldSchemaModel>, IPage
- Inheritance
-
objectReusableFieldSchemaEditBase
- Implements
- Derived
- Inherited Members
- Extension Methods
Remarks
This API supports the framework infrastructure and is not intended to be used directly from your code.
Constructors
ReusableFieldSchemaEditBase(IFormItemCollectionProvider, IFormDataBinder, IReusableFieldSchemaManager)
Initializes a new instance of the ReusableFieldSchemaEdit class.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(29, 2)]
public ReusableFieldSchemaEditBase(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IReusableFieldSchemaManager schemaManager)
Parameters
formItemCollectionProvider
IFormItemCollectionProviderformDataBinder
IFormDataBinderschemaManager
IReusableFieldSchemaManager
Properties
Model
Gets edited model that represents the form.
protected override ReusableFieldSchemaModel Model { get; }
Property Value
SchemaManager
Reusable schema manager.
protected IReusableFieldSchemaManager SchemaManager { get; }
Property Value
- IReusableFieldSchemaManager
Methods
GetModel()
Gets the ReusableFieldSchemaModel model.
protected abstract ReusableFieldSchemaModel GetModel()
Returns
GetObjectDisplayName(ReusableFieldSchemaModel)
Gets object display name to be used in breadcrumbs, navigation items etc. if they have to be updated after the Submit(FormSubmissionCommandArguments) command success.
protected override Task<string> GetObjectDisplayName(ReusableFieldSchemaModel model)
Parameters
model
ReusableFieldSchemaModelCurrently processed model.
Returns
- Task<string>
The object display name to be used in breadcrumbs, navigation items etc., or null, should the display name not be changed after the Submit(FormSubmissionCommandArguments) command success.
- See Also