21 references to OutputCacheProvider
System.Web (21)
Cache\OutputCache.cs (13)
80
private static
OutputCacheProvider
s_defaultProvider;
136
private static
OutputCacheProvider
GetFragmentProvider(String providerName) {
139
OutputCacheProvider
provider = null;
157
private static
OutputCacheProvider
GetProvider(HttpContext context) {
173
OutputCacheProvider
provider = (s_providers == null) ? null : s_providers[name];
520
OutputCacheProvider
provider = GetProvider(HttpContext.Current);
556
OutputCacheProvider
provider = GetFragmentProvider(providerName);
599
foreach (
OutputCacheProvider
provider in providers) {
605
OutputCacheProvider
provider = GetProvider(context);
626
OutputCacheProvider
provider = (providers == null) ? null : providers[providerName];
642
OutputCacheProvider
provider = GetFragmentProvider(providerName);
663
OutputCacheProvider
provider = GetFragmentProvider(providerName);
772
OutputCacheProvider
provider = GetProvider(HttpContext.Current);
Cache\OutputCacheProviderCollection.cs (5)
9
new public
OutputCacheProvider
this[string name] {
11
return (
OutputCacheProvider
) base[name];
20
if (!(provider is
OutputCacheProvider
)) {
21
throw new ArgumentException(SR.GetString(SR.Provider_must_implement_type, typeof(
OutputCacheProvider
).Name),
28
public void CopyTo(
OutputCacheProvider
[] array, int index) {
Configuration\OutputCacheSection.cs (3)
204
ProvidersHelper.InstantiateProviders(providers, collection, typeof(
OutputCacheProvider
));
209
internal
OutputCacheProvider
GetDefaultProvider(OutputCacheProviderCollection providers) {
217
OutputCacheProvider
defaultProvider = (providers == null) ? null : providers[defaultProviderName];