Share via


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

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

Property Value

Type: System.Collections.Generic.IDictionary<StringObject>

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

Implements

IHttpRoute.DataTokens

See Also

HttpRoute Class
System.Web.Http.Routing Namespace

Return to top