コード例 #1
0
ファイル: StreamWrapper.cs プロジェクト: ajeams/MCProtocol
        public StreamWrapper(Stream baseStream)
        {
            this.BaseStream = baseStream;

            this._Log = new CommunicationLog();
        }
コード例 #2
0
ファイル: MCLogger.cs プロジェクト: ajeams/MCProtocol
        public virtual void OnCommunicationLog(CommunicationLog log)
        {
            var e = new MCCommunicationLogEventArgs(log);

            this.OnCommunicationLog(e);
        }
コード例 #3
0
 public MCCommunicationLogEventArgs(CommunicationLog log)
 {
     this.Log = log;
 }