using System; using System.ComponentModel; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Net.NetworkInformation { /// The exception that is thrown when an error occurs while retrieving network information. // Token: 0x020002F8 RID: 760 [Token(Token = "0x20002F8")] [Serializable] public class NetworkInformationException : Win32Exception { /// Initializes a new instance of the class. // Token: 0x0600144F RID: 5199 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600144F")] [Address(RVA = "0x8ABA80", Offset = "0x8AAA80", VA = "0x1808ABA80")] public NetworkInformationException() { } /// Initializes a new instance of the class with serialized data. /// A SerializationInfo object that contains the serialized exception data. /// A StreamingContext that contains contextual information about the serialized exception. // Token: 0x06001450 RID: 5200 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001450")] [Address(RVA = "0x8ABB10", Offset = "0x8AAB10", VA = "0x1808ABB10")] protected NetworkInformationException(SerializationInfo serializationInfo, StreamingContext streamingContext) { } /// Gets the error code for this exception. /// An value that contains the error code. // Token: 0x1700041E RID: 1054 // (get) Token: 0x06001451 RID: 5201 RVA: 0x00009348 File Offset: 0x00007548 [Token(Token = "0x1700041E")] public override int ErrorCode { [Token(Token = "0x6001451")] [Address(RVA = "0x4F3F50", Offset = "0x4F2F50", VA = "0x1804F3F50", Slot = "12")] get { return 0; } } } }