| SettingsProviderInitialize Method  | 
 
              Initializes the ASCOM Settings Provider.
            
 
    Namespace: 
   ASCOM
    Assembly:
   ASCOM.SettingsProvider (in ASCOM.SettingsProvider.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
 Syntax
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
Parameters
- name
- Type: SystemString
 Ignored.
- config
- Type: System.Collections.SpecializedNameValueCollection
 Not used.
 Remarks
Remarks
              This method is called by 
ApplicationSettingsBase to initialize the settings provider.
              Normally, this will set the provider's 
ApplicationName property to the assembly name
              of the application. This is later used to determine the storage location of each of the settings.
              However, for ASCOM purposes, we can't use the application name and we need to key off the
              ASCOM DeviceID of the driver, so in ASCOM.SettingsProvider, the application name is set but never used.
            
 See Also
See Also