共用方式為


WebEventBufferFlushInfo.NotificationType 屬性

定義

取得目前告知的類型。

public:
 property System::Web::Management::EventNotificationType NotificationType { System::Web::Management::EventNotificationType get(); };
public System.Web.Management.EventNotificationType NotificationType { get; }
member this.NotificationType : System.Web.Management.EventNotificationType
Public ReadOnly Property NotificationType As EventNotificationType

屬性值

EventNotificationType

其中一個 EventNotificationType 值。

範例

下列程式碼範例示範如何使用 NotificationType 屬性。 此程式碼範例是提供給 類別之較大範例的 BufferedWebEventProvider 一部分。

private EventNotificationType GetNotificationType(
    WebEventBufferFlushInfo flushInfo)
{
    return flushInfo.NotificationType;
}
Private Function GetNotificationType(ByVal flushInfo _
As WebEventBufferFlushInfo) _
As EventNotificationType
    Return flushInfo.NotificationType
End Function 'GetNotificationType

適用於