This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
developer:soap-1.3:methods:getbanklist [2010/06/02 10:31] hmcgowan created |
developer:soap-1.3:methods:getbanklist [2010/10/13 15:39] irina |
||
---|---|---|---|
Line 26: | Line 26: | ||
===== Examples ===== | ===== Examples ===== | ||
+ | ==== .NET VB ==== | ||
+ | <code vb> | ||
+ | Dim bank() As usaepay.Bank | ||
+ | bank = client.getBankList(token) | ||
+ | MsgBox(bank.Length) | ||
+ | </code> | ||
+ | |||
+ | ==== .NET C# ==== | ||
+ | <code c> | ||
+ | try | ||
+ | { | ||
+ | usaepay.Bank[] bank = client.getBankList(token); | ||
+ | MessageBox.Show(string.Concat(bank.Length)); | ||
+ | |||
+ | } | ||
+ | catch (Exception err) | ||
+ | { | ||
+ | MessageBox.Show(err.Message); | ||
+ | } | ||
+ | </code> | ||