BMXNET 4.0 Developer API

Provides settings interface and implementation for settings from command-line, stored in PersistentStore, or hardcoded in application.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public class Settings
Public Class Settings
public ref class Settings

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
Settings()()()
BackupSettings
Equals(Object) (Inherited from Object.)
Finalize()()() (Inherited from Object.)
Get(String, Boolean)
Get the boolean Setting named aString. Answer the defaultValue if the Setting named aString does not exist in the receiver or it's Backup chain.
Get(String, Int32)
Get the Integer Setting named aString. Answer the defaultValue if the Setting named aString does not exist in the receiver or it's Backup chain.
Get(String, String)
Get the string Setting named aString. Answer the defaultValue if the Setting named aString does not exist in the receiver or it's Backup chain.
GetHashCode()()() (Inherited from Object.)
GetType()()() (Inherited from Object.)
IsPersistent
Answer true if the current Settings IsPersistent. It is possible that the Backup Settings IsPersistennt
Load()()()
Load the receiver's settings from the PersistentStore
MemberwiseClone()()() (Inherited from Object.)
MergeSettings(Settings)
Merge the settings from someSettings into the receiver
Save()()()
Save the receiver's settings to the PersistentStore
Set(String, Boolean)
Update the Setting value aName to aBool
Set(String, Int32)
Update the Setting value aName to anInt
Set(String, String)
Update the Setting value aName to a string
ToString()()() (Inherited from Object.)
WillPersistFutureSets
After set to true, every setting update will be flushed the PersistentStore if the Settings is configured with one

Inheritance Hierarchy

System..::.Object
  IndianHealthService.BMXNet.WinForm.Configuration..::.Settings

See Also