CacheItem Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CacheItem class.
Overloads
CacheItem(String) |
Initializes a new CacheItem instance using the specified key of a cache entry. |
CacheItem(String, Object) |
Initializes a new CacheItem instance using the specified key and a value of the cache entry. |
CacheItem(String, Object, String) |
Initializes a new CacheItem instance using the specified key, value, and region of the cache entry. |
CacheItem(String)
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
Initializes a new CacheItem instance using the specified key of a cache entry.
public:
CacheItem(System::String ^ key);
public CacheItem (string key);
new System.Runtime.Caching.CacheItem : string -> System.Runtime.Caching.CacheItem
Public Sub New (key As String)
Parameters
Remarks
When the CacheItem(String) method overload is called, the property values for RegionName and Value are set to null
.
Applies to
CacheItem(String, Object)
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
Initializes a new CacheItem instance using the specified key and a value of the cache entry.
public:
CacheItem(System::String ^ key, System::Object ^ value);
public CacheItem (string key, object value);
new System.Runtime.Caching.CacheItem : string * obj -> System.Runtime.Caching.CacheItem
Public Sub New (key As String, value As Object)
Parameters
Remarks
When the CacheItem(String, Object) method overload is called, the property value for RegionName is set to null
.
Applies to
CacheItem(String, Object, String)
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
- Source:
- CacheItem.cs
Initializes a new CacheItem instance using the specified key, value, and region of the cache entry.
public:
CacheItem(System::String ^ key, System::Object ^ value, System::String ^ regionName);
public CacheItem (string key, object value, string regionName);
new System.Runtime.Caching.CacheItem : string * obj * string -> System.Runtime.Caching.CacheItem
Public Sub New (key As String, value As Object, regionName As String)