RazorComponentResult 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RazorComponentResult(Type)
建構 的 RazorComponentResult 實例。
public RazorComponentResult (Type componentType);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type)
參數
- componentType
- Type
要呈現之元件的型別。 這必須實作 IComponent 。
適用於
RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)
建構 的 RazorComponentResult 實例。
public RazorComponentResult (Type componentType, System.Collections.Generic.IReadOnlyDictionary<string,object?> parameters);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type, parameters As IReadOnlyDictionary(Of String, Object))
參數
- componentType
- Type
要呈現之元件的型別。 這必須實作 IComponent 。
- parameters
- IReadOnlyDictionary<String,Object>
元件的參數。
適用於
RazorComponentResult(Type, Object)
建構 的 RazorComponentResult 實例。
public RazorComponentResult (Type componentType, object parameters);
new Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult : Type * obj -> Microsoft.AspNetCore.Http.HttpResults.RazorComponentResult
Public Sub New (componentType As Type, parameters As Object)
參數
- componentType
- Type
要呈現之元件的型別。 這必須實作 IComponent 。
- parameters
- Object
元件的參數。