Table of Contents

Class HttpRouteValueDictionary

Namespace
System.Web.Http.Routing
Assembly
System.Web.Http.dll

Represents a route class for self-host of specified key/value pairs.

public class HttpRouteValueDictionary : Dictionary<string, object>, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IDictionary, ICollection, IReadOnlyDictionary<string, object>, IReadOnlyCollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IEnumerable, ISerializable, IDeserializationCallback
Inheritance
HttpRouteValueDictionary
Implements
Inherited Members

Constructors

HttpRouteValueDictionary()

Initializes a new instance of the HttpRouteValueDictionary class.

public HttpRouteValueDictionary()

HttpRouteValueDictionary(IDictionary<string, object>)

Initializes a new instance of the HttpRouteValueDictionary class.

public HttpRouteValueDictionary(IDictionary<string, object> dictionary)

Parameters

dictionary IDictionary<string, object>

The dictionary.

HttpRouteValueDictionary(object)

Initializes a new instance of the HttpRouteValueDictionary class.

public HttpRouteValueDictionary(object values)

Parameters

values object

The key value.