Share via


MemoryConflictLog.GetAllConflicts Method

Gets a list that contains all of the conflicts in the log.

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

Syntax

'Declaration
Public Function GetAllConflicts As IEnumerable(Of LoggedConflict)
'Usage
Dim instance As MemoryConflictLog
Dim returnValue As IEnumerable(Of LoggedConflict)

returnValue = instance.GetAllConflicts()
public IEnumerable<LoggedConflict> GetAllConflicts()
public:
virtual IEnumerable<LoggedConflict^>^ GetAllConflicts() sealed
abstract GetAllConflicts : unit -> IEnumerable<LoggedConflict> 
override GetAllConflicts : unit -> IEnumerable<LoggedConflict> 
public final function GetAllConflicts() : IEnumerable<LoggedConflict>

Return Value

Type: System.Collections.Generic.IEnumerable<LoggedConflict>
A list that contains all of the conflicts in the log.

Implements

IConflictLogAccess.GetAllConflicts()

Remarks

This method returns a list that contains conflicts from both the in-memory conflict log and the conflict log of the provider, when an IConflictLogAccess object was specified in the constructor. To do this, the in-memory conflict log calls the GetAllConflicts method of the conflict log of the provider.

See Also

Reference

MemoryConflictLog Class

Microsoft.Synchronization Namespace