次の方法で共有


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 値のいずれか 1 つ。

次のコード例は、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

適用対象