Ant DeviceOn Unknown Data Page ReceivedTEnum(Int 32, Byte) Method
Raises the UnknownDataPageReceived event with the provided raw data page bytes and includes the data page index in the log.
Definition
Namespace: SmallEarthTech.AntPlus
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 7.0.4+5f3fcccd77655d9c9ca3c046320d70ec8b8a48cd
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 7.0.4+5f3fcccd77655d9c9ca3c046320d70ec8b8a48cd
C#
protected virtual void OnUnknownDataPageReceived<TEnum>(
int pageIndex,
byte[] dataPage
)
where TEnum : Enum
VB
Protected Overridable Sub OnUnknownDataPageReceived(Of TEnum As Enum) (
pageIndex As Integer,
dataPage As Byte()
)C++
protected:
generic<typename TEnum>
where TEnum : Enum
virtual void OnUnknownDataPageReceived(
int pageIndex,
array<unsigned char>^ dataPage
)F#
abstract OnUnknownDataPageReceived :
pageIndex : int *
dataPage : byte[] -> unit when 'TEnum : Enum
override OnUnknownDataPageReceived :
pageIndex : int *
dataPage : byte[] -> unit when 'TEnum : EnumParameters
- pageIndex Int32
- The index into the data page containing the unrecognized value.
- dataPage Byte
- The raw bytes of the unrecognized data page.
Type Parameters
- TEnum
- The enumeration that was being parsed.