Exemple #1
0
 static AccountController()
 {
     SsoAuthenticationOptions = new SsoAuthenticationOptions
     {
         //直接跳转至server登陆
         LoginPath = "http://localhost:58806/Account/Login"
     };
 }
Exemple #2
0
 static AccountController()
 {
     SsoAuthenticationOptions = new SsoAuthenticationOptions
     {
         //使用本地登陆页
         LoginPath = "/Account/Login"
     };
 }
Exemple #3
0
 static AccountController()
 {
     SsoAuthenticationOptions = new SsoAuthenticationOptions
     {
         UserClientStore = new SampleUserClientStore(),
         LoginPath       = "/Account/Login"
     };
 }