BitSharp.Network.NetworkEncoder.DecodeInventoryVector C# (CSharp) Метод

DecodeInventoryVector() публичный статический Метод

public static DecodeInventoryVector ( BinaryReader reader ) : InventoryVector
reader System.IO.BinaryReader
Результат InventoryVector
        public static InventoryVector DecodeInventoryVector(BinaryReader reader)
        {
            return new InventoryVector
            (
                Type: reader.ReadUInt32(),
                Hash: reader.ReadUInt256()
            );
        }

Same methods

NetworkEncoder::DecodeInventoryVector ( byte bytes ) : InventoryVector