BitSharper.BlockChain.BlockChain C# (CSharp) Method

BlockChain() public method

Constructs a BlockChain connected to the given wallet and store. To obtain a Wallet you can construct one from scratch, or you can deserialize a saved wallet from disk using Wallet.LoadFromFile.
For the store you can use a MemoryBlockStore if you don't care about saving the downloaded data, or a BoundedOverheadBlockStore if you'd like to ensure fast start-up the next time you run the program.
public BlockChain ( NetworkParameters @params, Wallet wallet, IBlockStore blockStore ) : System
@params NetworkParameters
wallet Wallet
blockStore IBlockStore
return System
        public BlockChain(NetworkParameters @params, Wallet wallet, IBlockStore blockStore)
            : this(@params, new List<Wallet>(), blockStore)
        {
            if (wallet != null)
                AddWallet(wallet);
        }

Same methods

BlockChain::BlockChain ( NetworkParameters @params, IBlockStore blockStore ) : System
BlockChain::BlockChain ( NetworkParameters @params, IEnumerable wallets, IBlockStore blockStore ) : System