This documentation is archived and is not being maintained.

ClientRoleProvider::Initialize Method

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.

ExceptionCondition
ArgumentNullException

name is nullptr.

-or-

config is nullptr.

ArgumentException

name is empty.

-or-

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

InvalidOperationException

This ClientRoleProvider has already been initialized.

FormatException

config contains a cacheTimeout value that is not in the correct format for conversion to an Int32 value.

OverflowException

config contains a cacheTimeout value that represents a number less than MinValue or greater than MaxValue.

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

  • name

  • description

  • cacheTimeout

  • connectionStringName

  • serviceUri

  • honorCookieExpiry

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

.NET Framework

Supported in: 4, 3.5

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: