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