using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Net.NetworkInformation
{
/// Provides information about the network connectivity of the local computer.
// 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);
}
}
/// Gets an object that provides information about the local computer's network connectivity and traffic statistics.
/// A object that contains information about the local computer.
// 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;
}
/// Gets the domain in which the local computer is registered.
/// A instance that contains the computer's domain name. If the computer does not belong to a domain, returns .
/// A Win32 function call failed.
// Token: 0x17000421 RID: 1057
// (get) Token: 0x06001463 RID: 5219
[Token(Token = "0x17000421")]
public abstract string DomainName
{
[Token(Token = "0x6001463")]
[Address(Slot = "4")]
get;
}
/// Initializes a new instance of the class.
// Token: 0x06001464 RID: 5220 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001464")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected IPGlobalProperties()
{
}
}
}