Udostępnij za pośrednictwem


QueryStringConverter.CanConvert(Type) Metoda

Definicja

Określa, czy określony typ można przekonwertować na i z reprezentacji ciągu.

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

Parametry

type
Type

Wartość Type , która ma być konwertowana.

Zwraca

Boolean

Wartość określająca, czy typ można przekonwertować.

Przykłady

Poniższy kod pokazuje, jak określić, czy QueryStringConverter element może konwertować na i z określonego typu.

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

Dotyczy