using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides methods to verify the machine name and path conform to a specific syntax. This class cannot be inherited. // Token: 0x0200018A RID: 394 [Token(Token = "0x200018A")] public static class SyntaxCheck { /// Checks the syntax of the machine name to confirm that it does not contain "\". /// A string containing the machine name to check. /// /// if matches the proper machine name format; otherwise, . // Token: 0x06000A6B RID: 2667 RVA: 0x00006210 File Offset: 0x00004410 [Token(Token = "0x6000A6B")] [Address(RVA = "0xC28E30", Offset = "0xC27E30", VA = "0x180C28E30")] public static bool CheckMachineName(string value) { return default(bool); } /// Checks the syntax of the path to see whether it starts with "\\". /// A string containing the path to check. /// /// if matches the proper path format; otherwise, . // Token: 0x06000A6C RID: 2668 RVA: 0x00006228 File Offset: 0x00004428 [Token(Token = "0x6000A6C")] [Address(RVA = "0xC28EC0", Offset = "0xC27EC0", VA = "0x180C28EC0")] public static bool CheckPath(string value) { return default(bool); } /// Checks the syntax of the path to see if it starts with "\" or drive letter "C:". /// A string containing the path to check. /// /// if matches the proper path format; otherwise, . // Token: 0x06000A6D RID: 2669 RVA: 0x00006240 File Offset: 0x00004440 [Token(Token = "0x6000A6D")] [Address(RVA = "0xC28F40", Offset = "0xC27F40", VA = "0x180C28F40")] public static bool CheckRootedPath(string value) { return default(bool); } } }