C# Class Vuzit.OptionList

Class for handling optional parameters for methods. These options can then be directly applied to the web service parameterse.
Afficher le fichier Open project: vuzit/vuzit.net Class Usage Examples

Méthodes publiques

Méthode Description
Add ( string key, bool value ) : OptionList

Adds an option then returns itself so that you can chain add items to the list.

Add ( string key, int value ) : OptionList

Adds an option then returns itself so that you can chain add items to the list.

Add ( string key, string value ) : OptionList

Adds an option then returns itself so that you can chain add items to the list.

Contains ( string key ) : bool

Returns true if the list contains an item by that key name.

this ( string key ) : string

Returns the item in the list at that key.

Method Details

Add() public méthode

Adds an option then returns itself so that you can chain add items to the list.
public Add ( string key, bool value ) : OptionList
key string
value bool
Résultat OptionList

Add() public méthode

Adds an option then returns itself so that you can chain add items to the list.
public Add ( string key, int value ) : OptionList
key string
value int
Résultat OptionList

Add() public méthode

Adds an option then returns itself so that you can chain add items to the list.
public Add ( string key, string value ) : OptionList
key string
value string
Résultat OptionList

Contains() public méthode

Returns true if the list contains an item by that key name.
public Contains ( string key ) : bool
key string
Résultat bool

this() public méthode

Returns the item in the list at that key.
public this ( string key ) : string
key string
Résultat string