LEADTOOLS Medical (Leadtools.Medical.Caching assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
Item Property
See Also 
Leadtools.Medical.Caching Namespace > Cache Class : Item Property



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

The Item Property is available as an add-on to the LEADTOOLS Medical Imaging toolkits.

Gets an item from the cache.

Syntax

Visual Basic (Declaration) 
Public Overridable ReadOnly Default Property Item( _
   ByVal id As String _
) As Byte()
Visual Basic (Usage)Copy Code
Dim instance As Cache
Dim id As String
Dim value() As Byte
 
value = instance.Item(id)
C# 
public virtual byte[] this( 
   string id
) {get;}
C++/CLI 
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 doesn't exists this property will throw an exception.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also