示例#1
0
 public void ProcessPartialSuccessfulAuthenticationAttempt(DateTime whenAttempted, AuthenticationHistoryType stage)
 {
     this._authenticationHistories.Add(new AuthenticationHistory(Guid.NewGuid(), whenAttempted, stage));
 }
示例#2
0
 public AuthenticationHistory(Guid id, DateTime whenHappened, AuthenticationHistoryType authenticationHistoryType)
 {
     this.Id           = id;
     this.WhenHappened = whenHappened;
     this.AuthenticationHistoryType = authenticationHistoryType;
 }