ODataBatchWriter.CreateOperationRequestMessageImplementation Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an ODataBatchOperationRequestMessage for writing an operation of a batch request.
protected abstract Microsoft.OData.ODataBatchOperationRequestMessage CreateOperationRequestMessageImplementation (string method, Uri uri, string contentId, Microsoft.OData.BatchPayloadUriOption payloadUriOption, System.Collections.Generic.IEnumerable<string> dependsOnIds);
abstract member CreateOperationRequestMessageImplementation : string * Uri * string * Microsoft.OData.BatchPayloadUriOption * seq<string> -> Microsoft.OData.ODataBatchOperationRequestMessage
Protected MustOverride Function CreateOperationRequestMessageImplementation (method As String, uri As Uri, contentId As String, payloadUriOption As BatchPayloadUriOption, dependsOnIds As IEnumerable(Of String)) As ODataBatchOperationRequestMessage
Parameters
- method
- String
The Http method to be used for this request operation.
- uri
- Uri
The Uri to be used for this request operation.
- contentId
- String
The Content-ID value to write in ChangeSet head.
- payloadUriOption
- BatchPayloadUriOption
The format of operation Request-URI, which could be AbsoluteUri, AbsoluteResourcePathAndHost, or RelativeResourcePath.
- dependsOnIds
- IEnumerable<String>
The prerequisite request ids of this request.
Returns
The message that can be used to write the request operation.