예제 #1
0
파일: Factory.cs 프로젝트: kvoyk/IdSrvHost
        public static IdentityServerServiceFactory Configure(string connString)
        {
            var factory = new IdentityServerServiceFactory();

            //var scopeStore = new InMemoryScopeStore(Config.Scopes.Get());
            //factory.ScopeStore = new Registration<IScopeStore>(scopeStore);
            var scopeStore = new clientMgr.Stores.ScopeStore(connString);
            factory.ScopeStore = new Registration<IScopeStore>(scopeStore);

            //var clientStore = new InMemoryClientStore(Config.Clients.Get());
            //factory.ClientStore = new Registration<IClientStore>(clientStore);
            var clientStore = new clientMgr.Stores.ClientStore(connString);
            factory.ClientStore = new Registration<IClientStore>(clientStore);

            return factory;
        }
예제 #2
0
        public static IdentityServerServiceFactory Configure(string connString)
        {
            var factory = new IdentityServerServiceFactory();



            //var scopeStore = new InMemoryScopeStore(Config.Scopes.Get());
            //factory.ScopeStore = new Registration<IScopeStore>(scopeStore);
            var scopeStore = new clientMgr.Stores.ScopeStore(connString);

            factory.ScopeStore = new Registration <IScopeStore>(scopeStore);



            //var clientStore = new InMemoryClientStore(Config.Clients.Get());
            //factory.ClientStore = new Registration<IClientStore>(clientStore);
            var clientStore = new clientMgr.Stores.ClientStore(connString);

            factory.ClientStore = new Registration <IClientStore>(clientStore);



            return(factory);
        }
예제 #3
0
 public static void ConfigureClientService(this IdentityServerServiceFactory factory, string connString)
 {
     var clientStore = new clientMgr.Stores.ClientStore(connString);
     factory.ClientStore = new Registration<IClientStore>(clientStore);
 }
예제 #4
0
        public static void ConfigureClientService(this IdentityServerServiceFactory factory, string connString)
        {
            var clientStore = new clientMgr.Stores.ClientStore(connString);

            factory.ClientStore = new Registration <IClientStore>(clientStore);
        }