Table of Contents

Class BaseFixWriter

Namespace
StockSharp.Fix.Native
Assembly
StockSharp.Fix.Core.dll

The base class of the recorder.

public abstract class BaseFixWriter : FixBase
Inheritance
BaseFixWriter
Derived
Inherited Members
Extension Methods

Remarks

Initialize BaseFixWriter.

Constructors

BaseFixWriter(Stream, Encoding)

The base class of the recorder.

protected BaseFixWriter(Stream stream, Encoding encoding)

Parameters

stream Stream

The stream.

encoding Encoding

Text encoding.

Remarks

Initialize BaseFixWriter.

Methods

WriteByte(byte)

To record the byte value.

protected void WriteByte(byte value)

Parameters

value byte

byte value.

WriteBytes(byte[], int, int)

To record an array of bytes.

public void WriteBytes(byte[] buffer, int offset, int count)

Parameters

buffer byte[]

Bytes array.

offset int

The zero-based byte offset in buffer at which to begin copying bytes to the current stream.

count int

The number of bytes to be written to the current stream.