You are here: Start » AVL.NET » ByteBuffer Class

ByteBuffer Class

This type stores a raw binary data of variable length (a continuous stream of bytes). It is usually used when implementing a non-textual custom communication with external systems and devices, or when working with non-textual files of arbitrary formats.

Namespace:AvlNet
Assembly:AVL.NET.TS.dll

Constructors

 ConstructorDescription
ByteBuffer(Int32)
ByteBuffer()

Properties

 NameTypeDescription
DataEndSystem.IntPtr
DataSystem.IntPtr
EmptySystem.Boolean
IsDisposedSystem.Boolean
MaxBufferSizeSystem.Int32
SizeSystem.Int32Gets the current buffer content size in bytes

Methods

 NameDescription
Dispose()Disposes underlying unmanaged resources. See MSDN documentation for IDisposable interface for more info.
Equals(object)Inherited from System.Object
GetHashCode()Inherited from System.Object
GetType()Inherited from System.Object
Resize(int)
SetNotOwn(int, System.IntPtr)
Set(int)
Set(int, AvlNet.ByteBuffer)
Set(System.IntPtr, int)
ToString()Inherited from System.Object

Remarks

See also