PersonalizationAdministration.Providers Property

Definition

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.

Applies to

See also