Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020002F7 RID: 759
[Token(Token = "0x20002F7")]
public abstract class IPGlobalProperties
{
// Token: 0x1700041C RID: 1052
// (get) Token: 0x0600144A RID: 5194 RVA: 0x00009330 File Offset: 0x00007530
[Token(Token = "0x1700041C")]
private static bool PlatformNeedsLibCWorkaround
{
[Token(Token = "0x600144A")]
[Address(RVA = "0x8A3330", Offset = "0x8A2330", VA = "0x1808A3330")]
[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: 0x0600144B RID: 5195 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600144B")]
[Address(RVA = "0x8A3230", Offset = "0x8A2230", VA = "0x1808A3230")]
public static IPGlobalProperties GetIPGlobalProperties()
{
return null;
}
// Token: 0x0600144C RID: 5196 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600144C")]
[Address(RVA = "0x8A3230", Offset = "0x8A2230", VA = "0x1808A3230")]
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: 0x1700041D RID: 1053
// (get) Token: 0x0600144D RID: 5197
[Token(Token = "0x1700041D")]
public abstract string DomainName
{
[Token(Token = "0x600144D")]
[Address(Slot = "4")]
get;
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.IPGlobalProperties" /> class.</summary>
// Token: 0x0600144E RID: 5198 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600144E")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
protected IPGlobalProperties()
{
}
}
}