oh dear
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
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: 0x0200018E RID: 398
|
||||
[Token(Token = "0x200018E")]
|
||||
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: 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);
|
||||
}
|
||||
|
||||
/// <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: 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);
|
||||
}
|
||||
|
||||
/// <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: 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user