File: Microsoft\VisualBasic\Logging\Logging.LogFileCreationScheduleOption.vb | Web Access |
Project: src\src\Microsoft.VisualBasic.Forms\src\Microsoft.VisualBasic.Forms.vbproj (Microsoft.VisualBasic.Forms) |
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. Namespace Microsoft.VisualBasic.Logging ''' <summary> ''' Options for the date stamp in the name of a log file. ''' </summary> Public Enum LogFileCreationScheduleOption As Integer None '(default) Daily 'YYYY-MM-DD for today Weekly 'YYYY-MM-DD for first day of this week End Enum End Namespace |