17 references to StartIPOptions
System (17)
net\System\Net\Internal.cs (9)
568Setup(StartIPOptions.Both); 571private unsafe void Setup(StartIPOptions startIPOptions) 577if (Socket.OSSupportsIPv4 && (startIPOptions & StartIPOptions.StartIPv4) != 0){ 600if(Socket.OSSupportsIPv6 && (startIPOptions & StartIPOptions.StartIPv6) !=0){ 629StartIPOptions options = StartIPOptions.None; 632options|= StartIPOptions.StartIPv4; 636options|= StartIPOptions.StartIPv6; 639if(options != StartIPOptions.None){
net\System\Net\NetworkInformation\NetworkAddressChange.cs (8)
197StartHelper(null, false, (StartIPOptions)stateObject); 240StartHelper(caller, true, StartIPOptions.Both); 245StartHelper(caller, false, StartIPOptions.Both); 248private static void StartHelper(NetworkAddressChangedEventHandler caller, bool captureContext, StartIPOptions startIPOptions) 286if(Socket.OSSupportsIPv4 && (startIPOptions & StartIPOptions.StartIPv4) !=0){ 290StartIPOptions.StartIPv4, 314if(Socket.OSSupportsIPv6 && (startIPOptions & StartIPOptions.StartIPv6) !=0){ 318StartIPOptions.StartIPv6,