RazorComponentResult<TComponent> 构造函数

定义

重载

RazorComponentResult<TComponent>()

构造 的 RazorComponentResult实例。

RazorComponentResult<TComponent>(IReadOnlyDictionary<String,Object>)

构造 的 RazorComponentResult实例。

RazorComponentResult<TComponent>(Object)

构造 的 RazorComponentResult实例。

RazorComponentResult<TComponent>()

Source:
RazorComponentResultOfT.cs

构造 的 RazorComponentResult实例。

public RazorComponentResult ();
Public Sub New ()

适用于

RazorComponentResult<TComponent>(IReadOnlyDictionary<String,Object>)

Source:
RazorComponentResultOfT.cs

构造 的 RazorComponentResult实例。

public RazorComponentResult (System.Collections.Generic.IReadOnlyDictionary<string,object?> parameters);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult<'Component (requires 'Component :> Microsoft.AspNetCore.Components.IComponent)> : System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult<'Component (requires 'Component :> Microsoft.AspNetCore.Components.IComponent)>
Public Sub New (parameters As IReadOnlyDictionary(Of String, Object))

参数

parameters
IReadOnlyDictionary<String,Object>

组件的参数。

适用于

RazorComponentResult<TComponent>(Object)

Source:
RazorComponentResultOfT.cs

构造 的 RazorComponentResult实例。

public RazorComponentResult (object parameters);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult<'Component (requires 'Component :> Microsoft.AspNetCore.Components.IComponent)> : obj -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult<'Component (requires 'Component :> Microsoft.AspNetCore.Components.IComponent)>
Public Sub New (parameters As Object)

参数

parameters
Object

组件的参数。

适用于