Candor.Tasks.ServiceProcess.ServiceMonitorWorkerRoleTask.GetExpectedAgeMinutes C# (CSharp) 메소드

GetExpectedAgeMinutes() 보호된 메소드

Gets the expected file age in minutes, or the max file age if the expected age is not specified.
protected GetExpectedAgeMinutes ( ) : Int32
리턴 System.Int32
        protected Int32 GetExpectedAgeMinutes()
        {
            if (OutputFileExpectedAgeMinutes > 0)
                return OutputFileExpectedAgeMinutes;
            return OutputFileMaxAgeMinutes;
        }