NFe.Components.QRCode.QRCode.QRCode C# (CSharp) 메소드

QRCode() 공개 메소드

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
리턴 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