WCF Filter Transmission

As I know, when I put a file in filestream, the file is not viewed in memory. But is it true that when I pass this stream to my service from my client, the client put the file in momory and only then sent the byte [] to the service?

+3
source share
1 answer

There are 2 modes in WCF: streaming with buffering . You are looking for a streaming mode so as not to load all the data in memory:

Windows Communication Foundation (WCF) , . , , . . , . , , .

, OperationContract .

+4

All Articles