Class EditSectionPage<TInfo>
Acts as a root for its children in the URL hierarchy and in the side navigation menu.
public abstract class EditSectionPage<TInfo> : SecondaryMenuSectionPage, IPage where TInfo : AbstractInfoBase<TInfo>, new()
Type Parameters
TInfo
- Inheritance
-
objectEditSectionPage<TInfo>
- Implements
- Derived
- Inherited Members
- Extension Methods
Properties
ObjectId
ID of the object.
[PageParameter(typeof(IntPageModelBinder))]
public int ObjectId { get; set; }
Property Value
- int
ObjectType
Type of the info objects that are edited. Corresponds to the OBJECT_TYPE property of the info object or PredefinedObjectType.
protected virtual string ObjectType { get; }
Property Value
- string
Methods
ConfigureTemplateProperties(TemplateClientProperties)
Gets the object representing client side template properties.
public override Task<TemplateClientProperties> ConfigureTemplateProperties(TemplateClientProperties properties)
Parameters
properties
TemplateClientPropertiesInitialized properties object.
Returns
- Task<TemplateClientProperties>
GetInfoObject(CancellationToken?)
Gets info object.
protected Task<TInfo> GetInfoObject(CancellationToken? cancellationToken = null)
Parameters
cancellationToken
CancellationToken?The cancellation instruction.
Returns
- Task<TInfo>
GetObjectDisplayName(BaseInfo)
Gets object display name to be used in breadcrumbs, navigation items etc.
protected virtual Task<string> GetObjectDisplayName(BaseInfo infoObject)
Parameters
infoObject
BaseInfoCurrently processed info object.
Returns
- Task<string>
The object display name to be used in breadcrumbs, navigation items etc.
ValidatePage()
Validates the page state prior invocation of the ConfigurePage() method.
public override Task<PageValidationResult> ValidatePage()
Returns
- Task<PageValidationResult>