Microsoft.Samples.Synchronization.ClientServices.Formatters.SyncReader.GetConflictTempId C# (CSharp) 메소드

GetConflictTempId() 공개 메소드

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

            return this._currentEntryWrapper.ConflictWrapper.TempId;
        }