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.23341.1754
Syntax
public class ParameterList : IEnumerable<QueryParameter>, 
	IEnumerable

The ParameterList type exposes the following members.

Constructors
  NameDescription
Public methodParameterList
Initializes 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 methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows 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 methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue
Gets value of the parameter by name.
Protected methodMemberwiseClone
Creates 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 methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also