예제 #1
0
        public DataB3Response(DataB3Indication indication)
            : base(new NCCIParameter(), indication)
        {
            // Data Handle
            Parameter <short> handle = new Parameter <short>();

            handle.Value = indication.Handle;
            ParameterCollection.Add(handle);
        }
예제 #2
0
 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;
     }
 }