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
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.