Dev2.Scheduler.ScheduledResourceModel.DebugHistoryExists C# (CSharp) Method

DebugHistoryExists() private method

private DebugHistoryExists ( string debugHistoryPath, string correlationId ) : bool
debugHistoryPath string
correlationId string
return bool
        bool DebugHistoryExists(string debugHistoryPath, string correlationId)
        {
            return DirectoryHelper.GetFiles(debugHistoryPath).FirstOrDefault(a => a.Contains(correlationId))!= null;
        }