JsonQueryStringConverter.CanConvert(Type) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.