  | ActiveDirectoryRoleProviderInitialize Method  | 
 
            Takes as input the name of the provider and a NameValueCollection of configuration settings.
            Used to set property values for the provider instance including implementation-specific values
            and options specified in the configuration file (Machine.config or Web.config).
            
 
    Namespace: 
   Galactic.Web.Security.ActiveDirectory
    Assembly:
   Galactic.Web.Security.ActiveDirectory (in Galactic.Web.Security.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntaxpublic override void Initialize(
	string name,
	NameValueCollection config
)
Public Overrides Sub Initialize ( 
	name As String,
	config As NameValueCollection
)
public:
virtual void Initialize(
	String^ name, 
	NameValueCollection^ config
) override
abstract Initialize : 
        name : string * 
        config : NameValueCollection -> unit 
override Initialize : 
        name : string * 
        config : NameValueCollection -> unit Parameters
- name
 - Type: SystemString
The name of the provider. - config
 - Type: System.Collections.SpecializedNameValueCollection
Collection of configuration settings. 
See Also