ClientSettingsProvider::Initialize Method (String^, NameValueCollection^)

 

Initializes the provider.

Namespace:   System.Web.ClientServices.Providers
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
virtual void Initialize(
	String^ name,
	NameValueCollection^ config
) override

Parameters

name
Type: System::String^

The friendly name of the provider.

config
Type: System.Collections.Specialized::NameValueCollection^

A collection of name/value pairs representing the provider-specific attributes specified in the configuration for this provider.

Exception Condition
ArgumentNullException

name is null.

ArgumentException

name is Empty.

-or-

config contains an unrecognized value. For more information, see the Remarks section.

InvalidOperationException

This ClientRoleProvider has already been initialized.

This method is used internally by the application settings system and it not meant to be used by your application code.

The ASP.NET extensibility model calls the Initialize method to initialize the ClientSettingsProvider by using information in your application configuration file. This method recognizes the following Web settings service configuration attributes:

  • name

  • description

  • connectionStringName

  • serviceUri

For more information about these attributes, see How to: Configure Client Application Services.

.NET Framework
Available since 3.5
Return to top
Show: