IHttpRoute.DataTokens Property

 

Gets any additional data tokens not used directly to determine whether a route matches an incoming HttpRequestMessage.

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

Syntax

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

Property Value

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

The additional data tokens.

See Also

IHttpRoute Interface
System.Web.Http.Routing Namespace

Return to top