EventProvider.WriteEventErrorCode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the possible states of the last write operation.
public: enum class EventProvider::WriteEventErrorCode
public enum EventProvider.WriteEventErrorCode
type EventProvider.WriteEventErrorCode =
Public Enum EventProvider.WriteEventErrorCode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
NoError | 0 | The write was successful. |
NoFreeBuffers | 1 | The session ran out of free buffers to write to. This can occur during high event rates because the disk subsystem is overloaded or the number of buffers is too small. Rather than blocking until more buffers become available, the event is dropped. Consider increasing the number and size of the buffers for the session, or reducing the number of events written or the size of the events. |
EventTooBig | 2 | The event is larger than the session buffer size; events cannot span buffers. |
Remarks
To get an instance of this enumeration, call the EventProvider.GetLastWriteEventError method.
The EventProvider.WriteEvent, EventProvider.WriteMessageEvent, and EventProvider.WriteTransferEvent methods set this value if they fail to write the event.