Cassette.Manifests.AssetManifest.AllRawFileReferencesAreUpToDateWithFileSystem C# (CSharp) Метод

AllRawFileReferencesAreUpToDateWithFileSystem() приватный Метод

private AllRawFileReferencesAreUpToDateWithFileSystem ( IDirectory directory, System.DateTime asOfDateTime ) : bool
directory IDirectory
asOfDateTime System.DateTime
Результат bool
        bool AllRawFileReferencesAreUpToDateWithFileSystem(IDirectory directory, DateTime asOfDateTime)
        {
            var files = RawFilenameReferences().Select(r => directory.GetFile(r.Path));
            return files.All(file => FileIsUpToDateWithFileSystem(file, asOfDateTime));
        }