JsonQueryStringConverter.CanConvert(Type) Method

Definition

Gets a value that indicates whether a Common Language Runtime (CLR) type specified is a known type that can be serialized and deserialized.

public:
 override bool CanConvert(Type ^ type);
public override bool CanConvert (Type type);
override this.CanConvert : Type -> bool
Public Overrides Function CanConvert (type As Type) As Boolean

Parameters

type
Type

The Type to verify.

Returns

true if the type can be serialized; otherwise false.

Exceptions

The type is null.

Remarks

This checks whether a CLR type can be used in a JSON query string. The CLR types that can be used in such a string are just those that are supported by DataContractSerializer.

Applies to