←Select platform

Item Property

Summary

The cache item.

Syntax
C#
VB
C++
Java
public abstract object Item( 
   string key 
) { get; set; } 
public abstract<T> T get(String key, Class<?> classOfT) 
public abstract<T> void set(String key, T value, Class<?> classOfT) 
Public MustOverride Default Property Item(ByVal key As String) As Object 
public:  
   virtual property Object^ default [String^ ] 
   { 
      Object^ get(String^ key) abstract; 
      void set(String^ key, Object^ value) abstract; 
   } 

Property Value

key

The value associated with this cache entry.

Remarks

This indexer is the equivalent of calling Get(key, null) and Set(key, value, null, null).

Requirements

Target Platforms

Help Version 20.0.2020.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Caching Assembly