9 references to PingFragmentOptions
System.Net.Ping (9)
src\libraries\Common\src\System\Net\NetworkInformation\UnixCommandLinePing.cs (5)
87
public static string ConstructCommandLine(int packetSize, int timeout, string address, bool ipv4, int ttl = 0,
PingFragmentOptions
fragmentOption =
PingFragmentOptions
.Default)
168
if (fragmentOption !=
PingFragmentOptions
.Default)
173
if (fragmentOption ==
PingFragmentOptions
.Dont) {
181
if (fragmentOption ==
PingFragmentOptions
.Do) {
System\Net\NetworkInformation\Ping.PingUtility.cs (4)
35
UnixCommandLinePing.
PingFragmentOptions
fragmentOption = UnixCommandLinePing.
PingFragmentOptions
.Default;
38
fragmentOption = options.DontFragment ? UnixCommandLinePing.
PingFragmentOptions
.Do : UnixCommandLinePing.
PingFragmentOptions
.Dont;