C# 클래스 DotLog.FileLogging.RollingLogFile

파일 보기 프로젝트 열기: subfuzion/dotlog

공개 프로퍼티들

프로퍼티 타입 설명
DefaultFileNameTemplate string
NumberedFileNamePattern string

공개 메소드들

메소드 설명
GetNextFileName ( ) : string

Returns the name to use for the next rolling log file. The name's numeric part is a value that is one greater than the highest number actually found in the BasePath location, or else is equal to 1. It is formatted according to FileNameTemplate

Validate ( ) : void

비공개 메소드들

메소드 설명
CreateFileNameGlobPattern ( ) : void

The glob pattern to use for searching for file names that match the current FileNameTemplate. Essentially, the '#' is simply replaced with '?' as used by the operating system for glob searching, but we use the regex to get the other file name parts and store them for later use.

메소드 상세

GetNextFileName() 공개 메소드

Returns the name to use for the next rolling log file. The name's numeric part is a value that is one greater than the highest number actually found in the BasePath location, or else is equal to 1. It is formatted according to FileNameTemplate
public GetNextFileName ( ) : string
리턴 string

Validate() 공개 메소드

public Validate ( ) : void
리턴 void

프로퍼티 상세

DefaultFileNameTemplate 공개적으로 정적으로 프로퍼티

public static string DefaultFileNameTemplate
리턴 string

NumberedFileNamePattern 공개적으로 정적으로 프로퍼티

public static string NumberedFileNamePattern
리턴 string