 | FileTargetArchiveEvery Property |
Gets or sets a value indicating whether to automatically archive log files every time the specified time passes.
Namespace:
NLog.Targets
Assembly:
NLog (in NLog.dll) Version: 5.5.0+1873145cbc26e0312d9481234d69ce7dc68aac4e
Syntaxpublic FileArchivePeriod ArchiveEvery { get; set; }
Public Property ArchiveEvery As FileArchivePeriod
Get
Set
Dim instance As FileTarget
Dim value As FileArchivePeriod
value = instance.ArchiveEvery
instance.ArchiveEvery = value
member ArchiveEvery : FileArchivePeriod with get, set
Property Value
Type:
FileArchivePeriod
Remarks
Files are moved to the archive as part of the write operation if the current period of time changes. For example
if the current hour changes from 10 to 11, the first write that will occur
on or after 11:00 will trigger the archiving.
See Also