DBreeze.LianaTrie.LTrieRow.GetFullValue C# (CSharp) 메소드

GetFullValue() 공개 메소드

Returns either value as byte array or null if value doesn't exist
public GetFullValue ( bool useCache ) : byte[]
useCache bool if true, then only committed data will be shown
리턴 byte[]
        public byte[] GetFullValue(bool useCache)
        {
            if (ValueIsReadOut)
            {
                return this.Value;
            }

            if (Exists)
                return this._root.Tree.Cache.ReadValue(this.LinkToValue, useCache, out ValueStartPointer, out ValueFullLength);

            return null;
        }