Example #1
0
 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;
     }
 }
 public IncomingLogicalConnectionEventArgs(ConnectB3Indication indication, Connection connection,
     ConnectB3Response response)
     : base(indication, connection) {
     _response = response;
 }