Example #1
0
 public void Initialize(UserInfo userInfo, BanInfo banInfo)
 {
     if (this.isLoaded == true)
     {
         throw new InvalidOperationException();
     }
     this.userInfo = userInfo;
     this.banInfo  = banInfo;
     this.isLoaded = true;
     this.OnUserInfoChanged(EventArgs.Empty);
     this.OnUserBanInfoChanged(EventArgs.Empty);
 }
Example #2
0
 protected void Unban(IAuthentication authentication)
 {
     this.banInfo = BanInfo.Empty;
     this.OnUserBanInfoChanged(EventArgs.Empty);
 }
Example #3
0
 protected void Ban(IAuthentication authentication, BanInfo banInfo)
 {
     this.banInfo = banInfo;
     this.OnUserBanInfoChanged(EventArgs.Empty);
 }