UnpackHelpersUnpackNullableSByteValue Method |
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [EditorBrowsableAttribute(EditorBrowsableState.Never)]
[CLSCompliantAttribute(false)]
public static Nullable<sbyte> UnpackNullableSByteValue(
Unpacker unpacker,
Type objectType,
string memberName
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<CLSCompliantAttribute(false)>
Public Shared Function UnpackNullableSByteValue (
unpacker As Unpacker,
objectType As Type,
memberName As String
) As Nullable(Of SByte)
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[CLSCompliantAttribute(false)]
static Nullable<signed char> UnpackNullableSByteValue(
Unpacker^ unpacker,
Type^ objectType,
String^ memberName
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<CLSCompliantAttribute(false)>]
static member UnpackNullableSByteValue :
unpacker : Unpacker *
objectType : Type *
memberName : string -> Nullable<sbyte>
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:
NullableSByteThe unpacked value.
Exceptions See Also