Edit

Share via


ILBasedSerializer.IsSupportedType Method

Definition

Overloads

IsSupportedType(Type, Boolean)
IsSupportedType(Type)

Informs the serialization manager whether this serializer supports the type for serialization.

IsSupportedType(Type, Boolean)

Source:
ILBasedSerializer.cs
System.Object.IsSupportedType(System.Type,System.Boolean)
public bool IsSupportedType (Type type, bool isFallback);
abstract member IsSupportedType : Type * bool -> bool
override this.IsSupportedType : Type * bool -> bool
Public Function IsSupportedType (type As Type, isFallback As Boolean) As Boolean

Parameters

type
Type
isFallback
Boolean

Returns

Implements

Applies to

IsSupportedType(Type)

Source:
ILBasedSerializer.cs

Informs the serialization manager whether this serializer supports the type for serialization.

public bool IsSupportedType (Type t);
public bool IsSupportedType (Type type);
abstract member IsSupportedType : Type -> bool
override this.IsSupportedType : Type -> bool
abstract member IsSupportedType : Type -> bool
override this.IsSupportedType : Type -> bool
Public Function IsSupportedType (t As Type) As Boolean
Public Function IsSupportedType (type As Type) As Boolean

Parameters

ttype
Type

The type of the item to be serialized

Returns

A value indicating whether the item can be serialized.

Implements

Applies to