Share via


IHttpRouteData.Values Property

 

Gets a collection of URL parameter values and default values for the route.

Namespace:   System.Web.Http.Routing
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

IDictionary<string, object> Values { get; }
property IDictionary<String^, Object^>^ Values {
    IDictionary<String^, Object^>^ get();
}
abstract Values : IDictionary<string, Object> with get
ReadOnly Property Values As IDictionary(Of String, Object)

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>

The values that are parsed from the URL and from default values.

See Also

IHttpRouteData Interface
System.Web.Http.Routing Namespace

Return to top