forked from dotnet/dotnet-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathns-System.Runtime.Caching.xml
26 lines (19 loc) · 1.12 KB
/
ns-System.Runtime.Caching.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Namespace Name="System.Runtime.Caching">
<Docs>
<summary>Contains types that let you implement caching in .NET applications.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The classes in this namespace provide a way to use caching facilities like those in ASP.NET, but without a dependency on the `System.Web` assembly.
> [!NOTE]
> The output caching functionality and types in the <xref:System.Runtime.Caching> namespace were introduced in .NET Framework 4.
The caching types that are provided in this namespace offer the following features:
- Caching is accessible to all .NET applications (not just ASP.NET).
- Caching is extensible.
- You can create custom caching providers. For example, instead of using the default in-memory cache engine, you can create custom providers that store cache data in databases, in custom objects, or in the file system.
]]></format>
</remarks>
<altmember cref="N:System.Web.Caching" />
<related type="Article" href="https://docs.microsoft.com/previous-versions/aspnet/xsbfdd8c(v=vs.100)">ASP.NET Caching</related>
</Docs>
</Namespace>