BitcoinLib.BlockchainAPI.Wallet.Wallet C# (CSharp) Method

Wallet() public method

Wallet class that reflects the functionality documented at at https://blockchain.info/api/blockchain_wallet_api. It allows users to directly interact with their existing Blockchain.info wallet, send funds, manage addresses etc.
public Wallet ( string guid, string password, string secoundPassword = null, string apiCod = null ) : System
guid string Your wallet guid.
password string Your wallet password.
secoundPassword string Secoud password.
apiCod string API Code.
return System
        public Wallet(string guid, string password, string secoundPassword = null, string apiCod = null)
        {
            _guid = guid;
            _password = password;
            _secounfPassword = secoundPassword.Trim().Length > 0 ? secoundPassword : null;
            _apiCode = apiCod.Trim().Length > 0 ? apiCod : null;
            BCw = new Info.Blockchain.API.Wallet.Wallet(_guid, _password, _secounfPassword, _apiCode);
        }