SqlWebEventProvider.Initialize(String, NameValueCollection) Method

Definition

Sets the initial values for this object.

public:
 override void Initialize(System::String ^ name, System::Collections::Specialized::NameValueCollection ^ config);
public override void Initialize (string name, System.Collections.Specialized.NameValueCollection config);
override this.Initialize : string * System.Collections.Specialized.NameValueCollection -> unit
Public Overrides Sub Initialize (name As String, config As NameValueCollection)

Parameters

name
String

The name used in the configuration file to identify this provider.

config
NameValueCollection

A NameValueCollection object that specifies the attributes assigned for this provider in the configuration file.

Exceptions

There is no connection string declared in config.

-or-

There is more than one connection string declared in config.

-or-

The connection string supplied by config specifies Integrated Security.

-or-

The value of the maxEventDetailsLength attribute supplied by config is less than 0 or greater than 1073741823.

Remarks

ASP.NET calls the Initialize method to initialize the SqlWebEventProvider class with the configuration settings and name as specified in the configuration file.

Applies to