C# 클래스 NGM.CasClient.Client.Utils.EnhancedUriBuilder.QueryItemCollection

A customized NameValueCollection designed to store URL parameters.
상속: System.Collections.Specialized.NameValueCollection
파일 보기 프로젝트 열기: NIKASoftwareDevs/Orchard

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