OutputCacheProvider Class
Serves as a base class that contains abstract methods for implementing an output-cache provider.
Assembly: System.Web (in System.Web.dll)
System.Configuration.Provider::ProviderBase
System.Web.Caching::OutputCacheProvider
System.Web.Caching::OutputCacheProviderAsync
| Name | Description | |
|---|---|---|
![]() | OutputCacheProvider() | Initializes a new instance of the OutputCacheProvider class. |
| Name | Description | |
|---|---|---|
![]() | Description | Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs).(Inherited from ProviderBase.) |
![]() | Name | Gets the friendly name used to refer to the provider during configuration.(Inherited from ProviderBase.) |
| Name | Description | |
|---|---|---|
![]() | Add(String^, Object^, DateTime) | Inserts the specified entry into the output cache. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | Get(String^) | Returns a reference to the specified entry in the output cache. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | Initialize(String^, NameValueCollection^) | Initializes the provider.(Inherited from ProviderBase.) |
![]() | MemberwiseClone() | |
![]() | Remove(String^) | Removes the specified entry from the output cache. |
![]() | Set(String^, Object^, DateTime) | Inserts the specified entry into the output cache, overwriting the entry if it is already cached. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
All output-cache providers must implement the abstract methods in the OutputCacheProvider class.
Notes to Inheritors:
When you inherit from OutputCacheProvider, you must override the following members:
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


