internal static string GetPrefetchedFilePath(LazyUri url, bool checkExistence) { if (Caching.AzureApi != null) { Sanity.NotImplemented(); } var path = Caching.GetFileCachePath(url); if (checkExistence) { if (!BlobStore.Exists(path)) { return(null); } if (BlobStore.GetLength(path) == 0) { if (BlobStore.Exists(Path.ChangeExtension(path, ".err"))) { return(null); } } } return(path); }
internal void PopulateHeaders(HtmlDocument doc) { throw Sanity.NotImplemented(); }