Information about the requested page.
Inheritance
object
ComponentBase
- IComponent
- IHandleEvent
- IHandleAfterRender
- JsonSerializable
Constructors
Section titled "Constructors"constructor
public IgbPageRequestedEventArgs() Returns IgbPageRequestedEventArgs
Properties
Section titled "Properties"IgBlazor
Section titled "IgBlazor"Inherited from: BaseRendererElement
[Inject]
protected IIgniteUIBlazor IgBlazor { get; set; } IsComponentRooted
Section titled "IsComponentRooted"Inherited from: BaseRendererElement
public bool IsComponentRooted { get; } ParentTypeName
Section titled "ParentTypeName"Inherited from: BaseRendererElement
protected virtual string ParentTypeName { get; } UseDirectRender
Section titled "UseDirectRender"Inherited from: BaseRendererElement
protected virtual bool UseDirectRender { get; } ChildContent
Section titled "ChildContent"Inherited from: BaseRendererElement
[Parameter]
public RenderFragment ChildContent { get; set; } SupportsVisualChildren
Section titled "SupportsVisualChildren"Inherited from: BaseRendererElement
protected virtual bool SupportsVisualChildren { get; } MethodTarget
Section titled "MethodTarget"Inherited from: BaseRendererElement
protected virtual string MethodTarget { get; } CurrParent
Section titled "CurrParent"Inherited from: BaseRendererElement
protected object CurrParent { get; } DataSourceId
Section titled "DataSourceId"The Unique ID for the data source making the request.
[Parameter]
public int DataSourceId { get; set; } FilterExpressions
Section titled "FilterExpressions"Snapshot of the data source's FilterExpressions at the time PageRequested was raised.
public IgbFilterExpressionCollection FilterExpressions { get; set; } GroupDescriptions
Section titled "GroupDescriptions"Snapshot of the data source's GroupDescriptions at the time PageRequested was raised.
public IgbDataSourceGroupDescriptionCollection GroupDescriptions { get; set; } IsFilterExpressionsDirty
Section titled "IsFilterExpressionsDirty"True if the data source's FilterExpressions collection changed since it last raised PageRequested.
[Parameter]
public bool IsFilterExpressionsDirty { get; set; } IsGroupDescriptionsDirty
Section titled "IsGroupDescriptionsDirty"True if the data source's GroupDescriptions collection changed since it last raised PageRequested.
[Parameter]
public bool IsGroupDescriptionsDirty { get; set; } IsSchemaRequest
Section titled "IsSchemaRequest"The data source is requesting the schema for the data.
[Parameter]
public bool IsSchemaRequest { get; set; } IsSortDescriptionsDirty
Section titled "IsSortDescriptionsDirty"True if the data source's SortDescriptions collection changed since it last raised PageRequested. Any *Dirty flag being true signals the data source's pipeline state changed (sort/group/filter/summary/scope) and consumers should promote pending future state.
[Parameter]
public bool IsSortDescriptionsDirty { get; set; } IsSummaryDescriptionsDirty
Section titled "IsSummaryDescriptionsDirty"True if the data source's SummaryDescriptions collection changed since it last raised PageRequested.
[Parameter]
public bool IsSummaryDescriptionsDirty { get; set; } IsSummaryScopeDirty
Section titled "IsSummaryScopeDirty"True if the data source's SummaryScope property changed since it last raised PageRequested.
[Parameter]
public bool IsSummaryScopeDirty { get; set; } PageIndex
Section titled "PageIndex"The page index being requested.
[Parameter]
public int PageIndex { get; set; } PageSize
Section titled "PageSize"The page size being requested.
[Parameter]
public int PageSize { get; set; } RequestId
Section titled "RequestId"The unique ID for the page request.
[Parameter]
public int RequestId { get; set; } SortDescriptions
Section titled "SortDescriptions"Snapshot of the data source's SortDescriptions at the time PageRequested was raised. Populated from the originating data source (clone or original); the values cross the wire by-value so consumers see the exact pipeline state the page was requested under.
public IgbDataSourceSortDescriptionCollection SortDescriptions { get; set; } SourceName
Section titled "SourceName"The name of the data source the page request originated from. This corresponds to the SourceName of the originating data source (clone or original) and can be used to determine where the request came from.
[Parameter]
public string SourceName { get; set; } SummaryDescriptions
Section titled "SummaryDescriptions"Snapshot of the data source's SummaryDescriptions at the time PageRequested was raised.
public IgbDataSourceSummaryDescriptionCollection SummaryDescriptions { get; set; } SummaryScope
Section titled "SummaryScope"The data source's SummaryScope at the time PageRequested was raised.
[Parameter]
public DataSourceSummaryScope SummaryScope { get; set; } Accessors
Section titled "Accessors"_name
Section titled "_name"Inherited from: BaseRendererElement
protected string _name eventCallbacksCache
Section titled "eventCallbacksCache"Inherited from: BaseRendererElement
protected Dictionary<Type, Dictionary<string, FieldInfo>> eventCallbacksCache _cachedSerializedContent
Section titled "_cachedSerializedContent"Inherited from: BaseRendererElement
protected string _cachedSerializedContent Methods
Section titled "Methods"EnsureModulesLoaded()
Section titled "EnsureModulesLoaded()"Inherited from: BaseRendererElement
protected virtual void EnsureModulesLoaded() Returns any
BuildRenderTree(RenderTreeBuilder)
Section titled "BuildRenderTree(RenderTreeBuilder)"Inherited from: BaseRendererElement
protected override void BuildRenderTree(RenderTreeBuilder builder) Parameters
- builder:
RenderTreeBuilder
Returns any
OnElementNameChanged(BaseRendererElement, string, string)
Section titled "OnElementNameChanged(BaseRendererElement, string, string)"Inherited from: BaseRendererElement
protected void OnElementNameChanged(BaseRendererElement element, string oldName, string newName) Parameters
- element:
BaseRendererElement - oldName:
string - newName:
string
Returns any
InvokeMethod(string, object[], string[], ElementReference[])
Section titled "InvokeMethod(string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected Task<object> InvokeMethod(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null) Parameters
- methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodSync(string, object[], string[], ElementReference[])
Section titled "InvokeMethodSync(string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected object InvokeMethodSync(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null) Parameters
- methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodHelper(string, string, object[], string[], ElementReference[])
Section titled "InvokeMethodHelper(string, string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected Task<object> InvokeMethodHelper(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements) Parameters
- target:
string - methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])
Section titled "InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected object InvokeMethodHelperSync(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements) Parameters
- target:
string - methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
IsPropDirty(string)
Section titled "IsPropDirty(string)"Inherited from: BaseRendererElement
protected bool IsPropDirty(string propertyName) Parameters
- propertyName:
string
Returns any
Serialize(SerializationContext, string)
Section titled "Serialize(SerializationContext, string)"Inherited from: BaseRendererElement
public void Serialize(SerializationContext context, string propertyName = null) Parameters
- context:
SerializationContext - propertyName:
string
Returns any
Serialize()
Section titled "Serialize()"Inherited from: BaseRendererElement
public string Serialize() Returns any
EnsureValid()
Section titled "EnsureValid()"Inherited from: BaseRendererElement
protected void EnsureValid() Returns any
SetResourceStringAsync(string, string, string)
Section titled "SetResourceStringAsync(string, string, string)"Inherited from: BaseRendererElement
protected Task<object> SetResourceStringAsync(string grouping, string id, string value) Parameters
- grouping:
string - id:
string - value:
string
Returns any
SetResourceStringAsync(string, string)
Section titled "SetResourceStringAsync(string, string)"Inherited from: BaseRendererElement
protected Task<object> SetResourceStringAsync(string grouping, string json) Parameters
- grouping:
string - json:
string
Returns any
FindByName(string)
Section titled "FindByName(string)"public override object FindByName(string name) Parameters
- name:
string
Returns any
FromEventJson(BaseRendererControl, Dictionary<string, object>)
Section titled "FromEventJson(BaseRendererControl, Dictionary<string, object>)"protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args) Parameters
- control:
BaseRendererControl - args:
Dictionary
Returns any
ToEventJson(BaseRendererControl, Dictionary<string, object>)
Section titled "ToEventJson(BaseRendererControl, Dictionary<string, object>)"protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args) Parameters
- control:
BaseRendererControl - args:
Dictionary