Exemplo n.º 1
0
 public CasAuthenticationOptions()
 {
     AuthenticationScheme = Scheme;
     DisplayName          = AuthenticationScheme;
     CallbackPath         = new PathString("/signin-cas");
     BackchannelTimeout   = TimeSpan.FromSeconds(60);
     Events = new CasEvents();
 }
Exemplo n.º 2
0
 public CasOptions()
 {
     AuthenticationScheme = CasDefaults.AuthenticationScheme;
     DisplayName          = AuthenticationScheme;
     CallbackPath         = new PathString("/signin-cas");
     BackchannelTimeout   = TimeSpan.FromSeconds(60);
     TicketValidator      = new Cas2TicketValidator(this);
     Events = new CasEvents();
 }
Exemplo n.º 3
0
 public CasOptions()
 {
     CallbackPath    = new PathString("/signin-cas");
     TicketValidator = new Cas2TicketValidator();
     Events          = new CasEvents();
 }
 public CasAuthenticationOptions()
 {
     CallbackPath = "/signin-cas";
     Events       = new CasEvents();
 }