//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ // // 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。 // #pragma warning disable 1591 namespace SIMDP.BLL.AS400Service { using System; using System.Web.Services; using System.Diagnostics; using System.Web.Services.Protocols; using System.Xml.Serialization; using System.ComponentModel; /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Web.Services.WebServiceBindingAttribute(Name="GETMAINRServicesPortBinding", Namespace="http://getmainr.wsbeans.iseries/xsd")] public partial class GETMAINR : System.Web.Services.Protocols.SoapHttpClientProtocol { private System.Threading.SendOrPostCallback mainOperationCompleted; private bool useDefaultCredentialsSetExplicitly; /// public GETMAINR() { this.Url = global::SIMDP.BLL.Properties.Settings.Default.SIMDP_BLL_AS400Service_GETMAINR; 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; } } /// public event mainCompletedEventHandler mainCompleted; /// [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:main", RequestNamespace="http://getmainr.wsbeans.iseries/xsd", ResponseNamespace="http://getmainr.wsbeans.iseries/xsd", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] [return: System.Xml.Serialization.XmlElementAttribute("return")] public mainResult main(mainInput args0) { object[] results = this.Invoke("main", new object[] { args0}); return ((mainResult)(results[0])); } /// public void mainAsync(mainInput args0) { this.mainAsync(args0, null); } /// public void mainAsync(mainInput args0, object userState) { if ((this.mainOperationCompleted == null)) { this.mainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnmainOperationCompleted); } this.InvokeAsync("main", new object[] { args0}, this.mainOperationCompleted, userState); } private void OnmainOperationCompleted(object arg) { if ((this.mainCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.mainCompleted(this, new mainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// 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; } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://getmainr.wsbeans.iseries/xsd")] public partial class mainInput { private string pI_LINEField; private string pI_NOField; private string pI_TYPEField; /// public string PI_LINE { get { return this.pI_LINEField; } set { this.pI_LINEField = value; } } /// public string PI_NO { get { return this.pI_NOField; } set { this.pI_NOField = value; } } /// public string PI_TYPE { get { return this.pI_TYPEField; } set { this.pI_TYPEField = value; } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://getmainr.wsbeans.iseries/xsd")] public partial class mainResult { private string pI_LINEField; private string[] pI_LISTField; private string pI_NOField; private string pI_TYPEField; /// public string PI_LINE { get { return this.pI_LINEField; } set { this.pI_LINEField = value; } } /// [System.Xml.Serialization.XmlElementAttribute("PI_LIST")] public string[] PI_LIST { get { return this.pI_LISTField; } set { this.pI_LISTField = value; } } /// public string PI_NO { get { return this.pI_NOField; } set { this.pI_NOField = value; } } /// public string PI_TYPE { get { return this.pI_TYPEField; } set { this.pI_TYPEField = value; } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void mainCompletedEventHandler(object sender, mainCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class mainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal mainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public mainResult Result { get { this.RaiseExceptionIfNecessary(); return ((mainResult)(this.results[0])); } } } } #pragma warning restore 1591