PersonalizationAdministration.Providers Property
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 a collection of personalization providers indexed by name.
public:
static property System::Web::UI::WebControls::WebParts::PersonalizationProviderCollection ^ Providers { System::Web::UI::WebControls::WebParts::PersonalizationProviderCollection ^ get(); };
public static System.Web.UI.WebControls.WebParts.PersonalizationProviderCollection Providers { get; }
static member Providers : System.Web.UI.WebControls.WebParts.PersonalizationProviderCollection
Public Shared ReadOnly Property Providers As PersonalizationProviderCollection
Property Value
A read-only PersonalizationProviderCollection that contains the personalization providers available to the application.
Exceptions
The provider for a personalization provider defined in configuration is not of the correct type.
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.
Remarks
This property returns a collection of personalization providers. The collection is populated at the initialization of the application and contains references to provider objects indexed by name. The default provider is indexed by the name specified in the Web.config or Machine.config configuration file.
Note that the returned collection is read-only; calls to Remove
, Add
, or Clear
will result in an exception being thrown.