Esempio n. 1
0
        public StreamWrapper(Stream baseStream)
        {
            this.BaseStream = baseStream;

            this._Log = new CommunicationLog();
        }
Esempio n. 2
0
        public virtual void OnCommunicationLog(CommunicationLog log)
        {
            var e = new MCCommunicationLogEventArgs(log);

            this.OnCommunicationLog(e);
        }
 public MCCommunicationLogEventArgs(CommunicationLog log)
 {
     this.Log = log;
 }