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
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.
Azure SDK for .NET