What I have?
I have a WCF contract which accepts a Stream object.
What I need?
I want to convert the contract to accept multiple streams. But, there is some problem with passing multiple streams in WCF. Now I have two options,
(1) Call the WCF method multiple times
(2) Change contract to accept a two dimensional byte array with all file contents
Can somebody tell me which option is better?
Thanks in advance!