C# Class Microsoft.Azure.Amqp.Encoding.AmqpBitConverter

Mostrar archivo Open project: Azure/azure-amqp Class Usage Examples

Public Methods

Method Description
PeekUInt ( System.ByteBuffer buffer ) : uint
ReadByte ( System.ByteBuffer buffer ) : sbyte
ReadBytes ( System.ByteBuffer buffer, byte data, int offset, int count ) : void
ReadDouble ( System.ByteBuffer buffer ) : double
ReadFloat ( System.ByteBuffer buffer ) : float
ReadInt ( System.ByteBuffer buffer ) : int
ReadLong ( System.ByteBuffer buffer ) : long
ReadShort ( System.ByteBuffer buffer ) : short
ReadUByte ( System.ByteBuffer buffer ) : byte
ReadUInt ( System.ByteBuffer buffer ) : uint
ReadUInt ( byte buffer, int offset, int count ) : uint
ReadULong ( System.ByteBuffer buffer ) : ulong
ReadULong ( byte buffer, int offset, int count ) : ulong
ReadUShort ( System.ByteBuffer buffer ) : ushort
ReadUuid ( System.ByteBuffer buffer ) : System.Guid
WriteByte ( System.ByteBuffer buffer, sbyte data ) : void
WriteBytes ( System.ByteBuffer buffer, byte data, int offset, int count ) : void
WriteDouble ( System.ByteBuffer buffer, double data ) : void
WriteFloat ( System.ByteBuffer buffer, float data ) : void
WriteInt ( System.ByteBuffer buffer, int data ) : void
WriteLong ( System.ByteBuffer buffer, long data ) : void
WriteShort ( System.ByteBuffer buffer, short data ) : void
WriteUByte ( System.ByteBuffer buffer, byte data ) : void
WriteUByte ( byte buffer, int offset, byte data ) : void
WriteUInt ( System.ByteBuffer buffer, uint data ) : void
WriteUInt ( byte buffer, int offset, uint data ) : void
WriteULong ( System.ByteBuffer buffer, ulong data ) : void
WriteUShort ( System.ByteBuffer buffer, ushort data ) : void
WriteUShort ( byte buffer, int offset, ushort data ) : void
WriteUuid ( System.ByteBuffer buffer, System.Guid data ) : void

Private Methods

Method Description
Validate ( int bufferSize, int dataSize ) : void

Method Details

PeekUInt() public static method

public static PeekUInt ( System.ByteBuffer buffer ) : uint
buffer System.ByteBuffer
return uint

ReadByte() public static method

public static ReadByte ( System.ByteBuffer buffer ) : sbyte
buffer System.ByteBuffer
return sbyte

ReadBytes() public static method

public static ReadBytes ( System.ByteBuffer buffer, byte data, int offset, int count ) : void
buffer System.ByteBuffer
data byte
offset int
count int
return void

ReadDouble() public static method

public static ReadDouble ( System.ByteBuffer buffer ) : double
buffer System.ByteBuffer
return double

ReadFloat() public static method

public static ReadFloat ( System.ByteBuffer buffer ) : float
buffer System.ByteBuffer
return float

ReadInt() public static method

public static ReadInt ( System.ByteBuffer buffer ) : int
buffer System.ByteBuffer
return int

ReadLong() public static method

public static ReadLong ( System.ByteBuffer buffer ) : long
buffer System.ByteBuffer
return long

ReadShort() public static method

public static ReadShort ( System.ByteBuffer buffer ) : short
buffer System.ByteBuffer
return short

ReadUByte() public static method

public static ReadUByte ( System.ByteBuffer buffer ) : byte
buffer System.ByteBuffer
return byte

ReadUInt() public static method

public static ReadUInt ( System.ByteBuffer buffer ) : uint
buffer System.ByteBuffer
return uint

ReadUInt() public static method

public static ReadUInt ( byte buffer, int offset, int count ) : uint
buffer byte
offset int
count int
return uint

ReadULong() public static method

public static ReadULong ( System.ByteBuffer buffer ) : ulong
buffer System.ByteBuffer
return ulong

ReadULong() public static method

public static ReadULong ( byte buffer, int offset, int count ) : ulong
buffer byte
offset int
count int
return ulong

ReadUShort() public static method

public static ReadUShort ( System.ByteBuffer buffer ) : ushort
buffer System.ByteBuffer
return ushort

ReadUuid() public static method

public static ReadUuid ( System.ByteBuffer buffer ) : System.Guid
buffer System.ByteBuffer
return System.Guid

WriteByte() public static method

public static WriteByte ( System.ByteBuffer buffer, sbyte data ) : void
buffer System.ByteBuffer
data sbyte
return void

WriteBytes() public static method

public static WriteBytes ( System.ByteBuffer buffer, byte data, int offset, int count ) : void
buffer System.ByteBuffer
data byte
offset int
count int
return void

WriteDouble() public static method

public static WriteDouble ( System.ByteBuffer buffer, double data ) : void
buffer System.ByteBuffer
data double
return void

WriteFloat() public static method

public static WriteFloat ( System.ByteBuffer buffer, float data ) : void
buffer System.ByteBuffer
data float
return void

WriteInt() public static method

public static WriteInt ( System.ByteBuffer buffer, int data ) : void
buffer System.ByteBuffer
data int
return void

WriteLong() public static method

public static WriteLong ( System.ByteBuffer buffer, long data ) : void
buffer System.ByteBuffer
data long
return void

WriteShort() public static method

public static WriteShort ( System.ByteBuffer buffer, short data ) : void
buffer System.ByteBuffer
data short
return void

WriteUByte() public static method

public static WriteUByte ( System.ByteBuffer buffer, byte data ) : void
buffer System.ByteBuffer
data byte
return void

WriteUByte() public static method

public static WriteUByte ( byte buffer, int offset, byte data ) : void
buffer byte
offset int
data byte
return void

WriteUInt() public static method

public static WriteUInt ( System.ByteBuffer buffer, uint data ) : void
buffer System.ByteBuffer
data uint
return void

WriteUInt() public static method

public static WriteUInt ( byte buffer, int offset, uint data ) : void
buffer byte
offset int
data uint
return void

WriteULong() public static method

public static WriteULong ( System.ByteBuffer buffer, ulong data ) : void
buffer System.ByteBuffer
data ulong
return void

WriteUShort() public static method

public static WriteUShort ( System.ByteBuffer buffer, ushort data ) : void
buffer System.ByteBuffer
data ushort
return void

WriteUShort() public static method

public static WriteUShort ( byte buffer, int offset, ushort data ) : void
buffer byte
offset int
data ushort
return void

WriteUuid() public static method

public static WriteUuid ( System.ByteBuffer buffer, System.Guid data ) : void
buffer System.ByteBuffer
data System.Guid
return void