Esempio n. 1
0
 private void FriendRequestReceivedHandler(object sender, ToxEventArgs.FriendRequestEventArgs e)
 {
     FriendRequestReceived?.Invoke(this, e);
 }
Esempio n. 2
0
 public void NotifyFriendRequest(Guid senderId)
 {
     FriendRequestReceived?.Invoke(this, new MyEventArgs {
         SenderId = senderId
     });
 }