Candor.Tasks.ServiceProcess.ServiceMonitorWorkerRoleTask.GetExpectedAgeMinutes C# (CSharp) Méthode

GetExpectedAgeMinutes() protected méthode

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