public void OnPubComputer(PubEventArgs e) { PubComputerEventHandler handler = PubComputer; if (handler != null) { handler(this, e); } }
public void Receive(object sender, PubEventArgs e) { Console.WriteLine(e.PubDate + ": " + this._name + " 已收到订阅的 " + e.MagzineName); }