MessagePackObjectIsTypeOfT Method |
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<T>()
Public Function IsTypeOf(Of T) As Nullable(Of Boolean)
public:
generic<typename T>
Nullable<bool> IsTypeOf()
member IsTypeOf : unit -> Nullable<bool>
Type Parameters
- T
- Target type.
Return Value
Type:
NullableBooleanIf the underlying value of this instance is
T then true, otherwise false.
See Also