BufferedWebEventProvider.Initialize(String, NameValueCollection) 方法

定义

设置此对象的初始值。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)

参数

name
String

配置文件中用于标识此提供程序的名称。The name used in the configuration file to identify this provider.

config
NameValueCollection

一个 NameValueCollection,指定配置文件中为此提供程序分配的特性。A NameValueCollection that specifies the attributes assigned for this provider in the configuration file.

示例

下面的代码示例说明如何使用 Initialize 方法。The following code example shows how to use the Initialize method.

// Initializes the provider.
public override void Initialize(string name,
 NameValueCollection config)
{
    base.Initialize(name, config);

    // Get the configuration information.
    providerName = name;
    buffer = SampleUseBuffering.ToString();
    bufferModality = SampleBufferMode;

    customInfo.AppendLine(string.Format(
        "Provider name: {0}", providerName));
    customInfo.AppendLine(string.Format(
        "Buffering: {0}", buffer));
    customInfo.AppendLine(string.Format(
        "Buffering modality: {0}", bufferModality));
}
' Initializes the provider.
 Public Overrides Sub Initialize(ByVal name As String, _
 ByVal config As NameValueCollection)
     MyBase.Initialize(name, config)

     ' Get the configuration information.
     providerName = name
     buffer = SampleUseBuffering.ToString()
     bufferModality = SampleBufferMode

     customInfo.AppendLine(String.Format( _
     "Provider name: {0}", providerName))
     customInfo.AppendLine(String.Format( _
     "Buffering: {0}", buffer))
     customInfo.AppendLine(String.Format( _
     "Buffering modality: {0}", bufferModality))
 End Sub

注解

ASP.NET 在 Initialize 调用构造函数后调用方法 BufferedWebEventProviderASP.NET calls the Initialize method after calling the BufferedWebEventProvider constructor. 调用此方法以 BufferedWebEventProvider 通过配置文件中指定的配置设置和名称初始化。This method is called to initialize the BufferedWebEventProvider with the configuration settings and name specified in the configuration file.

适用于