Files
2026-04-10 22:50:51 +02:00

527 lines
24 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Text;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents the version number of an assembly, operating system, or the common language runtime. This class cannot be inherited.</summary>
// Token: 0x0200015A RID: 346
[Token(Token = "0x200015A")]
[ComVisible(true)]
[Serializable]
public sealed class Version : ICloneable, IComparable, IComparable<Version>, IEquatable<Version>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Version" /> class with the specified major, minor, build, and revision numbers.</summary>
/// <param name="major">The major version number.</param>
/// <param name="minor">The minor version number.</param>
/// <param name="build">The build number.</param>
/// <param name="revision">The revision number.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="major" />, <paramref name="minor" />, <paramref name="build" />, or <paramref name="revision" /> is less than zero.</exception>
// Token: 0x06000E59 RID: 3673 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E59")]
[Address(RVA = "0x328B5D0", Offset = "0x328A3D0", VA = "0x18328B5D0")]
public Version(int major, int minor, int build, int revision)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Version" /> class using the specified major, minor, and build values.</summary>
/// <param name="major">The major version number.</param>
/// <param name="minor">The minor version number.</param>
/// <param name="build">The build number.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="major" />, <paramref name="minor" />, or <paramref name="build" /> is less than zero.</exception>
// Token: 0x06000E5A RID: 3674 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E5A")]
[Address(RVA = "0x328B230", Offset = "0x328A030", VA = "0x18328B230")]
public Version(int major, int minor, int build)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Version" /> class using the specified major and minor values.</summary>
/// <param name="major">The major version number.</param>
/// <param name="minor">The minor version number.</param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="major" /> or <paramref name="minor" /> is less than zero.</exception>
// Token: 0x06000E5B RID: 3675 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E5B")]
[Address(RVA = "0x328B4E0", Offset = "0x328A2E0", VA = "0x18328B4E0")]
public Version(int major, int minor)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Version" /> class using the specified string.</summary>
/// <param name="version">A string containing the major, minor, build, and revision numbers, where each number is delimited with a period character ('.').</param>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="version" /> has fewer than two components or more than four components.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="version" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">A major, minor, build, or revision component is less than zero.</exception>
/// <exception cref="T:System.FormatException">At least one component of <paramref name="version" /> does not parse to an integer.</exception>
/// <exception cref="T:System.OverflowException">At least one component of <paramref name="version" /> represents a number greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x06000E5C RID: 3676 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E5C")]
[Address(RVA = "0x328B380", Offset = "0x328A180", VA = "0x18328B380")]
public Version(string version)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Version" /> class.</summary>
// Token: 0x06000E5D RID: 3677 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E5D")]
[Address(RVA = "0x328B200", Offset = "0x328A000", VA = "0x18328B200")]
public Version()
{
}
/// <summary>Gets the value of the major component of the version number for the current <see cref="T:System.Version" /> object.</summary>
/// <returns>The major version number.</returns>
// Token: 0x17000151 RID: 337
// (get) Token: 0x06000E5E RID: 3678 RVA: 0x0000C288 File Offset: 0x0000A488
[Token(Token = "0x17000151")]
public int Major
{
[Token(Token = "0x6000E5E")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")]
get
{
return 0;
}
}
/// <summary>Gets the value of the minor component of the version number for the current <see cref="T:System.Version" /> object.</summary>
/// <returns>The minor version number.</returns>
// Token: 0x17000152 RID: 338
// (get) Token: 0x06000E5F RID: 3679 RVA: 0x0000C2A0 File Offset: 0x0000A4A0
[Token(Token = "0x17000152")]
public int Minor
{
[Token(Token = "0x6000E5F")]
[Address(RVA = "0x495080", Offset = "0x493E80", VA = "0x180495080")]
get
{
return 0;
}
}
/// <summary>Gets the value of the build component of the version number for the current <see cref="T:System.Version" /> object.</summary>
/// <returns>The build number, or -1 if the build number is undefined.</returns>
// Token: 0x17000153 RID: 339
// (get) Token: 0x06000E60 RID: 3680 RVA: 0x0000C2B8 File Offset: 0x0000A4B8
[Token(Token = "0x17000153")]
public int Build
{
[Token(Token = "0x6000E60")]
[Address(RVA = "0x40B720", Offset = "0x40A520", VA = "0x18040B720")]
get
{
return 0;
}
}
/// <summary>Gets the value of the revision component of the version number for the current <see cref="T:System.Version" /> object.</summary>
/// <returns>The revision number, or -1 if the revision number is undefined.</returns>
// Token: 0x17000154 RID: 340
// (get) Token: 0x06000E61 RID: 3681 RVA: 0x0000C2D0 File Offset: 0x0000A4D0
[Token(Token = "0x17000154")]
public int Revision
{
[Token(Token = "0x6000E61")]
[Address(RVA = "0x41F5B0", Offset = "0x41E3B0", VA = "0x18041F5B0")]
get
{
return 0;
}
}
/// <summary>Returns a new <see cref="T:System.Version" /> object whose value is the same as the current <see cref="T:System.Version" /> object.</summary>
/// <returns>A new <see cref="T:System.Object" /> whose values are a copy of the current <see cref="T:System.Version" /> object.</returns>
// Token: 0x06000E62 RID: 3682 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E62")]
[Address(RVA = "0x3289F30", Offset = "0x3288D30", VA = "0x183289F30", Slot = "4")]
public object Clone()
{
return null;
}
/// <summary>Compares the current <see cref="T:System.Version" /> object to a specified object and returns an indication of their relative values.</summary>
/// <param name="version">An object to compare, or <see langword="null" />.</param>
/// <returns>A signed integer that indicates the relative values of the two objects, as shown in the following table.
/// Return value
///
/// Meaning
///
/// Less than zero
///
/// The current <see cref="T:System.Version" /> object is a version before <paramref name="version" />.
///
/// Zero
///
/// The current <see cref="T:System.Version" /> object is the same version as <paramref name="version" />.
///
/// Greater than zero
///
/// The current <see cref="T:System.Version" /> object is a version subsequent to <paramref name="version" />.
///
/// -or-
///
/// <paramref name="version" /> is <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="version" /> is not of type <see cref="T:System.Version" />.</exception>
// Token: 0x06000E63 RID: 3683 RVA: 0x0000C2E8 File Offset: 0x0000A4E8
[Token(Token = "0x6000E63")]
[Address(RVA = "0x3289FB0", Offset = "0x3288DB0", VA = "0x183289FB0", Slot = "5")]
public int CompareTo(object version)
{
return 0;
}
/// <summary>Compares the current <see cref="T:System.Version" /> object to a specified <see cref="T:System.Version" /> object and returns an indication of their relative values.</summary>
/// <param name="value">A <see cref="T:System.Version" /> object to compare to the current <see cref="T:System.Version" /> object, or <see langword="null" />.</param>
/// <returns>A signed integer that indicates the relative values of the two objects, as shown in the following table.
/// Return value
///
/// Meaning
///
/// Less than zero
///
/// The current <see cref="T:System.Version" /> object is a version before <paramref name="value" />.
///
/// Zero
///
/// The current <see cref="T:System.Version" /> object is the same version as <paramref name="value" />.
///
/// Greater than zero
///
/// The current <see cref="T:System.Version" /> object is a version subsequent to <paramref name="value" />.
///
/// -or-
///
/// <paramref name="value" /> is <see langword="null" />.</returns>
// Token: 0x06000E64 RID: 3684 RVA: 0x0000C300 File Offset: 0x0000A500
[Token(Token = "0x6000E64")]
[Address(RVA = "0x328A110", Offset = "0x3288F10", VA = "0x18328A110", Slot = "6")]
public int CompareTo(Version value)
{
return 0;
}
/// <summary>Returns a value indicating whether the current <see cref="T:System.Version" /> object is equal to a specified object.</summary>
/// <param name="obj">An object to compare with the current <see cref="T:System.Version" /> object, or <see langword="null" />.</param>
/// <returns>
/// <see langword="true" /> if the current <see cref="T:System.Version" /> object and <paramref name="obj" /> are both <see cref="T:System.Version" /> objects, and every component of the current <see cref="T:System.Version" /> object matches the corresponding component of <paramref name="obj" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000E65 RID: 3685 RVA: 0x0000C318 File Offset: 0x0000A518
[Token(Token = "0x6000E65")]
[Address(RVA = "0x328A2B0", Offset = "0x32890B0", VA = "0x18328A2B0", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns a value indicating whether the current <see cref="T:System.Version" /> object and a specified <see cref="T:System.Version" /> object represent the same value.</summary>
/// <param name="obj">A <see cref="T:System.Version" /> object to compare to the current <see cref="T:System.Version" /> object, or <see langword="null" />.</param>
/// <returns>
/// <see langword="true" /> if every component of the current <see cref="T:System.Version" /> object matches the corresponding component of the <paramref name="obj" /> parameter; otherwise, <see langword="false" />.</returns>
// Token: 0x06000E66 RID: 3686 RVA: 0x0000C330 File Offset: 0x0000A530
[Token(Token = "0x6000E66")]
[Address(RVA = "0x328A210", Offset = "0x3289010", VA = "0x18328A210", Slot = "7")]
public bool Equals(Version obj)
{
return default(bool);
}
/// <summary>Returns a hash code for the current <see cref="T:System.Version" /> object.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000E67 RID: 3687 RVA: 0x0000C348 File Offset: 0x0000A548
[Token(Token = "0x6000E67")]
[Address(RVA = "0x328A3B0", Offset = "0x32891B0", VA = "0x18328A3B0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Converts the value of the current <see cref="T:System.Version" /> object to its equivalent <see cref="T:System.String" /> representation.</summary>
/// <returns>The <see cref="T:System.String" /> representation of the values of the major, minor, build, and revision components of the current <see cref="T:System.Version" /> object, as depicted in the following format. Each component is separated by a period character ('.'). Square brackets ('[' and ']') indicate a component that will not appear in the return value if the component is not defined:
/// major.minor[.build[.revision]]
/// For example, if you create a <see cref="T:System.Version" /> object using the constructor Version(1,1), the returned string is "1.1". If you create a <see cref="T:System.Version" /> object using the constructor Version(1,3,4,2), the returned string is "1.3.4.2".</returns>
// Token: 0x06000E68 RID: 3688 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E68")]
[Address(RVA = "0x328A910", Offset = "0x3289710", VA = "0x18328A910", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Converts the value of the current <see cref="T:System.Version" /> object to its equivalent <see cref="T:System.String" /> representation. A specified count indicates the number of components to return.</summary>
/// <param name="fieldCount">The number of components to return. The <paramref name="fieldCount" /> ranges from 0 to 4.</param>
/// <returns>The <see cref="T:System.String" /> representation of the values of the major, minor, build, and revision components of the current <see cref="T:System.Version" /> object, each separated by a period character ('.'). The <paramref name="fieldCount" /> parameter determines how many components are returned.
/// fieldCount
///
/// Return Value
///
/// 0
///
/// An empty string ("").
///
/// 1
///
/// major
///
/// 2
///
/// major.minor
///
/// 3
///
/// major.minor.build
///
/// 4
///
/// major.minor.build.revision
///
///
///
/// For example, if you create <see cref="T:System.Version" /> object using the constructor Version(1,3,5), ToString(2) returns "1.3" and ToString(4) throws an exception.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="fieldCount" /> is less than 0, or more than 4.
/// -or-
/// <paramref name="fieldCount" /> is more than the number of components defined in the current <see cref="T:System.Version" /> object.</exception>
// Token: 0x06000E69 RID: 3689 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E69")]
[Address(RVA = "0x328A4C0", Offset = "0x32892C0", VA = "0x18328A4C0")]
public string ToString(int fieldCount)
{
return null;
}
// Token: 0x06000E6A RID: 3690 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E6A")]
[Address(RVA = "0x3289EA0", Offset = "0x3288CA0", VA = "0x183289EA0")]
private static void AppendPositiveNumber(int num, StringBuilder sb)
{
}
/// <summary>Converts the string representation of a version number to an equivalent <see cref="T:System.Version" /> object.</summary>
/// <param name="input">A string that contains a version number to convert.</param>
/// <returns>An object that is equivalent to the version number specified in the <paramref name="input" /> parameter.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="input" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="input" /> has fewer than two or more than four version components.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">At least one component in <paramref name="input" /> is less than zero.</exception>
/// <exception cref="T:System.FormatException">At least one component in <paramref name="input" /> is not an integer.</exception>
/// <exception cref="T:System.OverflowException">At least one component in <paramref name="input" /> represents a number that is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
// Token: 0x06000E6B RID: 3691 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E6B")]
[Address(RVA = "0x328A3E0", Offset = "0x32891E0", VA = "0x18328A3E0")]
public static Version Parse(string input)
{
return null;
}
// Token: 0x06000E6C RID: 3692 RVA: 0x0000C360 File Offset: 0x0000A560
[Token(Token = "0x6000E6C")]
[Address(RVA = "0x328AB20", Offset = "0x3289920", VA = "0x18328AB20")]
private static bool TryParseVersion(string version, ref Version.VersionResult result)
{
return default(bool);
}
// Token: 0x06000E6D RID: 3693 RVA: 0x0000C378 File Offset: 0x0000A578
[Token(Token = "0x6000E6D")]
[Address(RVA = "0x328A9F0", Offset = "0x32897F0", VA = "0x18328A9F0")]
private static bool TryParseComponent(string component, string componentName, ref Version.VersionResult result, out int parsedComponent)
{
return default(bool);
}
/// <summary>Determines whether two specified <see cref="T:System.Version" /> objects are equal.</summary>
/// <param name="v1">The first <see cref="T:System.Version" /> object.</param>
/// <param name="v2">The second <see cref="T:System.Version" /> object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="v1" /> equals <paramref name="v2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000E6E RID: 3694 RVA: 0x0000C390 File Offset: 0x0000A590
[Token(Token = "0x6000E6E")]
[Address(RVA = "0x328B770", Offset = "0x328A570", VA = "0x18328B770")]
public static bool operator ==(Version v1, Version v2)
{
return default(bool);
}
/// <summary>Determines whether two specified <see cref="T:System.Version" /> objects are not equal.</summary>
/// <param name="v1">The first <see cref="T:System.Version" /> object.</param>
/// <param name="v2">The second <see cref="T:System.Version" /> object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="v1" /> does not equal <paramref name="v2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000E6F RID: 3695 RVA: 0x0000C3A8 File Offset: 0x0000A5A8
[Token(Token = "0x6000E6F")]
[Address(RVA = "0x328B9B0", Offset = "0x328A7B0", VA = "0x18328B9B0")]
public static bool operator !=(Version v1, Version v2)
{
return default(bool);
}
/// <summary>Determines whether the first specified <see cref="T:System.Version" /> object is less than the second specified <see cref="T:System.Version" /> object.</summary>
/// <param name="v1">The first <see cref="T:System.Version" /> object.</param>
/// <param name="v2">The second <see cref="T:System.Version" /> object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="v1" /> is less than <paramref name="v2" />; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="v1" /> is <see langword="null" />.</exception>
// Token: 0x06000E70 RID: 3696 RVA: 0x0000C3C0 File Offset: 0x0000A5C0
[Token(Token = "0x6000E70")]
[Address(RVA = "0x328BAA0", Offset = "0x328A8A0", VA = "0x18328BAA0")]
public static bool operator <(Version v1, Version v2)
{
return default(bool);
}
/// <summary>Determines whether the first specified <see cref="T:System.Version" /> object is less than or equal to the second <see cref="T:System.Version" /> object.</summary>
/// <param name="v1">The first <see cref="T:System.Version" /> object.</param>
/// <param name="v2">The second <see cref="T:System.Version" /> object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="v1" /> is less than or equal to <paramref name="v2" />; otherwise, <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="v1" /> is <see langword="null" />.</exception>
// Token: 0x06000E71 RID: 3697 RVA: 0x0000C3D8 File Offset: 0x0000A5D8
[Token(Token = "0x6000E71")]
[Address(RVA = "0x328BA20", Offset = "0x328A820", VA = "0x18328BA20")]
public static bool operator <=(Version v1, Version v2)
{
return default(bool);
}
/// <summary>Determines whether the first specified <see cref="T:System.Version" /> object is greater than the second specified <see cref="T:System.Version" /> object.</summary>
/// <param name="v1">The first <see cref="T:System.Version" /> object.</param>
/// <param name="v2">The second <see cref="T:System.Version" /> object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="v1" /> is greater than <paramref name="v2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000E72 RID: 3698 RVA: 0x0000C3F0 File Offset: 0x0000A5F0
[Token(Token = "0x6000E72")]
[Address(RVA = "0x328B8F0", Offset = "0x328A6F0", VA = "0x18328B8F0")]
public static bool operator >(Version v1, Version v2)
{
return default(bool);
}
/// <summary>Determines whether the first specified <see cref="T:System.Version" /> object is greater than or equal to the second specified <see cref="T:System.Version" /> object.</summary>
/// <param name="v1">The first <see cref="T:System.Version" /> object.</param>
/// <param name="v2">The second <see cref="T:System.Version" /> object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="v1" /> is greater than or equal to <paramref name="v2" />; otherwise, <see langword="false" />.</returns>
// Token: 0x06000E73 RID: 3699 RVA: 0x0000C408 File Offset: 0x0000A608
[Token(Token = "0x6000E73")]
[Address(RVA = "0x328B830", Offset = "0x328A630", VA = "0x18328B830")]
public static bool operator >=(Version v1, Version v2)
{
return default(bool);
}
// Token: 0x04000586 RID: 1414
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000586")]
private int _Major;
// Token: 0x04000587 RID: 1415
[global::Cpp2IlInjected.FieldOffset(Offset = "0x14")]
[Token(Token = "0x4000587")]
private int _Minor;
// Token: 0x04000588 RID: 1416
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000588")]
private int _Build;
// Token: 0x04000589 RID: 1417
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1C")]
[Token(Token = "0x4000589")]
private int _Revision;
// Token: 0x0400058A RID: 1418
[Token(Token = "0x400058A")]
private static readonly char[] SeparatorsArray;
// Token: 0x0400058B RID: 1419
[Token(Token = "0x400058B")]
private const int ZERO_CHAR_VALUE = 48;
// Token: 0x0200015B RID: 347
[Token(Token = "0x200015B")]
internal enum ParseFailureKind
{
// Token: 0x0400058D RID: 1421
[Token(Token = "0x400058D")]
ArgumentNullException,
// Token: 0x0400058E RID: 1422
[Token(Token = "0x400058E")]
ArgumentException,
// Token: 0x0400058F RID: 1423
[Token(Token = "0x400058F")]
ArgumentOutOfRangeException,
// Token: 0x04000590 RID: 1424
[Token(Token = "0x4000590")]
FormatException
}
// Token: 0x0200015C RID: 348
[Token(Token = "0x200015C")]
internal struct VersionResult
{
// Token: 0x06000E75 RID: 3701 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E75")]
[Address(RVA = "0x3289D80", Offset = "0x3288B80", VA = "0x183289D80")]
internal void Init(string argumentName, bool canThrow)
{
}
// Token: 0x06000E76 RID: 3702 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E76")]
[Address(RVA = "0x3289E00", Offset = "0x3288C00", VA = "0x183289E00")]
internal void SetFailure(Version.ParseFailureKind failure)
{
}
// Token: 0x06000E77 RID: 3703 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E77")]
[Address(RVA = "0x3289D90", Offset = "0x3288B90", VA = "0x183289D90")]
internal void SetFailure(Version.ParseFailureKind failure, string argument)
{
}
// Token: 0x06000E78 RID: 3704 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000E78")]
[Address(RVA = "0x3289BF0", Offset = "0x32889F0", VA = "0x183289BF0")]
internal Exception GetVersionParseException()
{
return null;
}
// Token: 0x04000591 RID: 1425
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000591")]
internal Version m_parsedVersion;
// Token: 0x04000592 RID: 1426
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000592")]
internal Version.ParseFailureKind m_failure;
// Token: 0x04000593 RID: 1427
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000593")]
internal string m_exceptionArgument;
// Token: 0x04000594 RID: 1428
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000594")]
internal string m_argumentName;
// Token: 0x04000595 RID: 1429
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000595")]
internal bool m_canThrow;
}
}
}