1 instantiation of OutputCacheProfile
System.Web (1)
Configuration\OutputCacheProfileCollection.cs (1)
69return new OutputCacheProfile();
15 references to OutputCacheProfile
System.ServiceModel.Web (1)
System\ServiceModel\Web\CachingParameterInspector.cs (1)
31OutputCacheProfile cacheProfile;
System.Web (14)
Configuration\OutputCacheProfileCollection.cs (12)
22[ConfigurationCollection(typeof(OutputCacheProfile))] 47public new OutputCacheProfile this[string name] { 49return (OutputCacheProfile)BaseGet(name); 56public OutputCacheProfile this[int index] { 58return (OutputCacheProfile)BaseGet(index); 73return ((OutputCacheProfile)element).Name; 77public void Add(OutputCacheProfile name) { 85public OutputCacheProfile Get(int index) { 86return (OutputCacheProfile)BaseGet(index); 89public OutputCacheProfile Get(string name) { 90return (OutputCacheProfile)BaseGet(name); 105public void Set(OutputCacheProfile user) {
UI\Page.cs (2)
3531OutputCacheProfile profile = null; 3557profile = (OutputCacheProfile) outputCacheSettings.OutputCacheProfiles[cacheSettings.CacheProfile];