Error processing SSI file
LEADTOOLS Medical (Leadtools.Medical.Caching assembly)

Show in webframe

Item Property






A System.String that identifies the cache item to be retrieved.
Gets an item from the cache.
Syntax
public virtual byte[] this[ 
   string id
]; {get;}
'Declaration
 
Public Overridable ReadOnly Default Property Item( _
   ByVal id As String _
) As Byte()
'Usage
 
Dim instance As Cache
Dim id As String
Dim value() As Byte
 
value = instance.Item(id)

            

            
public:
virtual property array<byte>^ default [String^] {
   array<byte>^ get(String^ id);
}

Parameters

id
A System.String that identifies the cache item to be retrieved.

Property Value

The item stored in the cache as an array of System.Byte
Remarks
If the item specified by the id does not exist, this property will throw an exception.
Requirements

Target Platforms

See Also

Reference

Cache Class
Cache Members

Error processing SSI file