Reference.cs 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. //------------------------------------------------------------------------------
  2. // <autogenerated>
  3. // This code was generated by a tool.
  4. // Runtime Version: 1.1.4322.2300
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </autogenerated>
  9. //------------------------------------------------------------------------------
  10. //
  11. // 此源代码是由 Microsoft.VSDesigner 1.1.4322.2300 版自动生成。
  12. //
  13. namespace MWSeviceDemo.MW {
  14. using System.Diagnostics;
  15. using System.Xml.Serialization;
  16. using System;
  17. using System.Web.Services.Protocols;
  18. using System.ComponentModel;
  19. using System.Web.Services;
  20. /// <remarks/>
  21. [System.Diagnostics.DebuggerStepThroughAttribute()]
  22. [System.ComponentModel.DesignerCategoryAttribute("code")]
  23. [System.Web.Services.WebServiceBindingAttribute(Name="wmgwSoap", Namespace="http://tempuri.org/")]
  24. public class wmgw : System.Web.Services.Protocols.SoapHttpClientProtocol {
  25. /// <remarks/>
  26. public wmgw() {
  27. this.Url = "http://demo.montnets.com/yds/wmgw.asmx";
  28. }
  29. /// <remarks/>
  30. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/TestService", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  31. public string TestService() {
  32. object[] results = this.Invoke("TestService", new object[0]);
  33. return ((string)(results[0]));
  34. }
  35. /// <remarks/>
  36. public System.IAsyncResult BeginTestService(System.AsyncCallback callback, object asyncState) {
  37. return this.BeginInvoke("TestService", new object[0], callback, asyncState);
  38. }
  39. /// <remarks/>
  40. public string EndTestService(System.IAsyncResult asyncResult) {
  41. object[] results = this.EndInvoke(asyncResult);
  42. return ((string)(results[0]));
  43. }
  44. /// <remarks/>
  45. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Test", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  46. public string Test(string parm1, string parm2) {
  47. object[] results = this.Invoke("Test", new object[] {
  48. parm1,
  49. parm2});
  50. return ((string)(results[0]));
  51. }
  52. /// <remarks/>
  53. public System.IAsyncResult BeginTest(string parm1, string parm2, System.AsyncCallback callback, object asyncState) {
  54. return this.BeginInvoke("Test", new object[] {
  55. parm1,
  56. parm2}, callback, asyncState);
  57. }
  58. /// <remarks/>
  59. public string EndTest(System.IAsyncResult asyncResult) {
  60. object[] results = this.EndInvoke(asyncResult);
  61. return ((string)(results[0]));
  62. }
  63. /// <remarks/>
  64. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateConnect", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  65. public int MongateConnect(string uid, string pwd) {
  66. object[] results = this.Invoke("MongateConnect", new object[] {
  67. uid,
  68. pwd});
  69. return ((int)(results[0]));
  70. }
  71. /// <remarks/>
  72. public System.IAsyncResult BeginMongateConnect(string uid, string pwd, System.AsyncCallback callback, object asyncState) {
  73. return this.BeginInvoke("MongateConnect", new object[] {
  74. uid,
  75. pwd}, callback, asyncState);
  76. }
  77. /// <remarks/>
  78. public int EndMongateConnect(System.IAsyncResult asyncResult) {
  79. object[] results = this.EndInvoke(asyncResult);
  80. return ((int)(results[0]));
  81. }
  82. /// <remarks/>
  83. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateQueryBalance", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  84. public int MongateQueryBalance(string userId, string password) {
  85. object[] results = this.Invoke("MongateQueryBalance", new object[] {
  86. userId,
  87. password});
  88. return ((int)(results[0]));
  89. }
  90. /// <remarks/>
  91. public System.IAsyncResult BeginMongateQueryBalance(string userId, string password, System.AsyncCallback callback, object asyncState) {
  92. return this.BeginInvoke("MongateQueryBalance", new object[] {
  93. userId,
  94. password}, callback, asyncState);
  95. }
  96. /// <remarks/>
  97. public int EndMongateQueryBalance(System.IAsyncResult asyncResult) {
  98. object[] results = this.EndInvoke(asyncResult);
  99. return ((int)(results[0]));
  100. }
  101. /// <remarks/>
  102. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateQueryUsed", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  103. public int MongateQueryUsed(string userId, string password) {
  104. object[] results = this.Invoke("MongateQueryUsed", new object[] {
  105. userId,
  106. password});
  107. return ((int)(results[0]));
  108. }
  109. /// <remarks/>
  110. public System.IAsyncResult BeginMongateQueryUsed(string userId, string password, System.AsyncCallback callback, object asyncState) {
  111. return this.BeginInvoke("MongateQueryUsed", new object[] {
  112. userId,
  113. password}, callback, asyncState);
  114. }
  115. /// <remarks/>
  116. public int EndMongateQueryUsed(System.IAsyncResult asyncResult) {
  117. object[] results = this.EndInvoke(asyncResult);
  118. return ((int)(results[0]));
  119. }
  120. /// <remarks/>
  121. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateChangePwd", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  122. public int MongateChangePwd(string userId, string password, string NewPassWord) {
  123. object[] results = this.Invoke("MongateChangePwd", new object[] {
  124. userId,
  125. password,
  126. NewPassWord});
  127. return ((int)(results[0]));
  128. }
  129. /// <remarks/>
  130. public System.IAsyncResult BeginMongateChangePwd(string userId, string password, string NewPassWord, System.AsyncCallback callback, object asyncState) {
  131. return this.BeginInvoke("MongateChangePwd", new object[] {
  132. userId,
  133. password,
  134. NewPassWord}, callback, asyncState);
  135. }
  136. /// <remarks/>
  137. public int EndMongateChangePwd(System.IAsyncResult asyncResult) {
  138. object[] results = this.EndInvoke(asyncResult);
  139. return ((int)(results[0]));
  140. }
  141. /// <remarks/>
  142. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateSendSms", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  143. public int MongateSendSms(string userId, string password, string ToPhone, string msg) {
  144. object[] results = this.Invoke("MongateSendSms", new object[] {
  145. userId,
  146. password,
  147. ToPhone,
  148. msg});
  149. return ((int)(results[0]));
  150. }
  151. /// <remarks/>
  152. public System.IAsyncResult BeginMongateSendSms(string userId, string password, string ToPhone, string msg, System.AsyncCallback callback, object asyncState) {
  153. return this.BeginInvoke("MongateSendSms", new object[] {
  154. userId,
  155. password,
  156. ToPhone,
  157. msg}, callback, asyncState);
  158. }
  159. /// <remarks/>
  160. public int EndMongateSendSms(System.IAsyncResult asyncResult) {
  161. object[] results = this.EndInvoke(asyncResult);
  162. return ((int)(results[0]));
  163. }
  164. /// <remarks/>
  165. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsSendSms", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  166. public int MongateCsSendSms(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, out string pszSN) {
  167. object[] results = this.Invoke("MongateCsSendSms", new object[] {
  168. userId,
  169. password,
  170. pszMobis,
  171. pszMsg,
  172. iMobiCount});
  173. pszSN = ((string)(results[1]));
  174. return ((int)(results[0]));
  175. }
  176. /// <remarks/>
  177. public System.IAsyncResult BeginMongateCsSendSms(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, System.AsyncCallback callback, object asyncState) {
  178. return this.BeginInvoke("MongateCsSendSms", new object[] {
  179. userId,
  180. password,
  181. pszMobis,
  182. pszMsg,
  183. iMobiCount}, callback, asyncState);
  184. }
  185. /// <remarks/>
  186. public int EndMongateCsSendSms(System.IAsyncResult asyncResult, out string pszSN) {
  187. object[] results = this.EndInvoke(asyncResult);
  188. pszSN = ((string)(results[1]));
  189. return ((int)(results[0]));
  190. }
  191. /// <remarks/>
  192. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsSendSmsEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  193. public string MongateCsSendSmsEx(string userId, string password, string pszMobis, string pszMsg, int iMobiCount) {
  194. object[] results = this.Invoke("MongateCsSendSmsEx", new object[] {
  195. userId,
  196. password,
  197. pszMobis,
  198. pszMsg,
  199. iMobiCount});
  200. return ((string)(results[0]));
  201. }
  202. /// <remarks/>
  203. public System.IAsyncResult BeginMongateCsSendSmsEx(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, System.AsyncCallback callback, object asyncState) {
  204. return this.BeginInvoke("MongateCsSendSmsEx", new object[] {
  205. userId,
  206. password,
  207. pszMobis,
  208. pszMsg,
  209. iMobiCount}, callback, asyncState);
  210. }
  211. /// <remarks/>
  212. public string EndMongateCsSendSmsEx(System.IAsyncResult asyncResult) {
  213. object[] results = this.EndInvoke(asyncResult);
  214. return ((string)(results[0]));
  215. }
  216. /// <remarks/>
  217. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsSPSendSmsEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  218. public string MongateCsSPSendSmsEx(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, string pszSubPort) {
  219. object[] results = this.Invoke("MongateCsSPSendSmsEx", new object[] {
  220. userId,
  221. password,
  222. pszMobis,
  223. pszMsg,
  224. iMobiCount,
  225. pszSubPort});
  226. return ((string)(results[0]));
  227. }
  228. /// <remarks/>
  229. public System.IAsyncResult BeginMongateCsSPSendSmsEx(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, string pszSubPort, System.AsyncCallback callback, object asyncState) {
  230. return this.BeginInvoke("MongateCsSPSendSmsEx", new object[] {
  231. userId,
  232. password,
  233. pszMobis,
  234. pszMsg,
  235. iMobiCount,
  236. pszSubPort}, callback, asyncState);
  237. }
  238. /// <remarks/>
  239. public string EndMongateCsSPSendSmsEx(System.IAsyncResult asyncResult) {
  240. object[] results = this.EndInvoke(asyncResult);
  241. return ((string)(results[0]));
  242. }
  243. /// <remarks/>
  244. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsSPSendSms", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  245. public int MongateCsSPSendSms(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, string pszSubPort, out string pszSN) {
  246. object[] results = this.Invoke("MongateCsSPSendSms", new object[] {
  247. userId,
  248. password,
  249. pszMobis,
  250. pszMsg,
  251. iMobiCount,
  252. pszSubPort});
  253. pszSN = ((string)(results[1]));
  254. return ((int)(results[0]));
  255. }
  256. /// <remarks/>
  257. public System.IAsyncResult BeginMongateCsSPSendSms(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, string pszSubPort, System.AsyncCallback callback, object asyncState) {
  258. return this.BeginInvoke("MongateCsSPSendSms", new object[] {
  259. userId,
  260. password,
  261. pszMobis,
  262. pszMsg,
  263. iMobiCount,
  264. pszSubPort}, callback, asyncState);
  265. }
  266. /// <remarks/>
  267. public int EndMongateCsSPSendSms(System.IAsyncResult asyncResult, out string pszSN) {
  268. object[] results = this.EndInvoke(asyncResult);
  269. pszSN = ((string)(results[1]));
  270. return ((int)(results[0]));
  271. }
  272. /// <remarks/>
  273. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateVasSendSms", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  274. public int MongateVasSendSms(string userId, string password, string pszFeeCode, string pszServiceNo, string pszOperCode, string pszMatchNo, string pszMobis, string pszMsg) {
  275. object[] results = this.Invoke("MongateVasSendSms", new object[] {
  276. userId,
  277. password,
  278. pszFeeCode,
  279. pszServiceNo,
  280. pszOperCode,
  281. pszMatchNo,
  282. pszMobis,
  283. pszMsg});
  284. return ((int)(results[0]));
  285. }
  286. /// <remarks/>
  287. public System.IAsyncResult BeginMongateVasSendSms(string userId, string password, string pszFeeCode, string pszServiceNo, string pszOperCode, string pszMatchNo, string pszMobis, string pszMsg, System.AsyncCallback callback, object asyncState) {
  288. return this.BeginInvoke("MongateVasSendSms", new object[] {
  289. userId,
  290. password,
  291. pszFeeCode,
  292. pszServiceNo,
  293. pszOperCode,
  294. pszMatchNo,
  295. pszMobis,
  296. pszMsg}, callback, asyncState);
  297. }
  298. /// <remarks/>
  299. public int EndMongateVasSendSms(System.IAsyncResult asyncResult) {
  300. object[] results = this.EndInvoke(asyncResult);
  301. return ((int)(results[0]));
  302. }
  303. /// <remarks/>
  304. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateVasGetSms", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  305. public int MongateVasGetSms(string userId, string password, out string[] strMsg) {
  306. object[] results = this.Invoke("MongateVasGetSms", new object[] {
  307. userId,
  308. password});
  309. strMsg = ((string[])(results[1]));
  310. return ((int)(results[0]));
  311. }
  312. /// <remarks/>
  313. public System.IAsyncResult BeginMongateVasGetSms(string userId, string password, System.AsyncCallback callback, object asyncState) {
  314. return this.BeginInvoke("MongateVasGetSms", new object[] {
  315. userId,
  316. password}, callback, asyncState);
  317. }
  318. /// <remarks/>
  319. public int EndMongateVasGetSms(System.IAsyncResult asyncResult, out string[] strMsg) {
  320. object[] results = this.EndInvoke(asyncResult);
  321. strMsg = ((string[])(results[1]));
  322. return ((int)(results[0]));
  323. }
  324. /// <remarks/>
  325. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsGetSms", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  326. public int MongateCsGetSms(string userId, string password, out string[] strMsg) {
  327. object[] results = this.Invoke("MongateCsGetSms", new object[] {
  328. userId,
  329. password});
  330. strMsg = ((string[])(results[1]));
  331. return ((int)(results[0]));
  332. }
  333. /// <remarks/>
  334. public System.IAsyncResult BeginMongateCsGetSms(string userId, string password, System.AsyncCallback callback, object asyncState) {
  335. return this.BeginInvoke("MongateCsGetSms", new object[] {
  336. userId,
  337. password}, callback, asyncState);
  338. }
  339. /// <remarks/>
  340. public int EndMongateCsGetSms(System.IAsyncResult asyncResult, out string[] strMsg) {
  341. object[] results = this.EndInvoke(asyncResult);
  342. strMsg = ((string[])(results[1]));
  343. return ((int)(results[0]));
  344. }
  345. /// <remarks/>
  346. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsGetStatusReport", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  347. public int MongateCsGetStatusReport(string userId, string password, out string[] Msg) {
  348. object[] results = this.Invoke("MongateCsGetStatusReport", new object[] {
  349. userId,
  350. password});
  351. Msg = ((string[])(results[1]));
  352. return ((int)(results[0]));
  353. }
  354. /// <remarks/>
  355. public System.IAsyncResult BeginMongateCsGetStatusReport(string userId, string password, System.AsyncCallback callback, object asyncState) {
  356. return this.BeginInvoke("MongateCsGetStatusReport", new object[] {
  357. userId,
  358. password}, callback, asyncState);
  359. }
  360. /// <remarks/>
  361. public int EndMongateCsGetStatusReport(System.IAsyncResult asyncResult, out string[] Msg) {
  362. object[] results = this.EndInvoke(asyncResult);
  363. Msg = ((string[])(results[1]));
  364. return ((int)(results[0]));
  365. }
  366. /// <remarks/>
  367. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsGetStatusReportEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  368. public string MongateCsGetStatusReportEx(string userId, string password) {
  369. object[] results = this.Invoke("MongateCsGetStatusReportEx", new object[] {
  370. userId,
  371. password});
  372. return ((string)(results[0]));
  373. }
  374. /// <remarks/>
  375. public System.IAsyncResult BeginMongateCsGetStatusReportEx(string userId, string password, System.AsyncCallback callback, object asyncState) {
  376. return this.BeginInvoke("MongateCsGetStatusReportEx", new object[] {
  377. userId,
  378. password}, callback, asyncState);
  379. }
  380. /// <remarks/>
  381. public string EndMongateCsGetStatusReportEx(System.IAsyncResult asyncResult) {
  382. object[] results = this.EndInvoke(asyncResult);
  383. return ((string)(results[0]));
  384. }
  385. /// <remarks/>
  386. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsGetSmsEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  387. public string MongateCsGetSmsEx(string userId, string password) {
  388. object[] results = this.Invoke("MongateCsGetSmsEx", new object[] {
  389. userId,
  390. password});
  391. return ((string)(results[0]));
  392. }
  393. /// <remarks/>
  394. public System.IAsyncResult BeginMongateCsGetSmsEx(string userId, string password, System.AsyncCallback callback, object asyncState) {
  395. return this.BeginInvoke("MongateCsGetSmsEx", new object[] {
  396. userId,
  397. password}, callback, asyncState);
  398. }
  399. /// <remarks/>
  400. public string EndMongateCsGetSmsEx(System.IAsyncResult asyncResult) {
  401. object[] results = this.EndInvoke(asyncResult);
  402. return ((string)(results[0]));
  403. }
  404. /// <remarks/>
  405. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateRecharge", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  406. public int MongateRecharge(string userId, string password, string pszCardNo, string pszCardPwd) {
  407. object[] results = this.Invoke("MongateRecharge", new object[] {
  408. userId,
  409. password,
  410. pszCardNo,
  411. pszCardPwd});
  412. return ((int)(results[0]));
  413. }
  414. /// <remarks/>
  415. public System.IAsyncResult BeginMongateRecharge(string userId, string password, string pszCardNo, string pszCardPwd, System.AsyncCallback callback, object asyncState) {
  416. return this.BeginInvoke("MongateRecharge", new object[] {
  417. userId,
  418. password,
  419. pszCardNo,
  420. pszCardPwd}, callback, asyncState);
  421. }
  422. /// <remarks/>
  423. public int EndMongateRecharge(System.IAsyncResult asyncResult) {
  424. object[] results = this.EndInvoke(asyncResult);
  425. return ((int)(results[0]));
  426. }
  427. /// <remarks/>
  428. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsSendSmsExEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  429. public string[] MongateCsSendSmsExEx(string userId, string password, string pszMobis, string pszMsg, int iMobiCount) {
  430. object[] results = this.Invoke("MongateCsSendSmsExEx", new object[] {
  431. userId,
  432. password,
  433. pszMobis,
  434. pszMsg,
  435. iMobiCount});
  436. return ((string[])(results[0]));
  437. }
  438. /// <remarks/>
  439. public System.IAsyncResult BeginMongateCsSendSmsExEx(string userId, string password, string pszMobis, string pszMsg, int iMobiCount, System.AsyncCallback callback, object asyncState) {
  440. return this.BeginInvoke("MongateCsSendSmsExEx", new object[] {
  441. userId,
  442. password,
  443. pszMobis,
  444. pszMsg,
  445. iMobiCount}, callback, asyncState);
  446. }
  447. /// <remarks/>
  448. public string[] EndMongateCsSendSmsExEx(System.IAsyncResult asyncResult) {
  449. object[] results = this.EndInvoke(asyncResult);
  450. return ((string[])(results[0]));
  451. }
  452. /// <remarks/>
  453. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsGetSmsExEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  454. public string[] MongateCsGetSmsExEx(string userId, string password) {
  455. object[] results = this.Invoke("MongateCsGetSmsExEx", new object[] {
  456. userId,
  457. password});
  458. return ((string[])(results[0]));
  459. }
  460. /// <remarks/>
  461. public System.IAsyncResult BeginMongateCsGetSmsExEx(string userId, string password, System.AsyncCallback callback, object asyncState) {
  462. return this.BeginInvoke("MongateCsGetSmsExEx", new object[] {
  463. userId,
  464. password}, callback, asyncState);
  465. }
  466. /// <remarks/>
  467. public string[] EndMongateCsGetSmsExEx(System.IAsyncResult asyncResult) {
  468. object[] results = this.EndInvoke(asyncResult);
  469. return ((string[])(results[0]));
  470. }
  471. /// <remarks/>
  472. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsGetStatusReportExEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  473. public string[] MongateCsGetStatusReportExEx(string userId, string password) {
  474. object[] results = this.Invoke("MongateCsGetStatusReportExEx", new object[] {
  475. userId,
  476. password});
  477. return ((string[])(results[0]));
  478. }
  479. /// <remarks/>
  480. public System.IAsyncResult BeginMongateCsGetStatusReportExEx(string userId, string password, System.AsyncCallback callback, object asyncState) {
  481. return this.BeginInvoke("MongateCsGetStatusReportExEx", new object[] {
  482. userId,
  483. password}, callback, asyncState);
  484. }
  485. /// <remarks/>
  486. public string[] EndMongateCsGetStatusReportExEx(System.IAsyncResult asyncResult) {
  487. object[] results = this.EndInvoke(asyncResult);
  488. return ((string[])(results[0]));
  489. }
  490. /// <remarks/>
  491. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/MongateCsSPSendSmsExEx", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  492. public string[] MongateCsSPSendSmsExEx(string userId, string password, string pszMobis, string pszMsg, string pszSubPort) {
  493. object[] results = this.Invoke("MongateCsSPSendSmsExEx", new object[] {
  494. userId,
  495. password,
  496. pszMobis,
  497. pszMsg,
  498. pszSubPort});
  499. return ((string[])(results[0]));
  500. }
  501. /// <remarks/>
  502. public System.IAsyncResult BeginMongateCsSPSendSmsExEx(string userId, string password, string pszMobis, string pszMsg, string pszSubPort, System.AsyncCallback callback, object asyncState) {
  503. return this.BeginInvoke("MongateCsSPSendSmsExEx", new object[] {
  504. userId,
  505. password,
  506. pszMobis,
  507. pszMsg,
  508. pszSubPort}, callback, asyncState);
  509. }
  510. /// <remarks/>
  511. public string[] EndMongateCsSPSendSmsExEx(System.IAsyncResult asyncResult) {
  512. object[] results = this.EndInvoke(asyncResult);
  513. return ((string[])(results[0]));
  514. }
  515. }
  516. }