ODataBatchHttpRequestMessageExtensions.GetODataContentIdMapping Method (HttpRequestMessage)
Retrieves the Content-ID to Location mapping associated with the request.
Namespace: System.Web.OData.Batch
Assembly: System.Web.OData (in System.Web.OData.dll)
Syntax
public static IDictionary<string, string> GetODataContentIdMapping(
this HttpRequestMessage request
)
public:
[ExtensionAttribute]
static IDictionary<String^, String^>^ GetODataContentIdMapping(
HttpRequestMessage^ request
)
static member GetODataContentIdMapping :
request:HttpRequestMessage -> IDictionary<string, string>
<ExtensionAttribute>
Public Shared Function GetODataContentIdMapping (
request As HttpRequestMessage
) As IDictionary(Of String, String)
Parameters
request
Type: System.Net.Http.HttpRequestMessageThe request.
Return Value
Type: System.Collections.Generic.IDictionary<String, String>
The Content-ID to Location mapping associated with this request, or null if there isn't one.
See Also
ODataBatchHttpRequestMessageExtensions Class
System.Web.OData.Batch Namespace
Return to top