I have a C# ASP.NET application which starts about 25 different threads running some methods in a class called SiteCrawler.cs.
In HttpContext.Current.Session<
HttpContext.Current.Session<
Just add the HttpContext.Current to the constructor of your class SiteCrawler.cs
public class SiteCrawler { HttpContext context = HttpContext.Current; public void Method() { context.WhateverYouWant } }