Class UnknownIncomingConnectionEventArgs
UnknownIncomingConnection event arguments.
Inherited Members
Namespace: OnixS.Fix
Assembly: OnixS.Fix.Engine.dll
Syntax
public class UnknownIncomingConnectionEventArgs : EventArgs
Constructors
UnknownIncomingConnectionEventArgs()
Default constructor.
Declaration
public UnknownIncomingConnectionEventArgs()
UnknownIncomingConnectionEventArgs(FlatMessage, int, int, IPAddress)
Constructor.
Declaration
public UnknownIncomingConnectionEventArgs(FlatMessage logon, int listenPort, int counterpartyPort, IPAddress counterpartyIpAddress)
Parameters
Type | Name | Description |
---|---|---|
FlatMessage | logon | |
int | listenPort | |
int | counterpartyPort | |
IPAddress | counterpartyIpAddress |
Properties
CounterpartyHost
Counterparty host.
Declaration
public string CounterpartyHost { get; }
Property Value
Type | Description |
---|---|
string |
CounterpartyIpAddress
Counterparty IpAddress.
Declaration
public IPAddress CounterpartyIpAddress { get; }
Property Value
Type | Description |
---|---|
IPAddress |
CounterpartyPort
Counterparty port.
Declaration
public int CounterpartyPort { get; }
Property Value
Type | Description |
---|---|
int |
IncomingLogonMessage
Incoming Logon message.
Declaration
public FlatMessage IncomingLogonMessage { get; }
Property Value
Type | Description |
---|---|
FlatMessage |
ListenPort
Listen port.
Declaration
public int ListenPort { get; }
Property Value
Type | Description |
---|---|
int |
RejectReason
Reject reason.
Declaration
public string RejectReason { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
ToString()
Returns the string representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | string representation |