BitSharp.Network.Domain.GetBlocksPayload.GetBlocksPayload C# (CSharp) Method

GetBlocksPayload() public method

public GetBlocksPayload ( UInt32 Version, ImmutableArray BlockLocatorHashes, UInt256 HashStop ) : BitSharp.Common
Version System.UInt32
BlockLocatorHashes ImmutableArray
HashStop UInt256
return BitSharp.Common
        public GetBlocksPayload(UInt32 Version, ImmutableArray<UInt256> BlockLocatorHashes, UInt256 HashStop)
        {
            this.Version = Version;
            this.BlockLocatorHashes = BlockLocatorHashes;
            this.HashStop = HashStop;
        }
    }
GetBlocksPayload