Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Queries whether this MediaTypeFormatter can deserializean object of the specified type.
Namespace: System.Net.Http.Formatting
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
Public MustOverride Function CanReadType ( _
type As Type _
) As Boolean
'Usage
Dim instance As MediaTypeFormatter
Dim type As Type
Dim returnValue As Boolean
returnValue = instance.CanReadType(type)
public abstract bool CanReadType(
Type type
)
public:
virtual bool CanReadType(
Type^ type
) abstract
abstract CanReadType :
type:Type -> bool
public abstract function CanReadType(
type : Type
) : boolean
Parameters
- type
Type: System.Type
The type to deserialize.
Return Value
Type: System.Boolean
true if the MediaTypeFormatter can deserialize the type; otherwise, false.
Remarks
Derived classes must implement this method and indicate whether a type can be deserialized.