DiskSpaceExhaustedOption 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.
Determines what to do when the FileLogTraceListener object attempts to write to a log and there is less free disk space available than specified by the ReserveDiskSpace property.
public enum class DiskSpaceExhaustedOption
public enum DiskSpaceExhaustedOption
type DiskSpaceExhaustedOption =
Public Enum DiskSpaceExhaustedOption
- Inheritance
Fields
Name | Value | Description |
---|---|---|
ThrowException | 0 | Throw an exception. |
DiscardMessages | 1 | Discard log messages. |
Remarks
When the DiskSpaceExhaustedBehavior property is set to DiscardMessages, the log messages are by default discarded if there is not enough reserved disk space. This prevents simple applications from failing if the disk gets too full.
For a more robust application, set the DiskSpaceExhaustedBehavior property to ThrowException, and add Try...Catch
blocks around all code that writes to the log.