Candor.Tasks.ServiceProcess.ServiceMonitorWorkerRoleTask.GetExpectedAgeMinutes C# (CSharp) Method

GetExpectedAgeMinutes() protected method

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