public StreamWrapper(Stream baseStream) { this.BaseStream = baseStream; this._Log = new CommunicationLog(); }
public virtual void OnCommunicationLog(CommunicationLog log) { var e = new MCCommunicationLogEventArgs(log); this.OnCommunicationLog(e); }
public MCCommunicationLogEventArgs(CommunicationLog log) { this.Log = log; }