DBreeze.LianaTrie.LTrieRow.GetFullValue C# (CSharp) Method

GetFullValue() public method

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
return 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;
        }