m
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.NetworkInformation
|
||||
{
|
||||
/// <summary>The exception that is thrown when an error occurs while retrieving network information.</summary>
|
||||
// Token: 0x020002F8 RID: 760
|
||||
[Token(Token = "0x20002F8")]
|
||||
[Serializable]
|
||||
public class NetworkInformationException : Win32Exception
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.NetworkInformationException" /> class.</summary>
|
||||
// Token: 0x0600144F RID: 5199 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600144F")]
|
||||
[Address(RVA = "0x8ABA80", Offset = "0x8AAA80", VA = "0x1808ABA80")]
|
||||
public NetworkInformationException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.NetworkInformationException" /> class with serialized data.</summary>
|
||||
/// <param name="serializationInfo">A SerializationInfo object that contains the serialized exception data.</param>
|
||||
/// <param name="streamingContext">A StreamingContext that contains contextual information about the serialized exception.</param>
|
||||
// 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)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see langword="Win32" /> error code for this exception.</summary>
|
||||
/// <returns>An <see cref="T:System.Int32" /> value that contains the <see langword="Win32" /> error code.</returns>
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user