Compartir a través de


WebEventBufferFlushInfo.NotificationType Propiedad

Definición

Obtiene el tipo de notificación actual.

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

Valor de propiedad

Uno de los valores de EventNotificationType.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad NotificationType. Este ejemplo de código es parte de un ejemplo mayor proporcionado para la clase BufferedWebEventProvider.

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

Se aplica a