This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
developer:soap-1.2:objects:batchuploadstatus [2010/02/12 11:31] hmcgowan created |
developer:soap-1.2:objects:batchuploadstatus [2010/10/20 14:38] (current) irina |
||
---|---|---|---|
Line 45: | Line 45: | ||
</code> | </code> | ||
+ | ==== .NET VB ==== | ||
+ | <code vb> | ||
+ | Dim res As usaepay.BatchUploadStatus = New usaepay.BatchUploadStatus | ||
+ | res = client.getBatchUploadStatus(token, uploadrefnum) | ||
+ | MsgBox(res.Status) | ||
+ | </code> | ||
+ | |||
+ | ==== .NET C# ==== | ||
+ | <code c> | ||
+ | usaepay.BatchUploadStatus res = new usaepay.BatchUploadStatus(); | ||
+ | |||
+ | try | ||
+ | { | ||
+ | res = client.getBatchUploadStatus(token, uploadrefnum); | ||
+ | MessageBox.Show(string.Concat(res.Status)); | ||
+ | } | ||
+ | |||
+ | </code> | ||
==== XML ==== | ==== XML ==== |