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