C# Class GSF.Net.RemoteBinaryStream

A binary stream that works on some kind of piped stream. This means the reader of one stream is connected to the writer of another stream.
Inheritance: GSF.IO.BinaryStreamBase
Mostrar archivo Open project: GridProtectionAlliance/openHistorian

Private Properties

Property Type Description

Public Methods

Method Description
Flush ( ) : void
Read ( byte buffer, int offset, int count ) : int
Read7BitUInt64 ( ) : ulong
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadUInt8 ( ) : byte
RemoteBinaryStream ( Stream stream, WorkerThreadSynchronization workerThreadSynchronization = null ) : System

Creates a RemoteBinaryStream

SetLength ( long value ) : void
Write ( byte value ) : void
Write ( byte buffer, int offset, int count ) : void
Write ( int value ) : void
Write ( long value ) : void
Write7Bit ( ulong value ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Flush() public method

public Flush ( ) : void
return void

Read() public method

public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
return int

Read7BitUInt64() public method

public Read7BitUInt64 ( ) : ulong
return ulong

ReadInt32() public method

public ReadInt32 ( ) : int
return int

ReadInt64() public method

public ReadInt64 ( ) : long
return long

ReadUInt8() public method

public ReadUInt8 ( ) : byte
return byte

RemoteBinaryStream() public method

Creates a RemoteBinaryStream
public RemoteBinaryStream ( Stream stream, WorkerThreadSynchronization workerThreadSynchronization = null ) : System
stream Stream the underlying stream to wrap
workerThreadSynchronization GSF.Threading.WorkerThreadSynchronization the synchronization object
return System

SetLength() public method

public SetLength ( long value ) : void
value long
return void

Write() public method

public Write ( byte value ) : void
value byte
return void

Write() public method

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void

Write() public method

public Write ( int value ) : void
value int
return void

Write() public method

public Write ( long value ) : void
value long
return void

Write7Bit() public method

public Write7Bit ( ulong value ) : void
value ulong
return void