Microsoft.Samples.Synchronization.ClientServices.Formatters.SyncReader.HasConflict C# (CSharp) Method

HasConflict() public method

Check to see if the current object that was just parsed had a conflict element on it or not.
public HasConflict ( ) : bool
return bool
        public virtual bool HasConflict()
        {
            if (_currentEntryWrapper != null)
            {
                return this._currentEntryWrapper.ConflictWrapper != null;
            }
            return false;
        }