Ant DeviceUnknown Data Page Received Event
Occurs when an unrecognized data page is received and provides the raw page bytes to subscribers.
Definition
Namespace: SmallEarthTech.AntPlus
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 7.0.0+09c2d7a7f0bf2c05495d6305ac56abb150641a86
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 7.0.0+09c2d7a7f0bf2c05495d6305ac56abb150641a86
C#
public event EventHandler<byte[]> UnknownDataPageReceivedVB
Public Event UnknownDataPageReceived As EventHandler(Of Byte())C++
public:
event EventHandler<array<unsigned char>^>^ UnknownDataPageReceived {
void add (EventHandler<array<unsigned char>^>^ value);
void remove (EventHandler<array<unsigned char>^>^ value);
}F#
member UnknownDataPageReceived : IEvent<EventHandler<byte[]>,
byte[]>Value
EventHandlerByteRemarks
Raised when a data page with an unrecognized identifier or format is encountered;
subscribers receive the raw bytes via the EventHandler<byte[]> argument.
Unrecognized data pages may indicate new features implemented by the device manufacturer, and this event allows consumers to process the data pages if the format is known.