This document is archived and information here might be outdated.  Recommended version.


IVersionEvents.OnConflictsDetected Event (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IV > IVersionEvents Interface > IVersionEvents.OnConflictsDetected Event
ArcGIS Developer Help

IVersionEvents.OnConflictsDetected Event

This event is fired during reconciliation, after conflicts are detected. It can be used by application developers to filter found conflicts.

[Visual Basic .NET]
Public Event OnConflictsDetected As OnConflictsDetectedEventHandler
[C#]
public event OnConflictsDetectedEventHandler OnConflictsDetected
[C++]
HRESULT OnConflictsDetected(
  Boolean* conflictsRemoved,
  Boolean* errorOccurred,
  System.String* errorString
);
[C++]
Parameters
conflictsRemoved 

conflictsRemoved is a parameter of type bool* errorOccurred
errorOccurred is a parameter of type bool* errorString
errorString is a parameter of type BSTR*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

It is the developer's responsibility to set the conflictsRemoved argument to true if any conflicts were removed from any of the Conflict Classes.

See Also

IVersionEvents Interface