Advertisement
minafaw3

WebService

Jul 17th, 2016
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 10.49 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //     This code was generated by a tool.
  4. //     Runtime Version:4.0.30319.42000
  5. //
  6. //     Changes to this file may cause incorrect behavior and will be lost if
  7. //     the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10.  
  11. //
  12. // This source code was auto-generated by Microsoft.VSDesigner, Version 4.0.30319.42000.
  13. //
  14. #pragma warning disable 1591
  15.  
  16. namespace AndroidWebService.selling {
  17.     using System;
  18.     using System.Web.Services;
  19.     using System.Diagnostics;
  20.     using System.Web.Services.Protocols;
  21.     using System.Xml.Serialization;
  22.     using System.ComponentModel;
  23.    
  24.    
  25.     /// <remarks/>
  26.     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1055.0")]
  27.     [System.Diagnostics.DebuggerStepThroughAttribute()]
  28.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  29.     [System.Web.Services.WebServiceBindingAttribute(Name="WebServiceDBSoap", Namespace="http://tempuri.org/")]
  30.     public partial class WebServiceDB : System.Web.Services.Protocols.SoapHttpClientProtocol {
  31.        
  32.         private System.Threading.SendOrPostCallback RegisterOperationCompleted;
  33.        
  34.         private System.Threading.SendOrPostCallback LoginOperationCompleted;
  35.        
  36.         private bool useDefaultCredentialsSetExplicitly;
  37.        
  38.         /// <remarks/>
  39.         public WebServiceDB() {
  40.             this.Url = "http://selling.alruabye.net/WebServiceDB.asmx";
  41.             if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
  42.                 this.UseDefaultCredentials = true;
  43.                 this.useDefaultCredentialsSetExplicitly = false;
  44.             }
  45.             else {
  46.                 this.useDefaultCredentialsSetExplicitly = true;
  47.             }
  48.         }
  49.        
  50.         public new string Url {
  51.             get {
  52.                 return base.Url;
  53.             }
  54.             set {
  55.                 if ((((this.IsLocalFileSystemWebService(base.Url) == true)
  56.                             && (this.useDefaultCredentialsSetExplicitly == false))
  57.                             && (this.IsLocalFileSystemWebService(value) == false))) {
  58.                     base.UseDefaultCredentials = false;
  59.                 }
  60.                 base.Url = value;
  61.             }
  62.         }
  63.        
  64.         public new bool UseDefaultCredentials {
  65.             get {
  66.                 return base.UseDefaultCredentials;
  67.             }
  68.             set {
  69.                 base.UseDefaultCredentials = value;
  70.                 this.useDefaultCredentialsSetExplicitly = true;
  71.             }
  72.         }
  73.        
  74.         /// <remarks/>
  75.         public event RegisterCompletedEventHandler RegisterCompleted;
  76.        
  77.         /// <remarks/>
  78.         public event LoginCompletedEventHandler LoginCompleted;
  79.        
  80.         /// <remarks/>
  81.         [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Register", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  82.         public ReturnData Register(string UserName, string Password, string Email, string PhoneNumber, string Logtit, string Latitle) {
  83.             object[] results = this.Invoke("Register", new object[] {
  84.                         UserName,
  85.                         Password,
  86.                         Email,
  87.                         PhoneNumber,
  88.                         Logtit,
  89.                         Latitle});
  90.             return ((ReturnData)(results[0]));
  91.         }
  92.        
  93.         /// <remarks/>
  94.         public void RegisterAsync(string UserName, string Password, string Email, string PhoneNumber, string Logtit, string Latitle) {
  95.             this.RegisterAsync(UserName, Password, Email, PhoneNumber, Logtit, Latitle, null);
  96.         }
  97.        
  98.         /// <remarks/>
  99.         public void RegisterAsync(string UserName, string Password, string Email, string PhoneNumber, string Logtit, string Latitle, object userState) {
  100.             if ((this.RegisterOperationCompleted == null)) {
  101.                 this.RegisterOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRegisterOperationCompleted);
  102.             }
  103.             this.InvokeAsync("Register", new object[] {
  104.                         UserName,
  105.                         Password,
  106.                         Email,
  107.                         PhoneNumber,
  108.                         Logtit,
  109.                         Latitle}, this.RegisterOperationCompleted, userState);
  110.         }
  111.        
  112.         private void OnRegisterOperationCompleted(object arg) {
  113.             if ((this.RegisterCompleted != null)) {
  114.                 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
  115.                 this.RegisterCompleted(this, new RegisterCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
  116.             }
  117.         }
  118.        
  119.         /// <remarks/>
  120.         [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Login", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  121.         public ReturnData Login(string UserName, string Password) {
  122.             object[] results = this.Invoke("Login", new object[] {
  123.                         UserName,
  124.                         Password});
  125.             return ((ReturnData)(results[0]));
  126.         }
  127.        
  128.         /// <remarks/>
  129.         public void LoginAsync(string UserName, string Password) {
  130.             this.LoginAsync(UserName, Password, null);
  131.         }
  132.        
  133.         /// <remarks/>
  134.         public void LoginAsync(string UserName, string Password, object userState) {
  135.             if ((this.LoginOperationCompleted == null)) {
  136.                 this.LoginOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLoginOperationCompleted);
  137.             }
  138.             this.InvokeAsync("Login", new object[] {
  139.                         UserName,
  140.                         Password}, this.LoginOperationCompleted, userState);
  141.         }
  142.        
  143.         private void OnLoginOperationCompleted(object arg) {
  144.             if ((this.LoginCompleted != null)) {
  145.                 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
  146.                 this.LoginCompleted(this, new LoginCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
  147.             }
  148.         }
  149.        
  150.         /// <remarks/>
  151.         public new void CancelAsync(object userState) {
  152.             base.CancelAsync(userState);
  153.         }
  154.        
  155.         private bool IsLocalFileSystemWebService(string url) {
  156.             if (((url == null)
  157.                         || (url == string.Empty))) {
  158.                 return false;
  159.             }
  160.             System.Uri wsUri = new System.Uri(url);
  161.             if (((wsUri.Port >= 1024)
  162.                         && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
  163.                 return true;
  164.             }
  165.             return false;
  166.         }
  167.     }
  168.    
  169.     /// <remarks/>
  170.     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.6.1064.2")]
  171.     [System.SerializableAttribute()]
  172.     [System.Diagnostics.DebuggerStepThroughAttribute()]
  173.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  174.     [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
  175.     public partial class ReturnData {
  176.        
  177.         private string messageField;
  178.        
  179.         private int userIDField;
  180.        
  181.         /// <remarks/>
  182.         public string Message {
  183.             get {
  184.                 return this.messageField;
  185.             }
  186.             set {
  187.                 this.messageField = value;
  188.             }
  189.         }
  190.        
  191.         /// <remarks/>
  192.         public int UserID {
  193.             get {
  194.                 return this.userIDField;
  195.             }
  196.             set {
  197.                 this.userIDField = value;
  198.             }
  199.         }
  200.     }
  201.    
  202.     /// <remarks/>
  203.     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1055.0")]
  204.     public delegate void RegisterCompletedEventHandler(object sender, RegisterCompletedEventArgs e);
  205.    
  206.     /// <remarks/>
  207.     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1055.0")]
  208.     [System.Diagnostics.DebuggerStepThroughAttribute()]
  209.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  210.     public partial class RegisterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
  211.        
  212.         private object[] results;
  213.        
  214.         internal RegisterCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
  215.                 base(exception, cancelled, userState) {
  216.             this.results = results;
  217.         }
  218.        
  219.         /// <remarks/>
  220.         public ReturnData Result {
  221.             get {
  222.                 this.RaiseExceptionIfNecessary();
  223.                 return ((ReturnData)(this.results[0]));
  224.             }
  225.         }
  226.     }
  227.    
  228.     /// <remarks/>
  229.     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1055.0")]
  230.     public delegate void LoginCompletedEventHandler(object sender, LoginCompletedEventArgs e);
  231.    
  232.     /// <remarks/>
  233.     [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1055.0")]
  234.     [System.Diagnostics.DebuggerStepThroughAttribute()]
  235.     [System.ComponentModel.DesignerCategoryAttribute("code")]
  236.     public partial class LoginCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
  237.        
  238.         private object[] results;
  239.        
  240.         internal LoginCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
  241.                 base(exception, cancelled, userState) {
  242.             this.results = results;
  243.         }
  244.        
  245.         /// <remarks/>
  246.         public ReturnData Result {
  247.             get {
  248.                 this.RaiseExceptionIfNecessary();
  249.                 return ((ReturnData)(this.results[0]));
  250.             }
  251.         }
  252.     }
  253. }
  254.  
  255. #pragma warning restore 1591
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement