I have a operation contract that is like this:
public interface ISearch
{
[OperationContract]
System.IO.Stream DownloadFile(string file);
}
the binding is nettcpbinding, and when i set buffered and streamed transfer mode, the wcf seems both work. so how can i test whether the wcf is working in streamed mode?