public DataB3Response(DataB3Indication indication) : base(new NCCIParameter(), indication) { // Data Handle Parameter <short> handle = new Parameter <short>(); handle.Value = indication.Handle; ParameterCollection.Add(handle); }
internal void DataB3Indication(DataB3Indication indication) { try { DataB3Response response = new DataB3Response(indication); _application.SendMessage(response); } catch (Exception e) { Trace.TraceError("Connection#{0}::DataB3Indication, Exception = {1}", ValidationHelper.HashString(this), e); throw; } }