Sdílet prostřednictvím


BufferedWebEventProvider.Initialize(String, NameValueCollection) Metoda

Definice

Nastaví počáteční hodnoty pro tento objekt.

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)

Parametry

name
String

Název použitý v konfiguračním souboru k identifikaci tohoto zprostředkovatele.

config
NameValueCollection

A NameValueCollection , který určuje atributy přiřazené pro tohoto zprostředkovatele v konfiguračním souboru.

Příklady

Následující příklad kódu ukazuje, jak použít metodu Initialize .

// 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

Poznámky

ASP.NET volá metodu Initialize po volání konstruktoru BufferedWebEventProvider . Tato metoda je volána k inicializaci BufferedWebEventProvider s nastavením konfigurace a názvem zadaným v konfiguračním souboru.

Platí pro