using System; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Net.NetworkInformation { /// Provides information about the network connectivity of the local computer. // 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); } } /// 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: 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; } /// 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: 0x1700041D RID: 1053 // (get) Token: 0x0600144D RID: 5197 [Token(Token = "0x1700041D")] public abstract string DomainName { [Token(Token = "0x600144D")] [Address(Slot = "4")] get; } /// Initializes a new instance of the class. // Token: 0x0600144E RID: 5198 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600144E")] [Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")] protected IPGlobalProperties() { } } }