ODataMediaTypeFormatter.CanWriteType Method
Queries whether this MediaTypeFormatter can serialize 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 CanWriteType ( _
type As Type _
) As Boolean
'Usage
Dim instance As ODataMediaTypeFormatter
Dim type As Type
Dim returnValue As Boolean
returnValue = instance.CanWriteType(type)
public override bool CanWriteType(
Type type
)
public:
virtual bool CanWriteType(
Type^ type
) override
abstract CanWriteType :
type:Type -> bool
override CanWriteType :
type:Type -> bool
public override function CanWriteType(
type : Type
) : boolean
Parameters
- type
Type: System.Type
The type to serialize.
Return Value
Type: System.Boolean
true if the MediaTypeFormatter can serialize the type; otherwise, false.