3 instantiations of LingerOption
System (1)
net\System\Net\Sockets\Socket.cs (1)
6669LingerOption lingerOption = new LingerOption(lngopt.OnOff!=0, (int)lngopt.Time);
System.Runtime.Remoting (2)
channels\http\httpserverchannel.cs (1)
469LingerOption lingerOption = new LingerOption(true, 3);
channels\tcp\tcpserverchannel.cs (1)
417LingerOption lingerOption = new LingerOption(true, 3);
12 references to LingerOption
System (10)
net\System\Net\Sockets\LingerOption.cs (1)
22/// Initializes a new instance of the <see cref='Sockets.LingerOption'/> class.
net\System\Net\Sockets\Socket.cs (7)
703public LingerOption LingerState { 705return (LingerOption)GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger); 2373LingerOption lingerOption = optionValue as LingerOption; 6611private void setLingerOption(LingerOption lref) { 6642private LingerOption getLingerOpt() { 6669LingerOption lingerOption = new LingerOption(lngopt.OnOff!=0, (int)lngopt.Time);
net\System\Net\Sockets\TCPClient.cs (2)
581public LingerOption LingerState { 583return (LingerOption)Client.GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger);
System.Runtime.Remoting (2)
channels\http\httpserverchannel.cs (1)
469LingerOption lingerOption = new LingerOption(true, 3);
channels\tcp\tcpserverchannel.cs (1)
417LingerOption lingerOption = new LingerOption(true, 3);