共用方式為


RazorComponentResult<TComponent> 建構函式

定義

多載

RazorComponentResult<TComponent>()

建構 的 RazorComponentResult 實例。

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

建構 的 RazorComponentResult 實例。

RazorComponentResult<TComponent>(Object)

建構 的 RazorComponentResult 實例。

RazorComponentResult<TComponent>()

來源:
RazorComponentResultOfT.cs

建構 的 RazorComponentResult 實例。

public RazorComponentResult ();
Public Sub New ()

適用於

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

來源:
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)

來源:
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

元件的參數。

適用於