C# Class BACnet.Core.BufferExtensions

Datei anzeigen Open project: LorenVS/bacstack

Public Methods

Method Description
ReadUInt16 ( this buffer, int offset ) : ushort
ReadUInt32 ( this buffer, int offset ) : uint
ReadUInt64 ( this buffer, int offset ) : ulong
ReadUInt8 ( this buffer, int offset ) : byte
WriteUInt16 ( this buffer, int offset, ushort value ) : void
WriteUInt32 ( this buffer, int offset, uint value ) : void
WriteUInt64 ( this buffer, int offset, ulong value ) : void
WriteUInt8 ( this buffer, int offset, byte value ) : void

Method Details

ReadUInt16() public static method

public static ReadUInt16 ( this buffer, int offset ) : ushort
buffer this
offset int
return ushort

ReadUInt32() public static method

public static ReadUInt32 ( this buffer, int offset ) : uint
buffer this
offset int
return uint

ReadUInt64() public static method

public static ReadUInt64 ( this buffer, int offset ) : ulong
buffer this
offset int
return ulong

ReadUInt8() public static method

public static ReadUInt8 ( this buffer, int offset ) : byte
buffer this
offset int
return byte

WriteUInt16() public static method

public static WriteUInt16 ( this buffer, int offset, ushort value ) : void
buffer this
offset int
value ushort
return void

WriteUInt32() public static method

public static WriteUInt32 ( this buffer, int offset, uint value ) : void
buffer this
offset int
value uint
return void

WriteUInt64() public static method

public static WriteUInt64 ( this buffer, int offset, ulong value ) : void
buffer this
offset int
value ulong
return void

WriteUInt8() public static method

public static WriteUInt8 ( this buffer, int offset, byte value ) : void
buffer this
offset int
value byte
return void