NFe.Components.QRCode.QRCode.QRCode C# (CSharp) Méthode

QRCode() public méthode

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
Résultat 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