3 types derived from ResponseElement
System.Web (3)
Cache\FileResponseElement.cs (1)
9public class FileResponseElement: ResponseElement {
Cache\MemoryResponseElement.cs (1)
9public class MemoryResponseElement: ResponseElement {
Cache\SubstitutionResponseElement.cs (1)
11public class SubstitutionResponseElement: ResponseElement {
7 references to ResponseElement
System.Web (7)
Cache\IOutputCacheEntry.cs (1)
14List<ResponseElement> ResponseElements { get; set; }
Cache\OutputCache.cs (3)
192List<ResponseElement> responseElements = null; 197responseElements = new List<ResponseElement>(count); 244ResponseElement re = oce.ResponseElements[i];
Cache\OutputCacheEntry.cs (3)
20private List<ResponseElement> _responseElements; 33public List<ResponseElement> ResponseElements { get { return _responseElements; } 48List<ResponseElement> responseElements) {