Share via


HttpRequestMessageProperties.RoutingConventionsStore Property

 

Gets the data store used by IODataRoutingConventions to store any custom route data. Getter creates a new IDictionary<string, object> the first time it is called.

Namespace:   System.Web.Http.OData.Extensions
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

public IDictionary<string, object> RoutingConventionsStore { get; private set; }
public:
property IDictionary<String^, Object^>^ RoutingConventionsStore {
    IDictionary<String^, Object^>^ get();
    private: void set(IDictionary<String^, Object^>^ value);
}
member RoutingConventionsStore : IDictionary<string, Object> with get, private set
Public Property RoutingConventionsStore As IDictionary(Of String, Object)
    Get
    Private Set
End Property

Property Value

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

See Also

HttpRequestMessageProperties Class
System.Web.Http.OData.Extensions Namespace

Return to top