Bloom.ImageProcessing.LowResImageCache.GetModifiedDateTime C# (CSharp) Method

GetModifiedDateTime() private method

private GetModifiedDateTime ( string path ) : System.DateTime
path string
return System.DateTime
        private DateTime GetModifiedDateTime(string path)
        {
            var f = new FileInfo(path);
            return f.LastWriteTimeUtc;
        }