| UnpackHelpersUnpackNullableSingleValue Method | 
 
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
 Syntax
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static Nullable<float> UnpackNullableSingleValue(
	Unpacker unpacker,
	Type objectType,
	string memberName
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Shared Function UnpackNullableSingleValue ( 
	unpacker As Unpacker,
	objectType As Type,
	memberName As String
) As Nullable(Of Single)
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
static Nullable<float> UnpackNullableSingleValue(
	Unpacker^ unpacker, 
	Type^ objectType, 
	String^ memberName
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
static member UnpackNullableSingleValue : 
        unpacker : Unpacker * 
        objectType : Type * 
        memberName : string -> Nullable<float32> 
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: 
NullableSingleThe unpacked value.
 Exceptions
Exceptions See Also
See Also