EventDataTypes Enumeration

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

EventDataTypes Enumeration

BR.AN.PviServices .NET


The LOG format event data type starting with version 1.01.0. The resulting data will allways be transformed to Littele Endian!

[Visual Basic]

Public Enum EventDataTypes

[C#]

public enum EventDataTypes

Members

Member Name

Description

Undefined

undefined

ASCIIStrings

ASCII strings

ANSIStrings

ANSI strings (LATIN1 coded)

UInt8

unsigned 8 bit integer

Int8

signed 8 bit integer

UInt16

unsigned 16 bit integer, Little-Endian (x86)

Int16

signed 16 bit integer, Little-Endian (x86)

UInt32

unsigned 32 bit integer, Little-Endian (x86)

Int32

signed 32 bit integer, Little-Endian (x86)

UInt64

unsigned 64 bit integer, Little-Endian (x86)

Int64

signed 64 bit integer, Little-Endian (x86)

UInt8BE

unsigned 8 bit integer, Big-Endian, binary same as UInt8

Int8BE

signed 8 bit integer, Big-Endian, binary same as Int8

UInt16BE

unsigned 16 bit integer, Big-Endian The resulting data will be transformed to Littele Endian!

Int16BE

signed 16 bit integer, Big-Endian The resulting data will be transformed to Littele Endian!

UInt32BE

unsigned 32 bit integer, Big-Endian The resulting data will be transformed to Littele Endian!

Int32BE

signed 32 bit integer, Big-Endian The resulting data will be transformed to Littele Endian!

UInt64BE

unsigned 64 bit integer, Big-Endian The resulting data will be transformed to Littele Endian!

Int64BE

signed 64 bit integer, Big-Endian The resulting data will be transformed to Littele Endian!

AsciiChar

8 bit integer single char, ASCII

AnsiChar

8 bit single char, ANSI/LATIN1 coded

UTF16Char

UTF-16 character (smaller than 0x10000), Little-Endian

UTF16CharBE

UTF-16 character (smaller than 0x10000), Big-Endian. The resulting data will be transformed to Littele Endian!

UTF32Char

UTF-32 character (four byte), Little-Endian

UTF32CharBE

UTF-32 character (four byte), Big-Endian The resulting data will be transformed to Littele Endian!

BooleanFalse

Boolean false

BooleanTrue

Boolean True

MemAddress

32 bit pointer (uintptr_t), Little-Endian (x86)

MemAddressBE

32 bit pointer (uintptr_t), Big-Endian. The resulting data will be transformed to Littele Endian!

Float32

32 bit IEEE-754 float value, Little-Endian

Float32BE

32 bit IEEE-754 float value, Big-Endian The resulting data will be transformed to Littele Endian!

Double64

64 bit IEEE-754 float value, Little-Endian

Double64BE

64 bit IEEE-754 float value, Big-Endian The resulting data will be transformed to Littele Endian!

MBCSStrings

MBCS strings

UTF16Strings

UTF-16 strings, Little-Endian

UTF16StringsBE

UTF-16 strings, Big-Endian The resulting data will be transformed to Littele Endian!

UTF32Strings

UTF-32 strings, Little-Endian

UTF32StringsBE

UTF-32 strings, Big-Endian The resulting data will be transformed to Littele Endian!

ComplexType

LITTLE ENDIAN complext data type (size, type and data)

BytesLigttleEndian

array of LITTLE ENDIAN bytes

BytesBigEndian

array of BIG ENDIAN bytes EXCEPTION!! The resulting data will NOT be transformed to Littele Endian!

ArLoggerAPI

The AR logger API format consists of a zero terminated string followed by binary Data. The string will be stored in LoggerEntry.EventData And the binary data can be retrived by LoggerEntry.Binary beginning at offset (LoggerEntry.EventData.ToString().Length +1)

EmptyEventData

The event data is not set.

Requirements

Namespace: BR.AN.PviServices

Assembly: BR.AN.PviServices (in BR.AN.PviServices.dll)

See Also

BR.AN.PviServices Namespace


Generated from assembly BR.AN.PviServices [8.1.0.4]