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: 0x0200018E RID: 398 [Token(Token = "0x200018E")] 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: 0x06000A81 RID: 2689 RVA: 0x00006228 File Offset: 0x00004428 [Token(Token = "0x6000A81")] [Address(RVA = "0x4D9450", Offset = "0x4D8250", VA = "0x1804D9450")] 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: 0x06000A82 RID: 2690 RVA: 0x00006240 File Offset: 0x00004440 [Token(Token = "0x6000A82")] [Address(RVA = "0x4D94E0", Offset = "0x4D82E0", VA = "0x1804D94E0")] 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: 0x06000A83 RID: 2691 RVA: 0x00006258 File Offset: 0x00004458 [Token(Token = "0x6000A83")] [Address(RVA = "0x4D9560", Offset = "0x4D8360", VA = "0x1804D9560")] public static bool CheckRootedPath(string value) { return default(bool); } } }