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

GetConflictTempId() public method

Returns the TempId parsed from the current conflict object if present
public GetConflictTempId ( ) : string
return string
        public virtual string GetConflictTempId()
        {
            if (!HasConflictTempId())
            {
                return null;
            }

            return this._currentEntryWrapper.ConflictWrapper.TempId;
        }