UnpackHelpersUnpackNullableUInt64Value Method |
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [CLSCompliantAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static Nullable<ulong> UnpackNullableUInt64Value(
Unpacker unpacker,
Type objectType,
string memberName
)
<CLSCompliantAttribute(false)>
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Shared Function UnpackNullableUInt64Value (
unpacker As Unpacker,
objectType As Type,
memberName As String
) As Nullable(Of ULong)
public:
[CLSCompliantAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
static Nullable<unsigned long long> UnpackNullableUInt64Value(
Unpacker^ unpacker,
Type^ objectType,
String^ memberName
)
[<CLSCompliantAttribute(false)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
static member UnpackNullableUInt64Value :
unpacker : Unpacker *
objectType : Type *
memberName : string -> Nullable<uint64>
Parameters
- unpacker
- Type: MsgPackUnpacker
The unpacker to be used. - objectType
- Type: SystemType
The type of the object which is deserializing now. - memberName
- Type: SystemString
The name of the member which is deserializing now.
Return Value
Type:
NullableUInt64The unpacked value.
Exceptions See Also