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
Afficher le fichier Open project: GridProtectionAlliance/openHistorian

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Method Details

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

Read() public méthode

public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
Résultat int

Read7BitUInt64() public méthode

public Read7BitUInt64 ( ) : ulong
Résultat ulong

ReadInt32() public méthode

public ReadInt32 ( ) : int
Résultat int

ReadInt64() public méthode

public ReadInt64 ( ) : long
Résultat long

ReadUInt8() public méthode

public ReadUInt8 ( ) : byte
Résultat byte

RemoteBinaryStream() public méthode

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
Résultat System

SetLength() public méthode

public SetLength ( long value ) : void
value long
Résultat void

Write() public méthode

public Write ( byte value ) : void
value byte
Résultat void

Write() public méthode

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
Résultat void

Write() public méthode

public Write ( int value ) : void
value int
Résultat void

Write() public méthode

public Write ( long value ) : void
value long
Résultat void

Write7Bit() public méthode

public Write7Bit ( ulong value ) : void
value ulong
Résultat void