This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | Last revision Both sides next revision | ||
developer:soap-1.4:methods:getsynclog [2010/08/09 16:58] epouchak |
developer:soap-1.4:methods:getsynclog [2010/08/17 17:16] irina |
||
---|---|---|---|
Line 57: | Line 57: | ||
| | ||
</code> | </code> | ||
+ | |||
+ | ==== .NET C# ==== | ||
+ | <code c> | ||
+ | string ObjectName = "Product"; | ||
+ | string FromPosition = "0"; | ||
+ | |||
+ | try | ||
+ | { | ||
+ | usaepay.SyncLog[] log = client.getSyncLog(token, ObjectName, FromPosition); | ||
+ | MessageBox.Show(string.Concat(log.Length)); | ||
+ | |||
+ | } | ||
+ | catch (Exception err) | ||
+ | { | ||
+ | MessageBox.Show(err.Message); | ||
+ | } | ||
+ | </code> | ||
+ | |||
==== XML ==== | ==== XML ==== | ||
Request: | Request: |