BTDB.ODBLayer.TableInfo.SingletonContent C# (CSharp) 메소드

SingletonContent() 공개 메소드

public SingletonContent ( long transactionNumber ) : byte[]
transactionNumber long
리턴 byte[]
        public byte[] SingletonContent(long transactionNumber)
        {
            lock (_cachedSingletonLock)
            {
                if (_cachedSingletonTrNum - transactionNumber > 0) return null;
                return _cachedSingletonContent;
            }
        }