Aracılığıyla paylaş


WebEventProvider Oluşturucu

Tanım

WebEventProvider sınıfının yeni bir örneğini başlatır.

protected:
 WebEventProvider();
protected WebEventProvider ();
Protected Sub New ()

Örnekler

Aşağıdaki kod örneği, bu oluşturucunun özel bir olay sağlayıcısında nasıl kullanılacağını gösterir.

// Initializes the provider.
public SampleEventProvider(): base()
{

    // Initialize the local path of the file 
    // that holds event information.
    logFilePath = "C:/test/log.doc";

    // Clear the message buffer.
    msgBuffer.Clear();

    // Initialize the max number of messages
    // to buffer.
    maxMsgNumber = 10;

    // More custom initialization goes here.
}
' Initializes the provider.
Public Sub New() 
    
    ' Initialize the local path of the file 
    ' that holds event information.
    logFilePath = "C:/test/log.doc"
    
    ' Clear the message buffer.
    msgBuffer.Clear()
    
    ' Initialize the max number of messages
    ' to buffer.
    maxMsgNumber = 10

End Sub
 
' More custom initialization goes here.

Açıklamalar

Oluşturucunun WebEventProvider doğrudan kodunuzdan kullanılması amaçlanmamıştır. ASP.NET tarafından çağrılır. sınıfından WebEventProvider türetilirken oluşturucuyu WebEventProvider çağırabilirsiniz.

Şunlara uygulanır