ISettingsProviderService.GetSettingsProvider(SettingsProperty) Method
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.
Returns the settings provider compatible with the specified settings property.
public:
System::Configuration::SettingsProvider ^ GetSettingsProvider(System::Configuration::SettingsProperty ^ property);
public System.Configuration.SettingsProvider GetSettingsProvider (System.Configuration.SettingsProperty property);
abstract member GetSettingsProvider : System.Configuration.SettingsProperty -> System.Configuration.SettingsProvider
Public Function GetSettingsProvider (property As SettingsProperty) As SettingsProvider
Parameters
- property
- SettingsProperty
The SettingsProperty that requires serialization.
Returns
If found, the SettingsProvider that can persist the specified settings property; otherwise, null
.
Remarks
The GetSettingsProvider method enables an ISettingsProviderService to offer its serialization services to any sited component. This method determines if the associated settings provider can persist the specified application settings property type. If it can, this method returns a reference to that settings provider; otherwise it returns null
.