Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Download Cache

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. Q. 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>
We don't have any images related to Download Cache yet.
We don't have any YouTube videos related to Download Cache yet.
We don't have any PDF documents related to Download Cache yet.
We don't have any Books related to Download Cache yet.
We don't have any archived web articles related to Download Cache yet.

Usage

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

  1. Basic Instincts: Deploying Assemblies http://msdn2.microsoft.com/en-us/magazine/cc164080.aspx

  2. Global Assembly Cache Tool (Gacutil.exe) http://msdn2.microsoft.com/en-us/library/ex0ss12c(VS.80).aspx