Chili.Opf3 Send comments on this topic.
StorageBase Class
See Also  Members  
Chili.Opf3.Storages Namespace : StorageBase Class




Abstract base class that implements the functionality to access storages.

Object Model


Syntax

Visual Basic (Declaration) 
Public MustInherit Class StorageBase 
   Inherits MarshalByRefObject
   Implements IStorage 
Visual Basic (Usage)Copy Code
Dim instance As StorageBase
C# 
public abstract class StorageBase : MarshalByRefObject, IStorage  
Managed Extensions for C++ 
public __gc abstract class StorageBase : public MarshalByRefObject, IStorage  
C++/CLI 
public ref class StorageBase abstract : public MarshalByRefObject, IStorage  

Example

For examples how to implement your own storage see: MsSqlStorage, OracleStorage or any other storage that comes with the framework.

Remarks

This class implements a abstract base class to access any kind of storage. It provides the main functionality and some methods that have to be overriden in derived classes.

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      Chili.Opf3.Storages.StorageBase
         Chili.Opf3.Storages.SqlStorageBase

Requirements

Namespace: Chili.Opf3.Storages

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: Chili.Opf3 (in Chili.Opf3.dll)

See Also