HttpRouteData.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

'Declaration
Public ReadOnly Property Values As IDictionary(Of String, Object)
    Get
'Usage
Dim instance As HttpRouteData
Dim value As IDictionary(Of String, Object)

value = instance.Values
public IDictionary<string, Object> Values { get; }
public:
virtual property IDictionary<String^, Object^>^ Values {
    IDictionary<String^, Object^>^ get () sealed;
}
abstract Values : IDictionary<string, Object>
override Values : IDictionary<string, Object>
final function get Values () : IDictionary<String, Object>

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>
An object that contains values that are parsed from the URL and from default values.

Implements

IHttpRouteData.Values

See Also

Reference

HttpRouteData Class

System.Web.Http.Routing Namespace