Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum size that maxReceivedMessageSize can be set to for a NetNamedPipeBinding?

I noticed that 2147483647 seems to be a popular choice for maxReceivedMessageSize but is this the limit?

like image 719
Nick Avatar asked Jun 17 '09 01:06

Nick


People also ask

What is the max value for MaxReceivedMessageSize?

MaxReceivedMessageSize = 1000000; The value of this property can also be set in the configuration file.

How do you increase MaxReceivedMessageSize?

To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element. The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element.


1 Answers

Nope, the limit is Int64.MaxValue1 which is: 9223372036854775807

like image 100
AgileJon Avatar answered Sep 20 '22 07:09

AgileJon