1 instantiation of PingCompletedEventArgs
System.Net.Ping (1)
System\Net\NetworkInformation\Ping.cs (1)
527var e = new PingCompletedEventArgs(t.IsCompletedSuccessfully ? t.Result : null, t.Exception, t.IsCanceled, asyncOp.UserSuppliedState);
6 references to PingCompletedEventArgs
netstandard (1)
netstandard.cs (1)
1220[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.NetworkInformation.PingCompletedEventArgs))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
712[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.NetworkInformation.PingCompletedEventArgs))]
System.Net.Ping (4)
System\Net\NetworkInformation\Ping.cs (3)
166protected void OnPingCompleted(PingCompletedEventArgs e) 527var e = new PingCompletedEventArgs(t.IsCompletedSuccessfully ? t.Result : null, t.Exception, t.IsCanceled, asyncOp.UserSuppliedState); 528SendOrPostCallback callback = _onPingCompletedDelegate ??= new SendOrPostCallback(o => { OnPingCompleted((PingCompletedEventArgs)o!); });
System\Net\NetworkInformation\PingCompletedEventArgs.cs (1)
8public delegate void PingCompletedEventHandler(object sender, PingCompletedEventArgs e);