MessagePackObjectIsTypeOf Method (Type) |
Determine whether the underlying value of this instance is specified type or not.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public Nullable<bool> IsTypeOf(
Type type
)
Public Function IsTypeOf (
type As Type
) As Nullable(Of Boolean)
public:
Nullable<bool> IsTypeOf(
Type^ type
)
member IsTypeOf :
type : Type -> Nullable<bool>
Parameters
- type
- Type: SystemType
Target type.
Return Value
Type:
NullableBooleanIf the underlying value of this instance is
type then true, otherwise false.
Exceptions See Also