Beispiel #1
0
    public string LockEnd_ByUser(string khbh)
    {
        string state = UserLock.LockEnd_ByUser(khbh);

        return(state);
    }
Beispiel #2
0
 public UserServices(string username)
 {
     this.username = username;
     userLock      = new UserLock();
 }
Beispiel #3
0
 public UserServices(string username, int uploadThrottleLimit)
 {
     Username       = username;
     UserLock       = new UserLock();
     UploadThrottle = new ResourceThrottle(uploadThrottleLimit);
 }