This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
developer:soap-1.3:methods:searchproductscount [2010/09/01 16:46] irina |
developer:soap-1.3:methods:searchproductscount [2010/10/12 16:48] irina |
||
---|---|---|---|
Line 44: | Line 44: | ||
<code php> | <code php> | ||
+ | </code> | ||
+ | |||
+ | ==== .NET VB ==== | ||
+ | <code vb> | ||
+ | Dim MatchAll As Boolean | ||
+ | MatchAll = False | ||
+ | Dim searchParams(1) As usaepay.SearchParam | ||
+ | searchParams(0) = New usaepay.SearchParam | ||
+ | searchParams(0).Field = "Created" | ||
+ | searchParams(0).Type = "gt" | ||
+ | searchParams(0).Value = "2010-09-07" | ||
+ | |||
+ | Dim SearchResults As usaepay.ProductSearchResult = New usaepay.ProductSearchResult | ||
+ | SearchResults = client.searchProductsCount(token, searchParams, MatchAll, 0, 1000, "created") | ||
+ | |||
+ | MsgBox(SearchResults.ProductsMatched) | ||
</code> | </code> | ||