FileLogTraceListener.ReserveDiskSpace Property
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.
Gets or sets the amount of free disk space, in bytes, necessary before messages can be written to the log file.
public:
property long ReserveDiskSpace { long get(); void set(long value); };
public long ReserveDiskSpace { get; set; }
member this.ReserveDiskSpace : int64 with get, set
Public Property ReserveDiskSpace As Long
Property Value
Long
. This is the amount of free disk space necessary. The default value is 10000000.
Exceptions
When this property is set to a value less than 0.
Remarks
Use this property to make sure that the log files do not completely fill the disk.
If the amount of free disk space (in bytes) is less than the value of this property, then when the FileLogTraceListener class attempts to write a message to the log, the message is discarded and the failure is either silent or an exception is thrown depending on the value of the DiskSpaceExhaustedBehavior property. Otherwise, the message is written to the log, if the log file size (in bytes) is greater than MaxFileSize.