SettingsProvider Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes an instance of the SettingsProvider class.
protected:
SettingsProvider();
protected SettingsProvider ();
Protected Sub New ()
Remarks
This is this default protected constructor for this abstract class. Derived custom settings providers are not required to provide an explicit constructor because the Initialize method typically performs all initialization.
Client code typically does not directly instantiate a settings provider; instead, you use the following procedure to find a settings provider for a particular settings property:
Call the GetService method on the current Component or ISite to return a reference to the current ISettingsProviderService.
Call the GetSettingsProvider method of the ISettingsProviderService retrieved in the first step to return the settings provider.