C# Class Pushover_plugin.QuerystringBuilder

Builds a querystring (or form post data) from the specified name/object pairs.
Afficher le fichier Open project: Vorror/GrowlForWindowsPushover Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

Add() public méthode

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

ToPostData() public méthode

Returns the constructed form post data (no leading ?)
public ToPostData ( ) : string
Résultat string

ToQuerystring() public méthode

Returns the constructed querystring, including the leading ?
public ToQuerystring ( ) : string
Résultat string

ToString() public méthode

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
Résultat string