using System;
namespace System.Net.NetworkInformation
{
/// Provides data for the event.
// Token: 0x0200019E RID: 414
public class NetworkAvailabilityEventArgs : EventArgs
{
// Token: 0x06000DD5 RID: 3541 RVA: 0x00026D5C File Offset: 0x00024F5C
internal NetworkAvailabilityEventArgs(bool available)
{
this.available = available;
}
/// Gets the current status of the network connection.
/// true if the network is available; otherwise, false.
// Token: 0x17000481 RID: 1153
// (get) Token: 0x06000DD6 RID: 3542 RVA: 0x00026D6C File Offset: 0x00024F6C
public bool IsAvailable
{
get
{
return this.available;
}
}
// Token: 0x04000C89 RID: 3209
private bool available;
}
}