Regarding ASP.NET Autostart/Prewarm, (see this page for example http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx) what should I put within the preload function code in the assembly file you're supposed to create for this? I did have something when I attempted this, but can not recall since I had scrapped the initial class file I had created. It didn't do anything to speed up the site in question, but I'm wondering if maybe I was missing something in this class that I should have had?
public class PreWarmCache : System.Web.Hosting.IProcessHostPreloadClient {
public void Preload(string[] parameters)
{
// What goes here?
}
}