다음을 통해 공유


ValueProviderResultExtensions.ConvertTo 메서드

정의

오버로드

ConvertTo(ValueProviderResult, Type)

의 값을 result 지정된 형식으로 변환하려고 시도합니다.

ConvertTo<T>(ValueProviderResult)

의 값을 result 지정된 형식으로 변환하려고 시도합니다.

ConvertTo(ValueProviderResult, Type)

의 값을 result 지정된 형식으로 변환하려고 시도합니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Object ^ ConvertTo(Microsoft::AspNetCore::Mvc::ModelBinding::ValueProviderResult result, Type ^ type);
public static object ConvertTo (this Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult result, Type type);
static member ConvertTo : Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult * Type -> obj
<Extension()>
Public Function ConvertTo (result As ValueProviderResult, type As Type) As Object

매개 변수

type
Type

변환을 위한 입니다 Type .

반환

변환된 값 또는 값을 변환할 수 없는 경우 의 type 기본값입니다.

적용 대상

ConvertTo<T>(ValueProviderResult)

의 값을 result 지정된 형식으로 변환하려고 시도합니다.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static T ConvertTo(Microsoft::AspNetCore::Mvc::ModelBinding::ValueProviderResult result);
public static T ConvertTo<T> (this Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult result);
static member ConvertTo : Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult -> 'T
<Extension()>
Public Function ConvertTo(Of T) (result As ValueProviderResult) As T

형식 매개 변수

T

변환을 위한 입니다 Type .

매개 변수

반환

T

변환된 값 또는 값을 변환할 수 없는 경우 의 T 기본값입니다.

적용 대상