Exemple #1
0
 void HandleNewAuthCookie(NewAuthCookie x)
 {
     SetAuthCookie(x.Value);
     //_authCookie.Value = x.Value;
     //_portal.SetAuthCookie(x.Value);
     Become(Authenticated);
 }
Exemple #2
0
 private void SetAuthCookie(string value)
 {
     _authCookie = new NewAuthCookie {
         Value = value
     };
     _portal.SetAuthCookie(_authCookie.Value);
     _sessionsRepository.SetSession(value);
 }
 void HanldeNewAuthCookie(NewAuthCookie cookie)
 {
     PortalActor.Forward(cookie);
 }