using System;
namespace System.Net.NetworkInformation
{
/// The exception that is thrown when an error occurs while retrieving network information.
// Token: 0x020001A1 RID: 417
[Serializable]
public class NetworkInformationException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x06000DDC RID: 3548 RVA: 0x00026DDC File Offset: 0x00024FDC
public NetworkInformationException()
{
}
/// Initializes a new instance of the class with the specified error code.
/// A Win32 error code.
// Token: 0x06000DDD RID: 3549 RVA: 0x00026DE4 File Offset: 0x00024FE4
public NetworkInformationException(int errorCode)
{
this.error_code = errorCode;
}
/// Gets the Win32 error code for this exception.
/// An value that contains the Win32 error code.
// Token: 0x17000482 RID: 1154
// (get) Token: 0x06000DDE RID: 3550 RVA: 0x00026DF4 File Offset: 0x00024FF4
public int ErrorCode
{
get
{
return this.error_code;
}
}
// Token: 0x04000C90 RID: 3216
private int error_code;
}
}