3

Will anything like

    [OperationContract]
    [WebGet]
    string IWannaRead(int[] ids);

work? And how to form a link\url (www.example.com/service.svc?ids=1,2,3,4,5,6,7,8) for the request?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Rella
  • 65,003
  • 109
  • 363
  • 636

2 Answers2

1

It is explained here:

http://social.msdn.microsoft.com/Forums/en/wcf/thread/2341c11e-92b3-4da4-aba5-858054f46c80

luksan
  • 7,661
  • 3
  • 36
  • 38
1

Yes, you can. It works exactly as you specified.

Mark
  • 11,257
  • 11
  • 61
  • 97