Gets the list of conflicts that match the specified path filters. The source and target local and server paths for each conflict are matched against the specified paths.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in microsoft.teamfoundation.versioncontrol.client.dll)
Visual Basic (Declaration)
Public Function QueryConflicts ( _
pathFilters As String(), _
recursive As Boolean _
) As Conflict()
Dim instance As Workspace
Dim pathFilters As String()
Dim recursive As Boolean
Dim returnValue As Conflict()
returnValue = instance.QueryConflicts(pathFilters, recursive)
public Conflict[] QueryConflicts (
string[] pathFilters,
bool recursive
)
public:
array<Conflict^>^ QueryConflicts (
array<String^>^ pathFilters,
bool recursive
)
public Conflict[] QueryConflicts (
String[] pathFilters,
boolean recursive
)
public function QueryConflicts (
pathFilters : String[],
recursive : boolean
) : Conflict[]
Parameters
- pathFilters
The paths by which to filter the conflicts (local or server paths).
- recursive
Return Value
The conflicts that match the specified paths.