Conflicts.ReadConflictContent<T>(ConflictProperties) Method

Definition

Reads the content of the Conflict resource in the Azure Cosmos DB service.

public abstract T ReadConflictContent<T> (Microsoft.Azure.Cosmos.ConflictProperties conflict);
abstract member ReadConflictContent : Microsoft.Azure.Cosmos.ConflictProperties -> 'T
Public MustOverride Function ReadConflictContent(Of T) (conflict As ConflictProperties) As T

Type Parameters

T

Parameters

conflict
ConflictProperties

The conflict for which we want to read the content of.

Returns

T

The content of the conflict.

Examples

using (FeedIterator<ConflictProperties> conflictIterator = conflicts.GetConflictQueryIterator())
{
    while (conflictIterator.HasMoreResults)
    {
        foreach(ConflictProperties item in await conflictIterator.ReadNextAsync())
        {
            MyClass intendedChanges = conflicts.ReadConflictContent<MyClass>(item);
        }
    }
}

Applies to

See also