BaseJsonMediaTypeFormatter.CanReadType Method (Type)
Determines whether this formatter can read objects of the specified type.
Namespace: System.Net.Http.Formatting
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
public override bool CanReadType(
Type type
)
public:
virtual bool CanReadType(
Type^ type
) override
override CanReadType :
type:Type -> bool
Public Overrides Function CanReadType (
type As Type
) As Boolean
Parameters
type
Type: System.TypeThe type of object that will be read.
Return Value
Type: System.Boolean
true if objects of this type can be read, otherwise false.
See Also
BaseJsonMediaTypeFormatter Class
System.Net.Http.Formatting Namespace
Return to top