Example #1
0
 public PlainAuthenticationMechanism(
     IAuthenticationTransport session,
     IUserStore userStore)
 {
     _session   = session;
     _userStore = userStore;
 }
 public Implementation(IAuthenticationTransport session)
 {
     _session = session;
 }
 public IAuthenticationSession CreateSession(IAuthenticationTransport session)
 {
     return(new Implementation(session));
 }