C# 클래스 Pushover_plugin.QuerystringBuilder

Builds a querystring (or form post data) from the specified name/object pairs.
파일 보기 프로젝트 열기: Vorror/GrowlForWindowsPushover 1 사용 예제들

공개 메소드들

메소드 설명
Add ( string key, object value ) : void

Adds the specified name/object pair to the querystring

ToPostData ( ) : string

Returns the constructed form post data (no leading ?)

ToQuerystring ( ) : string

Returns the constructed querystring, including the leading ?

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

메소드 상세

Add() 공개 메소드

Adds the specified name/object pair to the querystring
public Add ( string key, object value ) : void
key string The key.
value object The value.
리턴 void

ToPostData() 공개 메소드

Returns the constructed form post data (no leading ?)
public ToPostData ( ) : string
리턴 string

ToQuerystring() 공개 메소드

Returns the constructed querystring, including the leading ?
public ToQuerystring ( ) : string
리턴 string

ToString() 공개 메소드

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
리턴 string