PersonalizationAdministration::Provider Property
.NET Framework (current version)
Returns an instance of the default personalization provider.
Assembly: System.Web (in System.Web.dll)
public: property PersonalizationProvider^ Provider { static PersonalizationProvider^ get(); }
Property Value
Type: System.Web.UI.WebControls.WebParts::PersonalizationProvider^A PersonalizationProvider of the default provider.
| Exception | Condition |
|---|---|
| ArgumentException | The provider for a personalization provider defined in configuration is not of the correct type. |
| ConfigurationErrorsException | A configuration exception occurred while attempting to create and initialize an instance of one of the configured personalization providers. - or - The default personalization provider defined in configuration could not be found. |
Use this property to retrieve an instance of the default personalization provider. This is the provider specified in the personalization provider section of the Web.config or Machine.config file.
The following code example demonstrates how to use the Provider property.
_provider = PersonalizationAdministration.Provider.Name; TextBox1.Text = _provider;
.NET Framework
Available since 2.0
Available since 2.0
Show: