MemoryCacheSettingsCollection.Item[] Property
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.
Gets the specified MemoryCacheElement item.
Overloads
Item[Int32] |
Gets the MemoryCacheElement item that has the specified index. |
Item[String] |
Gets the MemoryCacheElement item that has the specified key. |
Item[Int32]
Gets the MemoryCacheElement item that has the specified index.
public:
property System::Runtime::Caching::Configuration::MemoryCacheElement ^ default[int] { System::Runtime::Caching::Configuration::MemoryCacheElement ^ get(int index); void set(int index, System::Runtime::Caching::Configuration::MemoryCacheElement ^ value); };
public System.Runtime.Caching.Configuration.MemoryCacheElement this[int index] { get; set; }
member this.Item(int) : System.Runtime.Caching.Configuration.MemoryCacheElement with get, set
Default Public Property Item(index As Integer) As MemoryCacheElement
Parameters
- index
- Int32
The zero-based index of the item in the collection.
Property Value
The element at the specified index.
Applies to
Item[String]
Gets the MemoryCacheElement item that has the specified key.
public:
property System::Runtime::Caching::Configuration::MemoryCacheElement ^ default[System::String ^] { System::Runtime::Caching::Configuration::MemoryCacheElement ^ get(System::String ^ key); };
public System.Runtime.Caching.Configuration.MemoryCacheElement this[string key] { get; }
member this.Item(string) : System.Runtime.Caching.Configuration.MemoryCacheElement
Default Public ReadOnly Property Item(key As String) As MemoryCacheElement
Parameters
- key
- String
A unique identifier for the item.
Property Value
The item that is specified by the key.
Remarks
The comparison of key
with MemoryCacheElement key names is case-sensitive.
Applies to
.NET