C# Class NGM.CasClient.Client.Utils.EnhancedUriBuilder.QueryItemCollection

A customized NameValueCollection designed to store URL parameters.
Inheritance: System.Collections.Specialized.NameValueCollection
Mostra file Open project: NIKASoftwareDevs/Orchard

Private Properties

Property Type Description

Public Methods

Method Description
Add ( string name, string value ) : void

Adds a name/value pair to the collection

Remove ( string name ) : void

Removes a name/value pair from the collection

Set ( string name, string value ) : void

Sets a new value for the given URL parameter.

Method Details

Add() public method

Adds a name/value pair to the collection
public Add ( string name, string value ) : void
name string The name of the URL parameter to add
value string The value of the URL parameter
return void

Remove() public method

Removes a name/value pair from the collection
public Remove ( string name ) : void
name string The name of the URL parameter to remove
return void

Set() public method

Sets a new value for the given URL parameter.
public Set ( string name, string value ) : void
name string The name of the URL parameter to set
value string The new value of the URL parameter
return void