I'm trying to populate a grid using RapNet Inventory Link (http://technet.rapaport.com/WebServices/RetailFeed/RetailFeed.asmx )
I want to be able to provide search criteria like ROUND and PEAR and PRINCESS, currently I am only able to pass one shape type. The Shapes enumeration does not have an "All" or "Any". Is there some workaround? Or
srRapNet.RetailFeedSoapClient feedClient = new RetailFeedSoapClient();
//authentication
dt = feedClient.GetStones(
authTicket,
104,
srRapNet.Shapes.ROUND,
0.2, 15.3, //size From - To
srRapNet.Colors.D, srRapNet.Colors.K, // Color From - To
srRapNet.Clarities.IF, srRapNet.Clarities.VVS2, // Clarity From - To
srRapNet.Cuts.EXCELLENT, srRapNet.Cuts.VERY_GOOD,// Cut From - To
100, 150000, // Price From - To
2, 20, //Page, Results in page
ref DiamondCount);