ODataBatchWriter.WriteStartChangesetAsync 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.
Overloads
WriteStartChangesetAsync() |
Asynchronously starts a new change set without specifying group id; This can only be called after WriteStartBatch and if no other active operation or change set exists. |
WriteStartChangesetAsync(String) |
Asynchronously starts a new change set; can only be called after WriteStartBatch and if no other active operation or change set exists. |
WriteStartChangesetAsync()
Asynchronously starts a new change set without specifying group id; This can only be called after WriteStartBatch and if no other active operation or change set exists.
public System.Threading.Tasks.Task WriteStartChangesetAsync ();
member this.WriteStartChangesetAsync : unit -> System.Threading.Tasks.Task
Public Function WriteStartChangesetAsync () As Task
Returns
A task instance that represents the asynchronous write operation.
Applies to
WriteStartChangesetAsync(String)
Asynchronously starts a new change set; can only be called after WriteStartBatch and if no other active operation or change set exists.
public System.Threading.Tasks.Task WriteStartChangesetAsync (string changesetId);
member this.WriteStartChangesetAsync : string -> System.Threading.Tasks.Task
Public Function WriteStartChangesetAsync (changesetId As String) As Task
Parameters
- changesetId
- String
The change set Id of the batch request. Cannot be null.
Returns
A task instance that represents the asynchronous write operation.
Exceptions
Thrown if the changesetId
is null.