48 lines
2.0 KiB
C#
48 lines
2.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides methods to verify the machine name and path conform to a specific syntax. This class cannot be inherited.</summary>
|
|
// Token: 0x0200018A RID: 394
|
|
[Token(Token = "0x200018A")]
|
|
public static class SyntaxCheck
|
|
{
|
|
/// <summary>Checks the syntax of the machine name to confirm that it does not contain "\".</summary>
|
|
/// <param name="value">A string containing the machine name to check.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="value" /> matches the proper machine name format; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Checks the syntax of the path to see whether it starts with "\\".</summary>
|
|
/// <param name="value">A string containing the path to check.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="value" /> matches the proper path format; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Checks the syntax of the path to see if it starts with "\" or drive letter "C:".</summary>
|
|
/// <param name="value">A string containing the path to check.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <paramref name="value" /> matches the proper path format; otherwise, <see langword="false" />.</returns>
|
|
// 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);
|
|
}
|
|
}
|
|
}
|