Table of Contents

Interface INetworkClient

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

Interface for UDP network clients.

public interface INetworkClient : ILogReceiver, ILogSource, IDisposable
Inherited Members
Extension Methods

Properties

Dialect

Gets the UDP dialect associated with this client.

IUdpDialect Dialect { get; }

Property Value

IUdpDialect

IsEnabled

Gets a value indicating whether the client is enabled.

bool IsEnabled { get; }

Property Value

bool

Methods

Connect()

Connects the client using the specified serializer.

void Connect()

Disconnect()

Disconnects the client.

void Disconnect()

ErrorHandler(Exception, int, bool)

Handles errors that occur during packet processing.

void ErrorHandler(Exception e, int numErrors, bool isFatal)

Parameters

e Exception

The exception encountered.

numErrors int

The error count.

isFatal bool

Indicates whether the error is fatal.