纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

799 lines
26 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.SAPCallBackDispatchVPN {
  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_DO_GZ", Namespace="urn:sap-com:document:sap:rfc:functions")]
  28. public partial class ZWMS_SK_DO_GZ : System.Web.Services.Protocols.SoapHttpClientProtocol {
  29. private System.Threading.SendOrPostCallback CallZWMS_SK_DO_GZOperationCompleted;
  30. private bool useDefaultCredentialsSetExplicitly;
  31. /// <remarks/>
  32. public ZWMS_SK_DO_GZ() {
  33. this.Url = global::NFine.Application.Properties.Settings.Default.NFine_Application_SAPCallBackDispatchVPN_ZWMS_SK_DO_GZ;
  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_DO_GZCompletedEventHandler CallZWMS_SK_DO_GZCompleted;
  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_DO_GZResponse", Namespace="urn:sap-com:document:sap:rfc:functions")]
  69. public ZWMS_SK_DO_GZResponse CallZWMS_SK_DO_GZ([System.Xml.Serialization.XmlElementAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")] ZWMS_SK_DO_GZ1 ZWMS_SK_DO_GZ) {
  70. object[] results = this.Invoke("CallZWMS_SK_DO_GZ", new object[] {
  71. ZWMS_SK_DO_GZ});
  72. return ((ZWMS_SK_DO_GZResponse)(results[0]));
  73. }
  74. /// <remarks/>
  75. public void CallZWMS_SK_DO_GZAsync(ZWMS_SK_DO_GZ1 ZWMS_SK_DO_GZ) {
  76. this.CallZWMS_SK_DO_GZAsync(ZWMS_SK_DO_GZ, null);
  77. }
  78. /// <remarks/>
  79. public void CallZWMS_SK_DO_GZAsync(ZWMS_SK_DO_GZ1 ZWMS_SK_DO_GZ, object userState) {
  80. if ((this.CallZWMS_SK_DO_GZOperationCompleted == null)) {
  81. this.CallZWMS_SK_DO_GZOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCallZWMS_SK_DO_GZOperationCompleted);
  82. }
  83. this.InvokeAsync("CallZWMS_SK_DO_GZ", new object[] {
  84. ZWMS_SK_DO_GZ}, this.CallZWMS_SK_DO_GZOperationCompleted, userState);
  85. }
  86. private void OnCallZWMS_SK_DO_GZOperationCompleted(object arg) {
  87. if ((this.CallZWMS_SK_DO_GZCompleted != null)) {
  88. System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
  89. this.CallZWMS_SK_DO_GZCompleted(this, new CallZWMS_SK_DO_GZCompletedEventArgs(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_DO_GZ1 {
  116. private ZWMS_DO_GERNR[] t_GERNRField;
  117. private ZWMS_DO_HEAD[] t_HEADField;
  118. private ZWMS_DO_ITEM[] t_ITEMField;
  119. private ZWMS_DO_RETURN[] t_RETURNField;
  120. /// <remarks/>
  121. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  122. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  123. public ZWMS_DO_GERNR[] T_GERNR {
  124. get {
  125. return this.t_GERNRField;
  126. }
  127. set {
  128. this.t_GERNRField = value;
  129. }
  130. }
  131. /// <remarks/>
  132. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  133. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  134. public ZWMS_DO_HEAD[] T_HEAD {
  135. get {
  136. return this.t_HEADField;
  137. }
  138. set {
  139. this.t_HEADField = value;
  140. }
  141. }
  142. /// <remarks/>
  143. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  144. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  145. public ZWMS_DO_ITEM[] T_ITEM {
  146. get {
  147. return this.t_ITEMField;
  148. }
  149. set {
  150. this.t_ITEMField = value;
  151. }
  152. }
  153. /// <remarks/>
  154. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  155. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  156. public ZWMS_DO_RETURN[] T_RETURN {
  157. get {
  158. return this.t_RETURNField;
  159. }
  160. set {
  161. this.t_RETURNField = value;
  162. }
  163. }
  164. }
  165. /// <remarks/>
  166. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  167. [System.SerializableAttribute()]
  168. [System.Diagnostics.DebuggerStepThroughAttribute()]
  169. [System.ComponentModel.DesignerCategoryAttribute("code")]
  170. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
  171. public partial class ZWMS_DO_GERNR {
  172. private string vBELNField;
  173. private string pOSNRField;
  174. private int gERNR_KEYField;
  175. private string gERNRField;
  176. /// <remarks/>
  177. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  178. public string VBELN {
  179. get {
  180. return this.vBELNField;
  181. }
  182. set {
  183. this.vBELNField = value;
  184. }
  185. }
  186. /// <remarks/>
  187. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  188. public string POSNR {
  189. get {
  190. return this.pOSNRField;
  191. }
  192. set {
  193. this.pOSNRField = value;
  194. }
  195. }
  196. /// <remarks/>
  197. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  198. public int GERNR_KEY {
  199. get {
  200. return this.gERNR_KEYField;
  201. }
  202. set {
  203. this.gERNR_KEYField = value;
  204. }
  205. }
  206. /// <remarks/>
  207. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  208. public string GERNR {
  209. get {
  210. return this.gERNRField;
  211. }
  212. set {
  213. this.gERNRField = value;
  214. }
  215. }
  216. }
  217. /// <remarks/>
  218. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  219. [System.SerializableAttribute()]
  220. [System.Diagnostics.DebuggerStepThroughAttribute()]
  221. [System.ComponentModel.DesignerCategoryAttribute("code")]
  222. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
  223. public partial class ZWMS_DO_RETURN {
  224. private string vBELNField;
  225. private string zFLGField;
  226. private string zMESSField;
  227. private string mBLNRField;
  228. /// <remarks/>
  229. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  230. public string VBELN {
  231. get {
  232. return this.vBELNField;
  233. }
  234. set {
  235. this.vBELNField = value;
  236. }
  237. }
  238. /// <remarks/>
  239. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  240. public string ZFLG {
  241. get {
  242. return this.zFLGField;
  243. }
  244. set {
  245. this.zFLGField = value;
  246. }
  247. }
  248. /// <remarks/>
  249. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  250. public string ZMESS {
  251. get {
  252. return this.zMESSField;
  253. }
  254. set {
  255. this.zMESSField = value;
  256. }
  257. }
  258. /// <remarks/>
  259. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  260. public string MBLNR {
  261. get {
  262. return this.mBLNRField;
  263. }
  264. set {
  265. this.mBLNRField = value;
  266. }
  267. }
  268. }
  269. /// <remarks/>
  270. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  271. [System.SerializableAttribute()]
  272. [System.Diagnostics.DebuggerStepThroughAttribute()]
  273. [System.ComponentModel.DesignerCategoryAttribute("code")]
  274. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
  275. public partial class ZWMS_DO_ITEM {
  276. private string vBELNField;
  277. private string pOSNRField;
  278. private string mATNRField;
  279. private string mAKTXField;
  280. private string dESCRField;
  281. private string vRKMEField;
  282. private decimal lFIMGField;
  283. private string wERKSField;
  284. private string lGORTField;
  285. private string sERAILField;
  286. private string kDAUFField;
  287. private string kDPOSField;
  288. private string tEST1Field;
  289. private string tEST2Field;
  290. private string tEST3Field;
  291. private string tEST4Field;
  292. private string tEST5Field;
  293. /// <remarks/>
  294. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  295. public string VBELN {
  296. get {
  297. return this.vBELNField;
  298. }
  299. set {
  300. this.vBELNField = value;
  301. }
  302. }
  303. /// <remarks/>
  304. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  305. public string POSNR {
  306. get {
  307. return this.pOSNRField;
  308. }
  309. set {
  310. this.pOSNRField = value;
  311. }
  312. }
  313. /// <remarks/>
  314. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  315. public string MATNR {
  316. get {
  317. return this.mATNRField;
  318. }
  319. set {
  320. this.mATNRField = value;
  321. }
  322. }
  323. /// <remarks/>
  324. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  325. public string MAKTX {
  326. get {
  327. return this.mAKTXField;
  328. }
  329. set {
  330. this.mAKTXField = value;
  331. }
  332. }
  333. /// <remarks/>
  334. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  335. public string DESCR {
  336. get {
  337. return this.dESCRField;
  338. }
  339. set {
  340. this.dESCRField = value;
  341. }
  342. }
  343. /// <remarks/>
  344. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  345. public string VRKME {
  346. get {
  347. return this.vRKMEField;
  348. }
  349. set {
  350. this.vRKMEField = value;
  351. }
  352. }
  353. /// <remarks/>
  354. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  355. public decimal LFIMG {
  356. get {
  357. return this.lFIMGField;
  358. }
  359. set {
  360. this.lFIMGField = value;
  361. }
  362. }
  363. /// <remarks/>
  364. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  365. public string WERKS {
  366. get {
  367. return this.wERKSField;
  368. }
  369. set {
  370. this.wERKSField = value;
  371. }
  372. }
  373. /// <remarks/>
  374. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  375. public string LGORT {
  376. get {
  377. return this.lGORTField;
  378. }
  379. set {
  380. this.lGORTField = value;
  381. }
  382. }
  383. /// <remarks/>
  384. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  385. public string SERAIL {
  386. get {
  387. return this.sERAILField;
  388. }
  389. set {
  390. this.sERAILField = value;
  391. }
  392. }
  393. /// <remarks/>
  394. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  395. public string KDAUF {
  396. get {
  397. return this.kDAUFField;
  398. }
  399. set {
  400. this.kDAUFField = value;
  401. }
  402. }
  403. /// <remarks/>
  404. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  405. public string KDPOS {
  406. get {
  407. return this.kDPOSField;
  408. }
  409. set {
  410. this.kDPOSField = value;
  411. }
  412. }
  413. /// <remarks/>
  414. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  415. public string TEST1 {
  416. get {
  417. return this.tEST1Field;
  418. }
  419. set {
  420. this.tEST1Field = value;
  421. }
  422. }
  423. /// <remarks/>
  424. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  425. public string TEST2 {
  426. get {
  427. return this.tEST2Field;
  428. }
  429. set {
  430. this.tEST2Field = value;
  431. }
  432. }
  433. /// <remarks/>
  434. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  435. public string TEST3 {
  436. get {
  437. return this.tEST3Field;
  438. }
  439. set {
  440. this.tEST3Field = value;
  441. }
  442. }
  443. /// <remarks/>
  444. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  445. public string TEST4 {
  446. get {
  447. return this.tEST4Field;
  448. }
  449. set {
  450. this.tEST4Field = value;
  451. }
  452. }
  453. /// <remarks/>
  454. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  455. public string TEST5 {
  456. get {
  457. return this.tEST5Field;
  458. }
  459. set {
  460. this.tEST5Field = value;
  461. }
  462. }
  463. }
  464. /// <remarks/>
  465. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  466. [System.SerializableAttribute()]
  467. [System.Diagnostics.DebuggerStepThroughAttribute()]
  468. [System.ComponentModel.DesignerCategoryAttribute("code")]
  469. [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
  470. public partial class ZWMS_DO_HEAD {
  471. private string vBELNField;
  472. private string lFDATField;
  473. private string kUNNRField;
  474. private string nAME1Field;
  475. private string vSTELField;
  476. private string lFARTField;
  477. private string vTEXTField;
  478. private string tEST1Field;
  479. private string tEST2Field;
  480. private string tEST3Field;
  481. private string tEST4Field;
  482. private string tEST5Field;
  483. /// <remarks/>
  484. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  485. public string VBELN {
  486. get {
  487. return this.vBELNField;
  488. }
  489. set {
  490. this.vBELNField = value;
  491. }
  492. }
  493. /// <remarks/>
  494. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  495. public string LFDAT {
  496. get {
  497. return this.lFDATField;
  498. }
  499. set {
  500. this.lFDATField = value;
  501. }
  502. }
  503. /// <remarks/>
  504. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  505. public string KUNNR {
  506. get {
  507. return this.kUNNRField;
  508. }
  509. set {
  510. this.kUNNRField = value;
  511. }
  512. }
  513. /// <remarks/>
  514. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  515. public string NAME1 {
  516. get {
  517. return this.nAME1Field;
  518. }
  519. set {
  520. this.nAME1Field = value;
  521. }
  522. }
  523. /// <remarks/>
  524. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  525. public string VSTEL {
  526. get {
  527. return this.vSTELField;
  528. }
  529. set {
  530. this.vSTELField = value;
  531. }
  532. }
  533. /// <remarks/>
  534. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  535. public string LFART {
  536. get {
  537. return this.lFARTField;
  538. }
  539. set {
  540. this.lFARTField = value;
  541. }
  542. }
  543. /// <remarks/>
  544. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  545. public string VTEXT {
  546. get {
  547. return this.vTEXTField;
  548. }
  549. set {
  550. this.vTEXTField = value;
  551. }
  552. }
  553. /// <remarks/>
  554. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  555. public string TEST1 {
  556. get {
  557. return this.tEST1Field;
  558. }
  559. set {
  560. this.tEST1Field = value;
  561. }
  562. }
  563. /// <remarks/>
  564. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  565. public string TEST2 {
  566. get {
  567. return this.tEST2Field;
  568. }
  569. set {
  570. this.tEST2Field = value;
  571. }
  572. }
  573. /// <remarks/>
  574. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  575. public string TEST3 {
  576. get {
  577. return this.tEST3Field;
  578. }
  579. set {
  580. this.tEST3Field = value;
  581. }
  582. }
  583. /// <remarks/>
  584. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  585. public string TEST4 {
  586. get {
  587. return this.tEST4Field;
  588. }
  589. set {
  590. this.tEST4Field = value;
  591. }
  592. }
  593. /// <remarks/>
  594. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  595. public string TEST5 {
  596. get {
  597. return this.tEST5Field;
  598. }
  599. set {
  600. this.tEST5Field = value;
  601. }
  602. }
  603. }
  604. /// <remarks/>
  605. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")]
  606. [System.SerializableAttribute()]
  607. [System.Diagnostics.DebuggerStepThroughAttribute()]
  608. [System.ComponentModel.DesignerCategoryAttribute("code")]
  609. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="urn:sap-com:document:sap:rfc:functions")]
  610. public partial class ZWMS_SK_DO_GZResponse {
  611. private ZWMS_DO_GERNR[] t_GERNRField;
  612. private ZWMS_DO_HEAD[] t_HEADField;
  613. private ZWMS_DO_ITEM[] t_ITEMField;
  614. private ZWMS_DO_RETURN[] t_RETURNField;
  615. /// <remarks/>
  616. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  617. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  618. public ZWMS_DO_GERNR[] T_GERNR {
  619. get {
  620. return this.t_GERNRField;
  621. }
  622. set {
  623. this.t_GERNRField = value;
  624. }
  625. }
  626. /// <remarks/>
  627. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  628. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  629. public ZWMS_DO_HEAD[] T_HEAD {
  630. get {
  631. return this.t_HEADField;
  632. }
  633. set {
  634. this.t_HEADField = value;
  635. }
  636. }
  637. /// <remarks/>
  638. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  639. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  640. public ZWMS_DO_ITEM[] T_ITEM {
  641. get {
  642. return this.t_ITEMField;
  643. }
  644. set {
  645. this.t_ITEMField = value;
  646. }
  647. }
  648. /// <remarks/>
  649. [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  650. [System.Xml.Serialization.XmlArrayItemAttribute("item", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  651. public ZWMS_DO_RETURN[] T_RETURN {
  652. get {
  653. return this.t_RETURNField;
  654. }
  655. set {
  656. this.t_RETURNField = value;
  657. }
  658. }
  659. }
  660. /// <remarks/>
  661. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
  662. public delegate void CallZWMS_SK_DO_GZCompletedEventHandler(object sender, CallZWMS_SK_DO_GZCompletedEventArgs e);
  663. /// <remarks/>
  664. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9032.0")]
  665. [System.Diagnostics.DebuggerStepThroughAttribute()]
  666. [System.ComponentModel.DesignerCategoryAttribute("code")]
  667. public partial class CallZWMS_SK_DO_GZCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
  668. private object[] results;
  669. internal CallZWMS_SK_DO_GZCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
  670. base(exception, cancelled, userState) {
  671. this.results = results;
  672. }
  673. /// <remarks/>
  674. public ZWMS_SK_DO_GZResponse Result {
  675. get {
  676. this.RaiseExceptionIfNecessary();
  677. return ((ZWMS_SK_DO_GZResponse)(this.results[0]));
  678. }
  679. }
  680. }
  681. }
  682. #pragma warning restore 1591