Conflicts.ReadConflictContent<T>(ConflictProperties) メソッド

定義

Azure Cosmos DB サービスの競合リソースの内容を読み取ります。

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

型パラメーター

T

パラメーター

conflict
ConflictProperties

コンテンツを読み取る競合。

戻り値

T

競合の内容。

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

適用対象

こちらもご覧ください