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

A customized NameValueCollection designed to store URL parameters.
Inheritance: System.Collections.Specialized.NameValueCollection
Afficher le fichier Open project: NIKASoftwareDevs/Orchard

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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 méthode

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
Résultat void

Remove() public méthode

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

Set() public méthode

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
Résultat void