C# Класс NGM.CasClient.Client.Utils.EnhancedUriBuilder.QueryItemCollection

A customized NameValueCollection designed to store URL parameters.
Наследование: System.Collections.Specialized.NameValueCollection
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
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.

Описание методов

Add() публичный Метод

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
Результат void

Remove() публичный Метод

Removes a name/value pair from the collection
public Remove ( string name ) : void
name string The name of the URL parameter to remove
Результат void

Set() публичный Метод

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
Результат void