GetCurrentLogNames() 공개 메소드

Gets all the current log file names in Current
public GetCurrentLogNames ( ) : IEnumerable
리턴 IEnumerable
예제 #1
0
        /// <summary>
        /// Gets all the current log file names in Current
        /// </summary>
        /// <returns>a list of the log file names</returns>
        public static IEnumerable<string> GetCurrentLogNames()
        {
            var logger = new Logger();

            return logger.GetCurrentLogNames();
        }
예제 #2
0
        /// <summary>
        /// Gets all the current log file names in Current
        /// </summary>
        /// <returns>a list of the log file names</returns>
        public static IEnumerable <string> GetCurrentLogNames()
        {
            Logger logger = new Logger();

            return(logger.GetCurrentLogNames());
        }
예제 #3
0
        /// <summary>
        /// Gets all the current log file names in Current
        /// </summary>
        /// <returns>a list of the log file names</returns>
        public static IEnumerable<string> GetCurrentLogNames()
        {
            var logger = new Logger(WebConfigurationManager.AppSettings["LogPath"]);

            return logger.GetCurrentLogNames();
        }
예제 #4
0
        /// <summary>
        /// Gets all the current log file names in Current
        /// </summary>
        /// <returns>a list of the log file names</returns>
        public static IEnumerable <string> GetCurrentLogNames()
        {
            var logger = new Logger(WebConfigurationManager.AppSettings["LogPath"]);

            return(logger.GetCurrentLogNames());
        }