Class ContainerBuilder
public class ContainerBuilder : ComponentBase
- Inheritance
-
objectComponentBaseContainerBuilder
Properties
ComponentType
public Type ComponentType { get; set; }
Property Value
- Type
ModuleState
[Parameter]
public Module ModuleState { get; set; }
Property Value
PageState
[CascadingParameter]
protected PageState PageState { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
RenderTreeBuilder
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
OnInitialized()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree.
protected override void OnInitialized()
OnParametersSet()
Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.
protected override void OnParametersSet()
ShouldRender()
Returns a flag to indicate whether the component should render.
protected override bool ShouldRender()
Returns
- bool