Class PageExtender<TPage>
Base class for page extenders allowing modify page properties and invoke custom commands.
public abstract class PageExtender<TPage> where TPage : class, IPage
Type Parameters
TPage
- Inheritance
-
objectPageExtender<TPage>
- Derived
- Extension Methods
Properties
CommandExecute
The command handler for registering events that are invoked before and after command execution.
protected PageCommandHandler CommandExecute { get; }
Property Value
Remarks
The PageCommandEventArgs contain the name of the executed command to filter out the desired command to handle. Commands are named using the PageCommandAttribute usually using the name of the annotated method.
Page
The extended page.
protected TPage Page { get; }
Property Value
- TPage
Methods
ConfigurePage()
Allows modify page configuration object.
public virtual Task ConfigurePage()
Returns
- Task
ConfigureTemplateProperties(TemplateClientProperties)
Allows modify template properties for specific page.
public virtual Task<TemplateClientProperties> ConfigureTemplateProperties(TemplateClientProperties properties)
Parameters
properties
TemplateClientPropertiesProperties configured by page.
Returns
- Task<TemplateClientProperties>
NavigateTo(string, bool)
Returns a command response that redirects to a URL in the admin application.
protected INavigateResponse NavigateTo(string navigationUrl, bool refetchAllTemplates = false)
Parameters
navigationUrl
stringURL to redirect in the administration application.
refetchAllTemplates
boolIndicates that data in all templates will be refetched.
Returns
Remarks
This response does not execute the command CommandName on the client.
- See Also
Response()
Returns a page command response.
protected ICommandResponse Response()
Returns
ResponseFrom<TResult>(TResult)
Returns a page command response from the passed result
.
protected ICommandResponse<TResult> ResponseFrom<TResult>(TResult result)
Parameters
result
TResultResult of the command processed on the client template.
Returns
- ICommandResponse<TResult>
Type Parameters
TResult
Type of the returned result.
Remarks
The result
is passed to the templates's command after handler.