internal void ConnectB3Indication(ConnectB3Indication indication) { try { _ncci = indication.Identifier.NCCI; ConnectB3Response response = new ConnectB3Response(indication); _application.SendMessage(response); Status = ConnectionStatus.B_ConnectPending; } catch (Exception e) { Trace.TraceError("Connection#{0}::ConnectB3Indication, Exception = {1}", ValidationHelper.HashString(this), e); throw; } }
/// <summary> /// Indicates an incoming logical connection. /// </summary> /// <param name="header"></param> /// <param name="indication"></param> internal abstract void ConnectB3Indication(ConnectB3Indication indication);
public IncomingLogicalConnectionEventArgs(ConnectB3Indication indication, Connection connection, ConnectB3Response response) : base(indication, connection) { _response = response; }