using System;
namespace System.Net.NetworkInformation
{
/// Allows applications to receive notification when the Internet Protocol (IP) address of a network interface, also called a network card or adapter, changes.
// Token: 0x0200019F RID: 415
public sealed class NetworkChange
{
// Token: 0x06000DD7 RID: 3543 RVA: 0x00026D74 File Offset: 0x00024F74
private NetworkChange()
{
}
/// Occurs when the IP address of a network interface changes.
// Token: 0x14000023 RID: 35
// (add) Token: 0x06000DD8 RID: 3544 RVA: 0x00026D7C File Offset: 0x00024F7C
// (remove) Token: 0x06000DD9 RID: 3545 RVA: 0x00026D94 File Offset: 0x00024F94
public static event NetworkAddressChangedEventHandler NetworkAddressChanged;
/// Occurs when the availability of the network changes.
// Token: 0x14000024 RID: 36
// (add) Token: 0x06000DDA RID: 3546 RVA: 0x00026DAC File Offset: 0x00024FAC
// (remove) Token: 0x06000DDB RID: 3547 RVA: 0x00026DC4 File Offset: 0x00024FC4
public static event NetworkAvailabilityChangedEventHandler NetworkAvailabilityChanged;
}
}