Table of Contents

Class NameValueCollectionExtensions

Namespace
Kentico.Content.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Provides extension methods for the System.Collections.Specialized.NameValueCollection class.

public static class NameValueCollectionExtensions
Inheritance
object
NameValueCollectionExtensions

Methods

Add(NameValueCollection, string, object)

Adds an entry with the specified name and value to the System.Collections.Specialized.NameValueCollection.

public static void Add(this NameValueCollection collection, string name, object value)

Parameters

collection NameValueCollection

The name value collection.

name string

The key of the entry to add.

value object

The value of the entry to add

AddSizeConstraint(NameValueCollection, SizeConstraint)

Adds size constraint's values to the collection.

public static void AddSizeConstraint(this NameValueCollection collection, SizeConstraint constraint)

Parameters

collection NameValueCollection

The name value collection.

constraint SizeConstraint

Size constraint.

ToQueryString(NameValueCollection)

Returns a query string that represents the collection. Uses the format: ?name1=value1&name2=value2...

public static string ToQueryString(this NameValueCollection collection)

Parameters

collection NameValueCollection

The name value collection.

Returns

string