BTDB.ODBLayer.TableInfo.CacheSingletonContent C# (CSharp) Method

CacheSingletonContent() public method

public CacheSingletonContent ( long transactionNumber, byte content ) : void
transactionNumber long
content byte
return void
        public void CacheSingletonContent(long transactionNumber, byte[] content)
        {
            lock (_cachedSingletonLock)
            {
                if (transactionNumber - _cachedSingletonTrNum < 0) return;
                _cachedSingletonTrNum = transactionNumber;
                _cachedSingletonContent = content;
            }
        }