12 lines
526 B
C#
12 lines
526 B
C#
using System;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
/// <summary>References one or more methods to be called when the availability of the network changes.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">An <see cref="T:System.EventArgs" /> object that contains data about the event.</param>
|
|
// Token: 0x0200032F RID: 815
|
|
// (Invoke) Token: 0x06001C95 RID: 7317
|
|
public delegate void NetworkAvailabilityChangedEventHandler(object sender, NetworkAvailabilityEventArgs e);
|
|
}
|