Calling Client-Side WCF Service With Type List<Of T>
问题 I am designing a multi-file upload service that also shows upload progress for each file. If I was to design my WCF method as a SOAP contract, I would do something like this: var request = IService.UploadMethod(List<Upload> request); But, how do I pass the parameter ""request"" of type " List<Upload> " when I am calling the method from the client (../upload.svc/ uploadpictures/""request"")? Help appreciated, thanks. 回答1: You're using SOAP as you say yourself - which means, you cannot just