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

GetTempId() public method

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

            return this._currentEntryWrapper.TempId;
        }