ObjectCache::Host Property
Gets or set a reference to a managed hosting environment that is available to ObjectCache implementations and that can provide host-specific services to ObjectCache implementations.
Assembly: System.Runtime.Caching (in System.Runtime.Caching.dll)
public: static property IServiceProvider^ Host { IServiceProvider^ get (); void set (IServiceProvider^ value); }
Property Value
Type: System::IServiceProviderA reference to a cache-aware managed hosting environment.
| Exception | Condition |
|---|---|
| ArgumentNullException | The value being assigned to the property is nullptr. |
| InvalidOperationException | An attempt was made to set the property value more than one time. |
The Host property is intended for use by .NET Framework host environments and by cache implementations that implement behavior that depends on the .NET Framework host environment.
The following table lists the set of host environment services that might be available from a managed hosting environment and that are available to ObjectCache implementations through the Host property:
Service | Description |
|---|---|
Lets host environments provide application domain identifiers that might be needed by a cache implementation for features such as identifying performance counters. | |
Lets host environments provide a custom file-change notification system, instead of using the one provided in the .NET Framework. | |
Lets cache implementations report cache memory consumption to the host environment. This enables host environments to centrally manage memory consumption across multiple cache implementations. |
Note |
|---|
Callers of this property value require unrestricted code access security permissions. |
- Demand
for full trust for all accessors of this property. This property cannot be used by partially trusted code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note