다음을 통해 공유


RazorComponentResult 생성자

정의

오버로드

RazorComponentResult(Type)

의 instance 생성합니다RazorComponentResult.

RazorComponentResult(Type, IReadOnlyDictionary<String,Object>)

의 instance 생성합니다RazorComponentResult.

RazorComponentResult(Type, Object)

의 instance 생성합니다RazorComponentResult.

RazorComponentResult(Type)

Source:
RazorComponentResult.cs

의 instance 생성합니다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>)

Source:
RazorComponentResult.cs

의 instance 생성합니다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)

Source:
RazorComponentResult.cs

의 instance 생성합니다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

구성 요소에 대한 매개 변수입니다.

적용 대상