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

◆ SendBufferSize

int System.Net.Sockets.Socket.SendBufferSize
getset

Definition at line 792 of file Socket.cs.

793 {
794 get
795 {
796 return (int)GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.SendBuffer);
797 }
798 set
799 {
800 if (value < 0)
801 {
802 throw new ArgumentOutOfRangeException("value");
803 }
805 }
806 }
object? GetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName)
Definition Socket.cs:2235
void SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue)
Definition Socket.cs:2143