纽威

764 lines
25 KiB

  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. //
  11. // 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。
  12. //
  13. #pragma warning disable 1591
  14. namespace NFine.Application.SAPGetChkDocInfoVPN {
  15. using System;
  16. using System.Web.Services;
  17. using System.Diagnostics;
  18. using System.Web.Services.Protocols;
  19. using System.Xml.Serialization;
  20. using System.ComponentModel;
  21. /// <remarks/>
  22. // CODEGEN: 未处理命名空间“http://schemas.xmlsoap.org/ws/2004/09/policy”中的可选 WSDL 扩展元素“Policy”。
  23. // CODEGEN: 未处理命名空间“http://schemas.xmlsoap.org/ws/2004/08/addressing”中的可选 WSDL 扩展元素“EndpointReference”。
  24. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
  25. [System.Diagnostics.DebuggerStepThroughAttribute()]
  26. [System.ComponentModel.DesignerCategoryAttribute("code")]
  27. [System.Web.Services.WebServiceBindingAttribute(Name="ZWMS_SK_WS_CHECK", Namespace="urn:sap-com:document:sap:rfc:functions")]
  28. public partial class ZWMS_SK_WS_CHECK : System.Web.Services.Protocols.SoapHttpClientProtocol {
  29. private System.Threading.SendOrPostCallback CallZWMS_SK_WS_CHECKOperationCompleted;
  30. private bool useDefaultCredentialsSetExplicitly;
  31. /// <remarks/>
  32. public ZWMS_SK_WS_CHECK() {
  33. this.Url = global::NFine.Application.Properties.Settings.Default.NFine_Application_SAPGetChkDocInfoVPN_ZWMS_SK_WS_CHECK;
  34. if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
  35. this.UseDefaultCredentials = true;
  36. this.useDefaultCredentialsSetExplicitly = false;
  37. }
  38. else {
  39. this.useDefaultCredentialsSetExplicitly = true;
  40. }
  41. }
  42. public new string Url {
  43. get {
  44. return base.Url;
  45. }
  46. set {
  47. if ((((this.IsLocalFileSystemWebService(base.Url) == true)
  48. && (this.useDefaultCredentialsSetExplicitly == false))
  49. && (this.IsLocalFileSystemWebService(value) == false))) {
  50. base.UseDefaultCredentials = false;
  51. }
  52. base.Url = value;
  53. }
  54. }
  55. public new bool UseDefaultCredentials {
  56. get {
  57. return base.UseDefaultCredentials;
  58. }
  59. set {
  60. base.UseDefaultCredentials = value;
  61. this.useDefaultCredentialsSetExplicitly = true;
  62. }
  63. }
  64. /// <remarks/>
  65. public event CallZWMS_SK_WS_CHECKCompletedEventHandler CallZWMS_SK_WS_CHECKCompleted;
  66. /// <remarks/>
  67. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
  68. [return: System.Xml.Serialization.XmlElementAttribute("ZWMS_SK_WS_CHECKResponse", Namespace="urn:sap-com:document:sap:rfc:functions")]
  69. public ZWMS_SK_WS_CHECKResponse CallZWMS_SK_WS_CHECK([System.Xml.Serialization.XmlElementAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")] ZWMS_SK_WS_CHECK1 ZWMS_SK_WS_CHECK) {
  70. object[] results = this.Invoke("CallZWMS_SK_WS_CHECK", new object[] {
  71. ZWMS_SK_WS_CHECK});
  72. return ((ZWMS_SK_WS_CHECKResponse)(results[0]));
  73. }
  74. /// <remarks/>
  75. public void CallZWMS_SK_WS_CHECKAsync(ZWMS_SK_WS_CHECK1 ZWMS_SK_WS_CHECK) {
  76. this.CallZWMS_SK_WS_CHECKAsync(ZWMS_SK_WS_CHECK, null);
  77. }
  78. /// <remarks/>
  79. public void CallZWMS_SK_WS_CHECKAsync(ZWMS_SK_WS_CHECK1 ZWMS_SK_WS_CHECK, object userState) {
  80. if ((this.CallZWMS_SK_WS_CHECKOperationCompleted == null)) {
  81. this.CallZWMS_SK_WS_CHECKOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCallZWMS_SK_WS_CHECKOperationCompleted);
  82. }
  83. this.InvokeAsync("CallZWMS_SK_WS_CHECK", new object[] {
  84. ZWMS_SK_WS_CHECK}, this.CallZWMS_SK_WS_CHECKOperationCompleted, userState);
  85. }
  86. private void OnCallZWMS_SK_WS_CHECKOperationCompleted(object arg) {
  87. if ((this.CallZWMS_SK_WS_CHECKCompleted != null)) {
  88. System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
  89. this.CallZWMS_SK_WS_CHECKCompleted(this, new CallZWMS_SK_WS_CHECKCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
  90. }
  91. }
  92. /// <remarks/>
  93. public new void CancelAsync(object userState) {
  94. base.CancelAsync(userState);
  95. }
  96. private bool IsLocalFileSystemWebService(string url) {
  97. if (((url == null)
  98. || (url == string.Empty))) {
  99. return false;
  100. }
  101. System.Uri wsUri = new System.Uri(url);
  102. if (((wsUri.Port >= 1024)
  103. && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
  104. return true;
  105. }
  106. return false;
  107. }
  108. }
  109. /// <remarks/>
  110. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  111. [System.SerializableAttribute()]
  112. [System.Diagnostics.DebuggerStepThroughAttribute()]
  113. [System.ComponentModel.DesignerCategoryAttribute("code")]
  114. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="urn:sap-com:document:sap:rfc:functions")]
  115. public partial class ZWMS_SK_WS_CHECK1 {
  116. private string cHG_DATEField;
  117. private string pRUEFLOSField;
  118. private string wERKSField;
  119. private ZWMS_SK_CHECK_HEAD[] zCHECK_HEADField;
  120. private ZWMS_SK_CHECK_ITEM[] zCHECK_ITEMField;
  121. /// <remarks/>
  122. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  123. public string CHG_DATE {
  124. get {
  125. return this.cHG_DATEField;
  126. }
  127. set {
  128. this.cHG_DATEField = value;
  129. }
  130. }
  131. /// <remarks/>
  132. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  133. public string PRUEFLOS {
  134. get {
  135. return this.pRUEFLOSField;
  136. }
  137. set {
  138. this.pRUEFLOSField = value;
  139. }
  140. }
  141. /// <remarks/>
  142. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  143. public string WERKS {
  144. get {
  145. return this.wERKSField;
  146. }
  147. set {
  148. this.wERKSField = value;
  149. }
  150. }
  151. /// <remarks/>
  152. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  153. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  154. public ZWMS_SK_CHECK_HEAD[] ZCHECK_HEAD {
  155. get {
  156. return this.zCHECK_HEADField;
  157. }
  158. set {
  159. this.zCHECK_HEADField = value;
  160. }
  161. }
  162. /// <remarks/>
  163. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  164. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  165. public ZWMS_SK_CHECK_ITEM[] ZCHECK_ITEM {
  166. get {
  167. return this.zCHECK_ITEMField;
  168. }
  169. set {
  170. this.zCHECK_ITEMField = value;
  171. }
  172. }
  173. }
  174. /// <remarks/>
  175. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  176. [System.SerializableAttribute()]
  177. [System.Diagnostics.DebuggerStepThroughAttribute()]
  178. [System.ComponentModel.DesignerCategoryAttribute("code")]
  179. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
  180. public partial class ZWMS_SK_CHECK_HEAD {
  181. private string pRUEFLOSField;
  182. private string aRTField;
  183. private string wERKSField;
  184. private string vDATUMField;
  185. private string eBELNField;
  186. private string eBELPField;
  187. private string aUFNRField;
  188. private string lIFNRField;
  189. private string nAME1Field;
  190. private string tEST1Field;
  191. private string tEST2Field;
  192. private string tEST3Field;
  193. private string tEST4Field;
  194. private string tEST5Field;
  195. /// <remarks/>
  196. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  197. public string PRUEFLOS {
  198. get {
  199. return this.pRUEFLOSField;
  200. }
  201. set {
  202. this.pRUEFLOSField = value;
  203. }
  204. }
  205. /// <remarks/>
  206. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  207. public string ART {
  208. get {
  209. return this.aRTField;
  210. }
  211. set {
  212. this.aRTField = value;
  213. }
  214. }
  215. /// <remarks/>
  216. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  217. public string WERKS {
  218. get {
  219. return this.wERKSField;
  220. }
  221. set {
  222. this.wERKSField = value;
  223. }
  224. }
  225. /// <remarks/>
  226. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  227. public string VDATUM {
  228. get {
  229. return this.vDATUMField;
  230. }
  231. set {
  232. this.vDATUMField = value;
  233. }
  234. }
  235. /// <remarks/>
  236. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  237. public string EBELN {
  238. get {
  239. return this.eBELNField;
  240. }
  241. set {
  242. this.eBELNField = value;
  243. }
  244. }
  245. /// <remarks/>
  246. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  247. public string EBELP {
  248. get {
  249. return this.eBELPField;
  250. }
  251. set {
  252. this.eBELPField = value;
  253. }
  254. }
  255. /// <remarks/>
  256. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  257. public string AUFNR {
  258. get {
  259. return this.aUFNRField;
  260. }
  261. set {
  262. this.aUFNRField = value;
  263. }
  264. }
  265. /// <remarks/>
  266. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  267. public string LIFNR {
  268. get {
  269. return this.lIFNRField;
  270. }
  271. set {
  272. this.lIFNRField = value;
  273. }
  274. }
  275. /// <remarks/>
  276. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  277. public string NAME1 {
  278. get {
  279. return this.nAME1Field;
  280. }
  281. set {
  282. this.nAME1Field = value;
  283. }
  284. }
  285. /// <remarks/>
  286. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  287. public string TEST1 {
  288. get {
  289. return this.tEST1Field;
  290. }
  291. set {
  292. this.tEST1Field = value;
  293. }
  294. }
  295. /// <remarks/>
  296. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  297. public string TEST2 {
  298. get {
  299. return this.tEST2Field;
  300. }
  301. set {
  302. this.tEST2Field = value;
  303. }
  304. }
  305. /// <remarks/>
  306. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  307. public string TEST3 {
  308. get {
  309. return this.tEST3Field;
  310. }
  311. set {
  312. this.tEST3Field = value;
  313. }
  314. }
  315. /// <remarks/>
  316. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  317. public string TEST4 {
  318. get {
  319. return this.tEST4Field;
  320. }
  321. set {
  322. this.tEST4Field = value;
  323. }
  324. }
  325. /// <remarks/>
  326. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  327. public string TEST5 {
  328. get {
  329. return this.tEST5Field;
  330. }
  331. set {
  332. this.tEST5Field = value;
  333. }
  334. }
  335. }
  336. /// <remarks/>
  337. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  338. [System.SerializableAttribute()]
  339. [System.Diagnostics.DebuggerStepThroughAttribute()]
  340. [System.ComponentModel.DesignerCategoryAttribute("code")]
  341. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
  342. public partial class ZWMS_SK_CHECK_ITEM {
  343. private string pRUEFLOSField;
  344. private string mATNRField;
  345. private string mAKTXField;
  346. private decimal lOSMENGEField;
  347. private decimal lMENGESCHField;
  348. private decimal hGMENGEField;
  349. private decimal l_LMEField;
  350. private string mEINSField;
  351. private string lGORTField;
  352. private string sOBKZField;
  353. private string kDAUFField;
  354. private string kDPOSField;
  355. private string mEMOField;
  356. private string bEDNRField;
  357. private string sERNPField;
  358. private string lTKZAField;
  359. private string oVERTOPField;
  360. private string tEST1Field;
  361. private string tEST2Field;
  362. private string tEST3Field;
  363. private string tEST4Field;
  364. private string tEST5Field;
  365. /// <remarks/>
  366. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  367. public string PRUEFLOS {
  368. get {
  369. return this.pRUEFLOSField;
  370. }
  371. set {
  372. this.pRUEFLOSField = value;
  373. }
  374. }
  375. /// <remarks/>
  376. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  377. public string MATNR {
  378. get {
  379. return this.mATNRField;
  380. }
  381. set {
  382. this.mATNRField = value;
  383. }
  384. }
  385. /// <remarks/>
  386. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  387. public string MAKTX {
  388. get {
  389. return this.mAKTXField;
  390. }
  391. set {
  392. this.mAKTXField = value;
  393. }
  394. }
  395. /// <remarks/>
  396. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  397. public decimal LOSMENGE {
  398. get {
  399. return this.lOSMENGEField;
  400. }
  401. set {
  402. this.lOSMENGEField = value;
  403. }
  404. }
  405. /// <remarks/>
  406. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  407. public decimal LMENGESCH {
  408. get {
  409. return this.lMENGESCHField;
  410. }
  411. set {
  412. this.lMENGESCHField = value;
  413. }
  414. }
  415. /// <remarks/>
  416. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  417. public decimal HGMENGE {
  418. get {
  419. return this.hGMENGEField;
  420. }
  421. set {
  422. this.hGMENGEField = value;
  423. }
  424. }
  425. /// <remarks/>
  426. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  427. public decimal L_LME {
  428. get {
  429. return this.l_LMEField;
  430. }
  431. set {
  432. this.l_LMEField = value;
  433. }
  434. }
  435. /// <remarks/>
  436. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  437. public string MEINS {
  438. get {
  439. return this.mEINSField;
  440. }
  441. set {
  442. this.mEINSField = value;
  443. }
  444. }
  445. /// <remarks/>
  446. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  447. public string LGORT {
  448. get {
  449. return this.lGORTField;
  450. }
  451. set {
  452. this.lGORTField = value;
  453. }
  454. }
  455. /// <remarks/>
  456. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  457. public string SOBKZ {
  458. get {
  459. return this.sOBKZField;
  460. }
  461. set {
  462. this.sOBKZField = value;
  463. }
  464. }
  465. /// <remarks/>
  466. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  467. public string KDAUF {
  468. get {
  469. return this.kDAUFField;
  470. }
  471. set {
  472. this.kDAUFField = value;
  473. }
  474. }
  475. /// <remarks/>
  476. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  477. public string KDPOS {
  478. get {
  479. return this.kDPOSField;
  480. }
  481. set {
  482. this.kDPOSField = value;
  483. }
  484. }
  485. /// <remarks/>
  486. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  487. public string MEMO {
  488. get {
  489. return this.mEMOField;
  490. }
  491. set {
  492. this.mEMOField = value;
  493. }
  494. }
  495. /// <remarks/>
  496. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  497. public string BEDNR {
  498. get {
  499. return this.bEDNRField;
  500. }
  501. set {
  502. this.bEDNRField = value;
  503. }
  504. }
  505. /// <remarks/>
  506. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  507. public string SERNP {
  508. get {
  509. return this.sERNPField;
  510. }
  511. set {
  512. this.sERNPField = value;
  513. }
  514. }
  515. /// <remarks/>
  516. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  517. public string LTKZA {
  518. get {
  519. return this.lTKZAField;
  520. }
  521. set {
  522. this.lTKZAField = value;
  523. }
  524. }
  525. /// <remarks/>
  526. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  527. public string OVERTOP {
  528. get {
  529. return this.oVERTOPField;
  530. }
  531. set {
  532. this.oVERTOPField = value;
  533. }
  534. }
  535. /// <remarks/>
  536. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  537. public string TEST1 {
  538. get {
  539. return this.tEST1Field;
  540. }
  541. set {
  542. this.tEST1Field = value;
  543. }
  544. }
  545. /// <remarks/>
  546. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  547. public string TEST2 {
  548. get {
  549. return this.tEST2Field;
  550. }
  551. set {
  552. this.tEST2Field = value;
  553. }
  554. }
  555. /// <remarks/>
  556. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  557. public string TEST3 {
  558. get {
  559. return this.tEST3Field;
  560. }
  561. set {
  562. this.tEST3Field = value;
  563. }
  564. }
  565. /// <remarks/>
  566. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  567. public string TEST4 {
  568. get {
  569. return this.tEST4Field;
  570. }
  571. set {
  572. this.tEST4Field = value;
  573. }
  574. }
  575. /// <remarks/>
  576. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  577. public string TEST5 {
  578. get {
  579. return this.tEST5Field;
  580. }
  581. set {
  582. this.tEST5Field = value;
  583. }
  584. }
  585. }
  586. /// <remarks/>
  587. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  588. [System.SerializableAttribute()]
  589. [System.Diagnostics.DebuggerStepThroughAttribute()]
  590. [System.ComponentModel.DesignerCategoryAttribute("code")]
  591. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="urn:sap-com:document:sap:rfc:functions")]
  592. public partial class ZWMS_SK_WS_CHECKResponse {
  593. private ZWMS_SK_CHECK_HEAD[] zCHECK_HEADField;
  594. private ZWMS_SK_CHECK_ITEM[] zCHECK_ITEMField;
  595. private string z_NULLField;
  596. /// <remarks/>
  597. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  598. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  599. public ZWMS_SK_CHECK_HEAD[] ZCHECK_HEAD {
  600. get {
  601. return this.zCHECK_HEADField;
  602. }
  603. set {
  604. this.zCHECK_HEADField = value;
  605. }
  606. }
  607. /// <remarks/>
  608. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  609. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  610. public ZWMS_SK_CHECK_ITEM[] ZCHECK_ITEM {
  611. get {
  612. return this.zCHECK_ITEMField;
  613. }
  614. set {
  615. this.zCHECK_ITEMField = value;
  616. }
  617. }
  618. /// <remarks/>
  619. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  620. public string Z_NULL {
  621. get {
  622. return this.z_NULLField;
  623. }
  624. set {
  625. this.z_NULLField = value;
  626. }
  627. }
  628. }
  629. /// <remarks/>
  630. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
  631. public delegate void CallZWMS_SK_WS_CHECKCompletedEventHandler(object sender, CallZWMS_SK_WS_CHECKCompletedEventArgs e);
  632. /// <remarks/>
  633. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
  634. [System.Diagnostics.DebuggerStepThroughAttribute()]
  635. [System.ComponentModel.DesignerCategoryAttribute("code")]
  636. public partial class CallZWMS_SK_WS_CHECKCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
  637. private object[] results;
  638. internal CallZWMS_SK_WS_CHECKCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
  639. base(exception, cancelled, userState) {
  640. this.results = results;
  641. }
  642. /// <remarks/>
  643. public ZWMS_SK_WS_CHECKResponse Result {
  644. get {
  645. this.RaiseExceptionIfNecessary();
  646. return ((ZWMS_SK_WS_CHECKResponse)(this.results[0]));
  647. }
  648. }
  649. }
  650. }
  651. #pragma warning restore 1591