HtmlRenderer.BeginRenderingComponent 方法

定义

重载

BeginRenderingComponent(Type)

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

BeginRenderingComponent(Type, ParameterView)

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

BeginRenderingComponent<TComponent>()

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

BeginRenderingComponent<TComponent>(ParameterView)

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

BeginRenderingComponent(Type)

Source:
HtmlRenderer.cs
Source:
HtmlRenderer.cs

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

public Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent BeginRenderingComponent (Type componentType);
member this.BeginRenderingComponent : Type -> Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent
Public Function BeginRenderingComponent (componentType As Type) As HtmlRootComponent

参数

componentType
Type

组件类型。 这必须实现 IComponent

返回

表示 HtmlRootComponent 呈现输出的实例。

适用于

BeginRenderingComponent(Type, ParameterView)

Source:
HtmlRenderer.cs
Source:
HtmlRenderer.cs

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

public Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent BeginRenderingComponent (Type componentType, Microsoft.AspNetCore.Components.ParameterView parameters);
member this.BeginRenderingComponent : Type * Microsoft.AspNetCore.Components.ParameterView -> Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent
Public Function BeginRenderingComponent (componentType As Type, parameters As ParameterView) As HtmlRootComponent

参数

componentType
Type

组件类型。 这必须实现 IComponent

parameters
ParameterView

组件的参数。

返回

表示 HtmlRootComponent 呈现输出的实例。

适用于

BeginRenderingComponent<TComponent>()

Source:
HtmlRenderer.cs
Source:
HtmlRenderer.cs

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

public Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent BeginRenderingComponent<TComponent> () where TComponent : Microsoft.AspNetCore.Components.IComponent;
member this.BeginRenderingComponent : unit -> Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent (requires 'Component :> Microsoft.AspNetCore.Components.IComponent)
Public Function BeginRenderingComponent(Of TComponent As IComponent) () As HtmlRootComponent

类型参数

TComponent

组件类型。

返回

表示 HtmlRootComponent 呈现输出的实例。

适用于

BeginRenderingComponent<TComponent>(ParameterView)

Source:
HtmlRenderer.cs
Source:
HtmlRenderer.cs

添加指定组件的实例并指示其呈现。 生成的内容表示初始同步呈现输出,稍后可能会更改。 若要等待组件层次结构完成任何异步操作(例如加载),请等待 QuiescenceTaskHtmlRootComponent然后再从 读取内容。

public Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent BeginRenderingComponent<TComponent> (Microsoft.AspNetCore.Components.ParameterView parameters) where TComponent : Microsoft.AspNetCore.Components.IComponent;
member this.BeginRenderingComponent : Microsoft.AspNetCore.Components.ParameterView -> Microsoft.AspNetCore.Components.Web.HtmlRendering.HtmlRootComponent (requires 'Component :> Microsoft.AspNetCore.Components.IComponent)
Public Function BeginRenderingComponent(Of TComponent As IComponent) (parameters As ParameterView) As HtmlRootComponent

类型参数

TComponent

组件类型。

参数

parameters
ParameterView

组件的参数。

返回

表示 HtmlRootComponent 呈现输出的实例。

适用于