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



A strongly typed ADO.NET System.Data.DataSet which contains the cache items information.

Object Model

ItemsInfo Class

Syntax

Visual Basic (Declaration) 
<GeneratedCodeAttribute(Tool="System.Data.Design.TypedDataSetGenerator", Version="2.0.0.0")>
<HelpKeywordAttribute("vs.data.DataSet")>
<SerializableAttribute()>
Public Class ItemsInfo 
   Inherits System.Data.DataSet
   Implements IComponentIListSourceISupportInitializeISupportInitializeNotificationIDisposableIServiceProviderISerializableIXmlSerializable 
Visual Basic (Usage)Copy Code
Dim instance As ItemsInfo
C# 
[GeneratedCodeAttribute(Tool="System.Data.Design.TypedDataSetGenerator", Version="2.0.0.0")]
[HelpKeywordAttribute("vs.data.DataSet")]
[SerializableAttribute()]
public class ItemsInfo : System.Data.DataSet, IComponentIListSourceISupportInitializeISupportInitializeNotificationIDisposableIServiceProviderISerializableIXmlSerializable  
C++/CLI 
[GeneratedCodeAttribute(Tool="System.Data.Design.TypedDataSetGenerator", Version="2.0.0.0")]
[HelpKeywordAttribute("vs.data.DataSet")]
[SerializableAttribute()]
public ref class ItemsInfo : public System.Data.DataSet, IComponentIListSourceISupportInitializeISupportInitializeNotificationIDisposableIServiceProviderISerializableIXmlSerializable  

Remarks

This DataSet contains one System.Data.DataTable which includes the following columns:

Column Name Column Type
Id: A unique ID reference to the cache item. System.String
Priority: The relative precedence of the cache item. An System.Int32 which represents the System.Web.Caching.CacheItemPriority enumeration values.
CreationDate: The date/time the item was stored in the cache. System.DateTime.
Encrypted: Specify whether the cache item is encrypted or not. true if cache item is encrypted; false otherwise. System.Boolean.

Inheritance Hierarchy

System.Object
   System.ComponentModel.MarshalByValueComponent
      System.Data.DataSet
         Leadtools.Medical.Caching.ItemsInfo

Requirements

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

See Also