Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- // Runtime Version:4.0.30319.42000
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- //
- // This source code was auto-generated by Microsoft.VSDesigner, Version 4.0.30319.42000.
- //
- #pragma warning disable 1591
- namespace ConsultaNFe.NFeDistribuicaoDFe {
- using System;
- using System.Web.Services;
- using System.Diagnostics;
- using System.Web.Services.Protocols;
- using System.Xml.Serialization;
- using System.ComponentModel;
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Web.Services.WebServiceBindingAttribute(Name="NFeDistribuicaoDFeSoap", Namespace="http://www.portalfiscal.inf.br/nfe/wsdl/NFeDistribuicaoDFe")]
- public partial class NFeDistribuicaoDFe : System.Web.Services.Protocols.SoapHttpClientProtocol {
- private System.Threading.SendOrPostCallback nfeDistDFeInteresseOperationCompleted;
- private bool useDefaultCredentialsSetExplicitly;
- /// <remarks/>
- public NFeDistribuicaoDFe() {
- this.Url = global::ConsultaNFe.Properties.Settings.Default.ConsultaNFe_NFeDistribuicaoDFe_NFeDistribuicaoDFe;
- if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
- this.UseDefaultCredentials = true;
- this.useDefaultCredentialsSetExplicitly = false;
- }
- else {
- this.useDefaultCredentialsSetExplicitly = true;
- }
- }
- public new string Url {
- get {
- return base.Url;
- }
- set {
- if ((((this.IsLocalFileSystemWebService(base.Url) == true)
- && (this.useDefaultCredentialsSetExplicitly == false))
- && (this.IsLocalFileSystemWebService(value) == false))) {
- base.UseDefaultCredentials = false;
- }
- base.Url = value;
- }
- }
- public new bool UseDefaultCredentials {
- get {
- return base.UseDefaultCredentials;
- }
- set {
- base.UseDefaultCredentials = value;
- this.useDefaultCredentialsSetExplicitly = true;
- }
- }
- /// <remarks/>
- public event nfeDistDFeInteresseCompletedEventHandler nfeDistDFeInteresseCompleted;
- /// <remarks/>
- [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.portalfiscal.inf.br/nfe/wsdl/NFeDistribuicaoDFe/nfeDistDFeInteresse", RequestNamespace="http://www.portalfiscal.inf.br/nfe/wsdl/NFeDistribuicaoDFe", ResponseNamespace="http://www.portalfiscal.inf.br/nfe/wsdl/NFeDistribuicaoDFe", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
- public System.Xml.XmlNode nfeDistDFeInteresse(System.Xml.XmlNode nfeDadosMsg) {
- object[] results = this.Invoke("nfeDistDFeInteresse", new object[] {
- nfeDadosMsg});
- return ((System.Xml.XmlNode)(results[0]));
- }
- /// <remarks/>
- public void nfeDistDFeInteresseAsync(System.Xml.XmlNode nfeDadosMsg) {
- this.nfeDistDFeInteresseAsync(nfeDadosMsg, null);
- }
- /// <remarks/>
- public void nfeDistDFeInteresseAsync(System.Xml.XmlNode nfeDadosMsg, object userState) {
- if ((this.nfeDistDFeInteresseOperationCompleted == null)) {
- this.nfeDistDFeInteresseOperationCompleted = new System.Threading.SendOrPostCallback(this.OnnfeDistDFeInteresseOperationCompleted);
- }
- this.InvokeAsync("nfeDistDFeInteresse", new object[] {
- nfeDadosMsg}, this.nfeDistDFeInteresseOperationCompleted, userState);
- }
- private void OnnfeDistDFeInteresseOperationCompleted(object arg) {
- if ((this.nfeDistDFeInteresseCompleted != null)) {
- System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
- this.nfeDistDFeInteresseCompleted(this, new nfeDistDFeInteresseCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
- }
- }
- /// <remarks/>
- public new void CancelAsync(object userState) {
- base.CancelAsync(userState);
- }
- private bool IsLocalFileSystemWebService(string url) {
- if (((url == null)
- || (url == string.Empty))) {
- return false;
- }
- System.Uri wsUri = new System.Uri(url);
- if (((wsUri.Port >= 1024)
- && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
- return true;
- }
- return false;
- }
- }
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")]
- public delegate void nfeDistDFeInteresseCompletedEventHandler(object sender, nfeDistDFeInteresseCompletedEventArgs e);
- /// <remarks/>
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")]
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- public partial class nfeDistDFeInteresseCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
- private object[] results;
- internal nfeDistDFeInteresseCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
- base(exception, cancelled, userState) {
- this.results = results;
- }
- /// <remarks/>
- public System.Xml.XmlNode Result {
- get {
- this.RaiseExceptionIfNecessary();
- return ((System.Xml.XmlNode)(this.results[0]));
- }
- }
- }
- }
- #pragma warning restore 1591
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement