Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

66 lines
2.4 KiB
C#

using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Net.NetworkInformation
{
/// <summary>Provides information about the network connectivity of the local computer.</summary>
// Token: 0x020002FB RID: 763
[Token(Token = "0x20002FB")]
public abstract class IPGlobalProperties
{
// Token: 0x17000420 RID: 1056
// (get) Token: 0x06001460 RID: 5216 RVA: 0x00009348 File Offset: 0x00007548
[Token(Token = "0x17000420")]
private static bool PlatformNeedsLibCWorkaround
{
[Token(Token = "0x6001460")]
[Address(RVA = "0x2228E70", Offset = "0x2227C70", VA = "0x182228E70")]
[CompilerGenerated]
get
{
return default(bool);
}
}
/// <summary>Gets an object that provides information about the local computer's network connectivity and traffic statistics.</summary>
/// <returns>A <see cref="T:System.Net.NetworkInformation.IPGlobalProperties" /> object that contains information about the local computer.</returns>
// Token: 0x06001461 RID: 5217 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001461")]
[Address(RVA = "0x2228D70", Offset = "0x2227B70", VA = "0x182228D70")]
public static IPGlobalProperties GetIPGlobalProperties()
{
return null;
}
// Token: 0x06001462 RID: 5218 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001462")]
[Address(RVA = "0x2228D70", Offset = "0x2227B70", VA = "0x182228D70")]
internal static IPGlobalProperties InternalGetIPGlobalProperties()
{
return null;
}
/// <summary>Gets the domain in which the local computer is registered.</summary>
/// <returns>A <see cref="T:System.String" /> instance that contains the computer's domain name. If the computer does not belong to a domain, returns <see cref="F:System.String.Empty" />.</returns>
/// <exception cref="T:System.Net.NetworkInformation.NetworkInformationException">A Win32 function call failed.</exception>
// Token: 0x17000421 RID: 1057
// (get) Token: 0x06001463 RID: 5219
[Token(Token = "0x17000421")]
public abstract string DomainName
{
[Token(Token = "0x6001463")]
[Address(Slot = "4")]
get;
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.IPGlobalProperties" /> class.</summary>
// Token: 0x06001464 RID: 5220 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001464")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected IPGlobalProperties()
{
}
}
}