c# - Calling a method from WS, parameter input type issue -
i have following operation in webservice interface:
[operationcontract] list<vcard> getvcards(int[] vcardids);
and error when trying write code calling it:
what doing wrong?
thanks
you have type missmatch wrap cardlist new observablecollection() needed. e.g. before call service, 'course if it's following program semantic
service.getvcardsasync(new observablecollection<int>(cardlist))
Comments
Post a Comment