8 references to IPProtectionLevel
netstandard (1)
netstandard.cs (1)
1259[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Sockets.IPProtectionLevel))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
749[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Sockets.IPProtectionLevel))]
System.Net.Sockets (6)
System\Net\Sockets\Socket.cs (2)
2188public void SetIPProtectionLevel(IPProtectionLevel level) 2190if (level == IPProtectionLevel.Unspecified)
System\Net\Sockets\TCPListener.cs (2)
268=> _serverSocket!.SetIPProtectionLevel(allowed ? IPProtectionLevel.Unrestricted : IPProtectionLevel.EdgeRestricted);
System\Net\Sockets\UDPClient.cs (2)
192_clientSocket.SetIPProtectionLevel(allowed ? IPProtectionLevel.Unrestricted : IPProtectionLevel.EdgeRestricted);