Nethereum.Core.SimpleRLPSigner.GetRLPEncodedRaw C# (CSharp) Method

GetRLPEncodedRaw() public method

public GetRLPEncodedRaw ( ) : byte[]
return byte[]
        public byte[] GetRLPEncodedRaw()
        {
            EnsuredRPLDecoded();

            if (rlpRaw != null)
                return rlpRaw;
            rlpRaw = BuildRLPEncoded(true);
            return rlpRaw;
        }