Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a21d82f30d91227c

Jump to content

// Workers AI · dad joke modeWhat did the download cache say? I'm storing up laughter.

From Wikipedia, the free encyclopedia

The Download Cache, or downloaded files cache, is a component of Microsoft's .NET Framework that is similar to the Global Assembly Cache except that it caches assemblies that have been downloaded from the Internet.[1]

Assemblies are downloaded from the Internet when a specific managed object is requested using the <object> tag in a web page. For example, the following HTML will cause Internet Explorer to download MyAssembly.dll to the Download Cache and will subsequently instantiate MyControl on the page that contains it.

<object id="myControlId" classid="http://MyServer/MyVirtualFolder/MyAssembly.dll#MyNamespace.MyControl">
  <param name="MyProperty" value="SomeStringValue" />
</object>

Usage

[edit]

Like the GAC, the Download Cache can be accessed with gacutil.exe.[2]

One can list the contents of the Download Cache using the command:

gacutil.exe /ldl

One can delete the contents of the Download Cache using the command:

gacutil.exe /cdl

References

[edit]