コード例 #1
0
 protected virtual void OnReceiveAuthentication(Authentication auth)
 {
     Action<Authentication> handler = this.ReceiveAuthentication;
     if (handler != null) handler(auth);
 }
コード例 #2
0
 private void OnSendAuthentication(Authentication auth)
 {
     Action<Authentication> handler = this.SendAuthentication;
     if (handler != null) handler(auth);
 }
コード例 #3
0
 internal void DoReceiveAuthentication(Authentication auth)
 {
     this.OnReceiveAuthentication(auth);
 }