Exemplo n.º 1
0
        public static void LoadProviders()
        {
            if (_provider == null)
            {
                lock (_lock)
                {
                    if (_provider == null)
                    {
                        // Get a reference to the <imageService> section
                        AuthenticationServiceSection section = (AuthenticationServiceSection)
                                                               WebConfigurationManager.GetSection
                                                                   ("authenticationService");

                        // Load registered providers and point _provider
                        // to the default provider
                        _providers = new AuthenticationProviderCollection();
                        ProvidersHelper.InstantiateProviders
                            (section.Providers, _providers,
                            typeof(AuthenticationProvider));
                        _provider = _providers[section.DefaultProvider];

                        if (_provider == null)
                        {
                            throw new ProviderException
                                      ("Unable to load default AuthenticationProvider");
                        }
                    }
                }
            }
        }
Exemplo n.º 2
0
        public static void LoadProviders()
        {
            if (_provider == null)
            {
                lock (_lock)
                {
                    if (_provider == null)
                    {
                        // Get a reference to the <imageService> section
                        AuthenticationServiceSection section = (AuthenticationServiceSection)
                            WebConfigurationManager.GetSection
                            ("authenticationService");

                        // Load registered providers and point _provider
                        // to the default provider
                        _providers = new AuthenticationProviderCollection();
                        ProvidersHelper.InstantiateProviders
                            (section.Providers, _providers,
                            typeof(AuthenticationProvider));
                        _provider = _providers[section.DefaultProvider];

                        if (_provider == null)
                            throw new ProviderException
                                ("Unable to load default AuthenticationProvider");

                    }
                }
            }
        }