다음을 통해 공유


QueryStringConverter.CanConvert(Type) 메서드

정의

지정된 형식과 문자열 표현을 상호 변환할 수 있는지 여부를 결정합니다.

public:
 virtual bool CanConvert(Type ^ type);
public virtual bool CanConvert (Type type);
abstract member CanConvert : Type -> bool
override this.CanConvert : Type -> bool
Public Overridable Function CanConvert (type As Type) As Boolean

매개 변수

type
Type

변환할 Type입니다.

반환

Boolean

형식을 변환할 수 있는지 여부를 지정하는 값입니다.

예제

다음 코드에서는 QueryStringConverter가 지정된 형식에 대한 변환을 수행할 수 있는지 여부를 확인하는 방법을 보여 줍니다.

if (converter.CanConvert(typeof(Int32)))
    converter.ConvertStringToValue("123", typeof(Int32));
If (converter.CanConvert(GetType(Int32))) Then
    converter.ConvertStringToValue("123", GetType(Int32))
End If

적용 대상