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