Beispiel #1
0
 internal void Update(LiveIdAuthenticationResultEnum resultEnum, TimeSpan latency, string error)
 {
     lock (this.thisLock)
     {
         this.Result  = new LiveIdAuthenticationResult(resultEnum);
         this.Latency = latency;
         this.Error   = (error ?? string.Empty);
     }
 }
 public LiveIdAuthenticationResult(LiveIdAuthenticationResultEnum result)
 {
     this.result = result;
 }