Ejemplo n.º 1
0
 protected virtual void OnReceiveAuthentication(Authentication auth)
 {
     Action<Authentication> handler = this.ReceiveAuthentication;
     if (handler != null) handler(auth);
 }
Ejemplo n.º 2
0
 private void OnSendAuthentication(Authentication auth)
 {
     Action<Authentication> handler = this.SendAuthentication;
     if (handler != null) handler(auth);
 }
Ejemplo n.º 3
0
 internal void DoReceiveAuthentication(Authentication auth)
 {
     this.OnReceiveAuthentication(auth);
 }