Note: This API is now obsolete.
Gets a last unpacked data.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [ObsoleteAttribute("Consumer should not use this property. Query LastReadData instead.")]
public abstract Nullable<MessagePackObject> Data { get; protected set; }
<ObsoleteAttribute("Consumer should not use this property. Query LastReadData instead.")>
Public MustOverride Property Data As Nullable(Of MessagePackObject)
Get
Protected Set
public:
[ObsoleteAttribute(L"Consumer should not use this property. Query LastReadData instead.")]
virtual property Nullable<MessagePackObject> Data {
Nullable<MessagePackObject> get () abstract;
protected: void set (Nullable<MessagePackObject> value) abstract;
}
[<ObsoleteAttribute("Consumer should not use this property. Query LastReadData instead.")>]
abstract Data : Nullable<MessagePackObject> with get, set
Property Value
Type:
NullableMessagePackObjectA last unpacked data.
Remarks Note |
---|
In default implementation, this property never returning null even if it had not been unpacked any objects.
|
If you use any of direct APIs (methods which return non-
MessagePackObject),
then this property to be invalidated.
Note that the actual value of invalidated this property is undefined.
See Also