BMXNET 4.0 Developer API

The persistent store interface is to save local setting configuration data. The settings are written and read based on a string a keys, like a path. The keys are application specific. Some example could be: "Product","Version" The location of the PersistentStore is based on the implementation. The LocalPersistentStore provides the settings to be stored in special OS forlders like Environment.SpecialFolder.LocalApplicationData so that the settings would be based both on the logged in user and keys.

Namespace:  IndianHealthService.BMXNet.WinForm.Configuration
Assembly:  BMXWIN40 (in BMXWIN40.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public interface PersistentStore
Public Interface PersistentStore
public interface class PersistentStore

Members

      
 All Members  Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
Read<(Of <(T>)>)(array<String>[]()[])
The implementor must deserialize an object of type T from the given location based on the keys
Write<(Of <(T>)>)(T, array<String>[]()[])
The implementor must serialize the object anObject given the keys.

See Also