ODataMediaTypeFormatter.CanReadType Method
Queries whether this MediaTypeFormatter can deserialize an object of the specified type.
Namespace: System.Web.Http.OData.Formatter
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
'Declaration
Public Overrides Function CanReadType ( _
type As Type _
) As Boolean
'Usage
Dim instance As ODataMediaTypeFormatter
Dim type As Type
Dim returnValue As Boolean
returnValue = instance.CanReadType(type)
public override bool CanReadType(
Type type
)
public:
virtual bool CanReadType(
Type^ type
) override
abstract CanReadType :
type:Type -> bool
override CanReadType :
type:Type -> bool
public override 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.