JsonMediaTypeFormatter.CanWriteType Method

Determines whether this JsonMediaTypeFormatter can write objects of the specified type.

Namespace:  System.Net.Http.Formatting
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

Syntax

'Declaration
Public Overrides Function CanWriteType ( _
    type As Type _
) As Boolean
'Usage
Dim instance As JsonMediaTypeFormatter
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 of object that will be written.

Return Value

Type: System.Boolean
true if objects of this type can be written, otherwise false.

See Also

Reference

JsonMediaTypeFormatter Class

System.Net.Http.Formatting Namespace