Click or drag to resize

ParameterList Class

Represents QueryParameter collection.
Inheritance Hierarchy
SystemObject
  Limilabs.Client.AuthenticationParameterList

Namespace: Limilabs.Client.Authentication
Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntax
public class ParameterList : IEnumerable<QueryParameter>, 
	IEnumerable

The ParameterList type exposes the following members.

Constructors
 NameDescription
Public methodParameterListInitializes a new instance of the ParameterList class
Top
Properties
 NameDescription
Public propertyCount Gets the number of parameters in this collection.
Public propertyItem Gets parameter by name.
Top
Methods
 NameDescription
Public methodAdd(QueryParameter) Adds specified query parameter to this collection.
Public methodAdd(String, String) Adds new query parameter with specified name and value to this collection.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetEnumerator Returns an enumerator that iterates through the collection.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodGetValue Gets value of the parameter by name.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodStatic memberParse Parses specified query string and creates parameter collection.
Public methodRemove Removes all parameters with specified name.
Public methodRender Renders parameter list to string in url format ("name=value&name2=value2"). Values are always encoded and never quoted.
Public methodRenderAsHeader Renders parameter list to string in http header format ("name=value,name2=value2").
Public methodSortByName Sorts parameters by name.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also