Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ReceiveBufferSize

int System.Net.ServicePoint.ReceiveBufferSize
getset

Definition at line 53 of file ServicePoint.cs.

54 {
55 get
56 {
57 return _receiveBufferSize;
58 }
59 set
60 {
61 if (value < -1)
62 {
63 throw new ArgumentOutOfRangeException("value");
64 }
66 }
67 }