KeyValuePathSegmentTemplate.ParameterMappings Property

 

Gets the dictionary representing the mappings from the key names in the segment to the key names in route data.

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

Syntax

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

Property Value

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

See Also

KeyValuePathSegmentTemplate Class
System.Web.OData.Routing Namespace

Return to top