ChangeBatch.BeginUnorderedGroup Method

Opens an unordered group in the change batch. Item changes in this group can be in any order.

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

Syntax

'Declaration
Public Sub BeginUnorderedGroup
'Usage
Dim instance As ChangeBatch

instance.BeginUnorderedGroup()
public void BeginUnorderedGroup()
public:
void BeginUnorderedGroup()
member BeginUnorderedGroup : unit -> unit 
public function BeginUnorderedGroup()

Exceptions

Exception Condition
ObjectDisposedException

This ChangeBatch has already been disposed.

SyncInvalidOperationException

The change batch contains a group that was started but not ended.

ChangeBatchIsReadOnlyException

The change batch has already been sent to a change applier or synchronization session. Changes cannot be added to the batch after it has been sent.

Remarks

Item changes added to the change batch after this method is called are added to the open group.

Item changes cannot be added to the change batch until a group is opened.

See Also

Reference

ChangeBatch Class

Microsoft.Synchronization Namespace