Click or drag to resize
IQueryCollection Interface
Represents the IRequest query string collection

Namespace: CMS.Base.Internal
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public interface IQueryCollection : IEnumerable<KeyValuePair<string, StringValues>>, 
	IEnumerable

The IQueryCollection type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of set query string values.
Public propertyItem
Gets a query string value.
Public propertyKeys
Gets collection containing names of all set header.
Top
Methods
  NameDescription
Public methodContainsKey
Determines whether the collection contains a query string value with specified name.
Public methodTryGetValue
Retrieves value of query string item specified by given name.
Top
Extension Methods
  NameDescription
Public Extension MethodBatchKeyValuePairString, StringValues
Returns input in batches of batchSize size.
(Defined by BaseExtensions.)
Public Extension MethodToJSON
Returns JSON representation of current instance of IEnumerable.
(Defined by DataExtensions.)
Public Extension MethodToNameValueCollection
Converts to NameValueCollection as a copy. The StringValues values of the collection are copied by implicit conversion to String.
(Defined by QueryCollectionExtensions.)
Public Extension MethodToQueryStringOverloaded.
Returns an & separated serialization of IQueryCollection object.
(Defined by QueryCollectionExtensions.)
Public Extension MethodToQueryString(Boolean)Overloaded.
Returns an & separated serialization of IQueryCollection object.
(Defined by QueryCollectionExtensions.)
Public Extension MethodToXML
Returns XML representation of current instance of IEnumerable.
(Defined by DataExtensions.)
Top
See Also