Files
2026-06-04 11:42:34 +02:00

12 lines
692 B
C#

using System;
namespace System.Net.NetworkInformation
{
/// <summary>Represents the method that will handle the <see cref="E:System.Net.NetworkInformation.Ping.PingCompleted" /> event of a <see cref="T:System.Net.NetworkInformation.Ping" /> object.</summary>
/// <param name="sender">The source of the <see cref="E:System.Net.NetworkInformation.Ping.PingCompleted" /> event.</param>
/// <param name="e">A <see cref="T:System.Net.NetworkInformation.PingCompletedEventArgs" /> object that contains the event data.</param>
// Token: 0x02000330 RID: 816
// (Invoke) Token: 0x06001C99 RID: 7321
public delegate void PingCompletedEventHandler(object sender, PingCompletedEventArgs e);
}