C# Class QuickFix.Dictionary

Name/value pairs used for specifying groups of settings
Inheritance: System.Collections.IEnumerable
Datei anzeigen Open project: kennystone/quickfixn Class Usage Examples

Public Methods

Method Description
Dictionary ( ) : System
Dictionary ( Dictionary d ) : System
Dictionary ( string name ) : System
Dictionary ( string name, string>.System data ) : System
GetBool ( string key ) : bool
GetDay ( string key ) : int
GetDouble ( string key ) : double
GetEnumerator ( ) : System.Collections.IEnumerator
GetLong ( string key ) : long
GetString ( string key, bool capitalize ) : String
GetString ( string key ) : string
Has ( string key ) : bool
Merge ( Dictionary toMerge ) : void
SetBool ( string key, bool val ) : void
SetDay ( string key, int val ) : void
SetDouble ( string key, double val ) : void
SetLong ( string key, long val ) : void
SetString ( string key, string val ) : void

Method Details

Dictionary() public method

public Dictionary ( ) : System
return System

Dictionary() public method

public Dictionary ( Dictionary d ) : System
d Dictionary
return System

Dictionary() public method

public Dictionary ( string name ) : System
name string
return System

Dictionary() public method

public Dictionary ( string name, string>.System data ) : System
name string
data string>.System
return System

GetBool() public method

public GetBool ( string key ) : bool
key string
return bool

GetDay() public method

public GetDay ( string key ) : int
key string
return int

GetDouble() public method

public GetDouble ( string key ) : double
key string
return double

GetEnumerator() public method

public GetEnumerator ( ) : System.Collections.IEnumerator
return System.Collections.IEnumerator

GetLong() public method

public GetLong ( string key ) : long
key string
return long

GetString() public method

public GetString ( string key, bool capitalize ) : String
key string
capitalize bool
return String

GetString() public method

public GetString ( string key ) : string
key string
return string

Has() public method

public Has ( string key ) : bool
key string
return bool

Merge() public method

public Merge ( Dictionary toMerge ) : void
toMerge Dictionary
return void

SetBool() public method

public SetBool ( string key, bool val ) : void
key string
val bool
return void

SetDay() public method

public SetDay ( string key, int val ) : void
key string
val int
return void

SetDouble() public method

public SetDouble ( string key, double val ) : void
key string
val double
return void

SetLong() public method

public SetLong ( string key, long val ) : void
key string
val long
return void

SetString() public method

public SetString ( string key, string val ) : void
key string
val string
return void