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
'Declaration
ReadOnly Property Values As IDictionary(Of String, Object)
Get
'Usage
Dim instance As IHttpRouteData
Dim value As IDictionary(Of String, Object)
value = instance.Values
IDictionary<string, Object> Values { get; }
property IDictionary<String^, Object^>^ Values {
IDictionary<String^, Object^>^ get ();
}
abstract Values : IDictionary<string, Object>
function get Values () : IDictionary<String, Object>
Property Value
Type: System.Collections.Generic.IDictionary<String, Object>
The values that are parsed from the URL and from default values.