WebEventProvider.Flush Method ()

 

Moves the events from the provider's buffer into the event log.

Namespace:   System.Web.Management
Assembly:  System.Web (in System.Web.dll)

Public MustOverride Sub Flush

When this method is called, all the events in the buffer are immediately moved from the buffer to the event log, regardless of how much time has elapsed since last write or how many events are in the buffer. The time of the last write is reset to the time of the flushing action.

The following code example shows how to use the Flush method.

' Flush the input buffer if required.
Public Overrides Sub Flush() 
    ' Create a string builder to 
    ' hold the event information.
    Dim reData As New StringBuilder()

    ' Store custom information.
    reData.Append( _
    "SampleEventProvider processing." + _
    Environment.NewLine)

    reData.Append( _
    "Flush done at: {0}" + _
    DateTime.Now.TimeOfDay.ToString() + _
    Environment.NewLine)

    Dim e As WebBaseEvent
    For Each e In  msgBuffer
        ' Store event data.
        reData.Append(e.ToString())
    Next e

    ' Store the information in the specified file.
    StoreToFile(reData, logFilePath, FileMode.Append)

    ' Reset the message counter.
    msgCounter = 0

    ' Clear the buffer.
    msgBuffer.Clear()

End Sub 'Flush

.NET Framework
Available since 2.0
Return to top
Show: