C# 클래스 Vuzit.OptionList

Class for handling optional parameters for methods. These options can then be directly applied to the web service parameterse.
파일 보기 프로젝트 열기: vuzit/vuzit.net 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Add() 공개 메소드

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
리턴 OptionList

Add() 공개 메소드

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
리턴 OptionList

Add() 공개 메소드

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
리턴 OptionList

Contains() 공개 메소드

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

this() 공개 메소드

Returns the item in the list at that key.
public this ( string key ) : string
key string
리턴 string