3 instantiations of LingerOption
System (1)
net\System\Net\Sockets\Socket.cs (1)
6669
LingerOption lingerOption = new
LingerOption
(lngopt.OnOff!=0, (int)lngopt.Time);
System.Runtime.Remoting (2)
channels\http\httpserverchannel.cs (1)
469
LingerOption lingerOption = new
LingerOption
(true, 3);
channels\tcp\tcpserverchannel.cs (1)
417
LingerOption 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)
703
public
LingerOption
LingerState {
705
return (
LingerOption
)GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger);
2373
LingerOption
lingerOption = optionValue as
LingerOption
;
6611
private void setLingerOption(
LingerOption
lref) {
6642
private
LingerOption
getLingerOpt() {
6669
LingerOption
lingerOption = new LingerOption(lngopt.OnOff!=0, (int)lngopt.Time);
net\System\Net\Sockets\TCPClient.cs (2)
581
public
LingerOption
LingerState {
583
return (
LingerOption
)Client.GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger);
System.Runtime.Remoting (2)
channels\http\httpserverchannel.cs (1)
469
LingerOption
lingerOption = new LingerOption(true, 3);
channels\tcp\tcpserverchannel.cs (1)
417
LingerOption
lingerOption = new LingerOption(true, 3);