JQueryMvcFormUrlEncodedFormatter.CanReadType Method
Determines whether this JQueryMvcFormUrlEncodedFormatter can read objects of the specified type.
Namespace: System.Web.Http.ModelBinding
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public Overrides Function CanReadType ( _
type As Type _
) As Boolean
'Usage
Dim instance As JQueryMvcFormUrlEncodedFormatter
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.TypeThe type of object that will be read.
Return Value
Type: System.Boolean
true if objects of this type can be read; otherwise false.