HttpContext.Current.Request.ContentType
HttpContext.Current.Session[SESSION_KEY]
HttpContext.Current.Response.ContentType = "application/json";
HttpContext.Current.Response.Write(JsonConvert.SerializeObject(someObject));
HttpContext.Current.Response.End();