Table of Contents

Class FixResendRequestMessage

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

The resend request is sent by the receiving application to initiate the retransmission of messages. This function is utilized if a sequence number gap is detected, if the receiving application lost a message, or as a function of the initialization process.

public class FixResendRequestMessage : Message, IMessage, ILocalTimeMessage, ICloneable
Inheritance
FixResendRequestMessage
Implements
Inherited Members
Extension Methods

Constructors

FixResendRequestMessage()

public FixResendRequestMessage()

Properties

BeginSeqNo

Message sequence number of first message in range to be resent.

public long BeginSeqNo { get; set; }

Property Value

long

EndSeqNo

Message sequence number of last message in range to be resent. If request is for a single message BeginSeqNo = EndSeqNo. If request is for all messages subsequent to a particular message, EndSeqNo = "0" (representing infinity).

public long EndSeqNo { get; set; }

Property Value

long

Methods

Clone()

Create a copy of FixResendRequestMessage.

public override Message Clone()

Returns

Message

Copy.