Provides the data needed to handle a PeerConnection event
Inheritance: TorrentEventArgs
Beispiel #1
0
 internal void RaisePeerDisconnected(PeerConnectionEventArgs args)
 {
     Mode.HandlePeerDisconnected(args.PeerID);
     Toolbox.RaiseAsyncEvent <PeerConnectionEventArgs>(PeerDisconnected, this, args);
 }
Beispiel #2
0
 internal void RaisePeerConnected(PeerConnectionEventArgs args)
 {
     Toolbox.RaiseAsyncEvent <PeerConnectionEventArgs>(PeerConnected, this, args);
 }