Hi,
I've got asmx with method
[Webmethod]
public Ssytem.IO.Stream GetStream(string path)
{
...
}
and winforms application which has webreference to this webservice.
I cannot do something on my winforms application like something:
var myStream= (System.IO.Stream)client.GetStream(path);
because i
Cannot cast expression "MyWinformsApp.MyService.Stream" to Stream.
Why is that ?