NFe.Components.QRCode.QRCode.QRCode C# (CSharp) Method

QRCode() public method

Construtor
public QRCode ( string identificadorCSC, string tokenCSC, string arquivoXML ) : System
identificadorCSC string Codigo de identificação no banco de dados do SEFAZ
tokenCSC string Codigo de identificação do Contribuinte (antigo Token)
arquivoXML string Arquivo XML com as informações para calculo
return System
        public QRCode(string identificadorCSC, string tokenCSC, string arquivoXML)
        {
            this.IdentificadorCSC = identificadorCSC.Trim();
            this.TokenCSC = tokenCSC.Trim();
            this.ArquivoXML = arquivoXML;

            this.Populate();
            this.Validate();
        }
        #endregion