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

HasTempId() public method

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