Conflicts.ReadConflictContent<T>(ConflictProperties) 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.
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
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.
Azure SDK for .NET