Enum FinCommServiceExceptionCode
Enumerates the possible types of failure that caused the FinCommServiceException to be thrown.
public enum FinCommServiceExceptionCode
Fields
BadCommAddress = 0The communication address that was passed to Connect(string, string, IFinFilter) was syntactically wrong. This exception was thrown by simply looking at the provided communication address. No attempt was made to actually establish a connection.
BadCommAddressSuffix = 1The communication address suffix that was passed to Connect(string, string, IFinFilter) was syntactically wrong. This exception was thrown by simply looking at the provided communication address. No attempt was made to actually establish a connection.
ConnectFailure = 2A connection could not be established by Connect(string, string, IFinFilter). Maybe the given communication address is wrong or the server is down. Another very common reason is that the connection is prevented by some firewall, a missing proxy configuration or required authorisation.
ConnectionClosed = 3The connection was unexpectedly closed by the server.
ProtocolError = 4Some protocol error on the transport layer (or below) occured. This is not a FinTS protocol error!
ProxyError = 6Some (protocol/communication) error while talking to a (SOCKS5) proxy server.
Timeout = 5No response was received within the given response timeout limit.