Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

1106 lines
48 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Text.RegularExpressions;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Encodes and decodes XML names, and provides methods for converting between common language runtime types and XML Schema definition language (XSD) types. When converting data types, the values returned are locale-independent.</summary>
// Token: 0x020000DF RID: 223
[Token(Token = "0x20000DF")]
public class XmlConvert
{
/// <summary>Converts the name to a valid XML name.</summary>
/// <param name="name">A name to be translated. </param>
/// <returns>Returns the name with any invalid characters replaced by an escape string.</returns>
// Token: 0x06000B22 RID: 2850 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B22")]
[Address(RVA = "0x684210", Offset = "0x683210", VA = "0x180684210")]
public static string EncodeName(string name)
{
return null;
}
/// <summary>Converts the name to a valid XML local name.</summary>
/// <param name="name">The name to be encoded. </param>
/// <returns>The encoded name.</returns>
// Token: 0x06000B23 RID: 2851 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B23")]
[Address(RVA = "0x6841B0", Offset = "0x6831B0", VA = "0x1806841B0")]
public static string EncodeLocalName(string name)
{
return null;
}
/// <summary>Decodes a name. This method does the reverse of the <see cref="M:System.Xml.XmlConvert.EncodeName(System.String)" /> and <see cref="M:System.Xml.XmlConvert.EncodeLocalName(System.String)" /> methods.</summary>
/// <param name="name">The name to be transformed. </param>
/// <returns>The decoded name.</returns>
// Token: 0x06000B24 RID: 2852 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B24")]
[Address(RVA = "0x6839A0", Offset = "0x6829A0", VA = "0x1806839A0")]
public static string DecodeName(string name)
{
return null;
}
// Token: 0x06000B25 RID: 2853 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B25")]
[Address(RVA = "0x684270", Offset = "0x683270", VA = "0x180684270")]
private static string EncodeName(string name, bool first, bool local)
{
return null;
}
// Token: 0x06000B26 RID: 2854 RVA: 0x000062A0 File Offset: 0x000044A0
[Token(Token = "0x6000B26")]
[Address(RVA = "0x684B90", Offset = "0x683B90", VA = "0x180684B90")]
private static int FromHex(char digit)
{
return 0;
}
// Token: 0x06000B27 RID: 2855 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B27")]
[Address(RVA = "0x684A50", Offset = "0x683A50", VA = "0x180684A50")]
internal static byte[] FromBinHexString(string s)
{
return null;
}
// Token: 0x06000B28 RID: 2856 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B28")]
[Address(RVA = "0x684B00", Offset = "0x683B00", VA = "0x180684B00")]
internal static byte[] FromBinHexString(string s, bool allowOddCount)
{
return null;
}
// Token: 0x06000B29 RID: 2857 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B29")]
[Address(RVA = "0x684E50", Offset = "0x683E50", VA = "0x180684E50")]
internal static string ToBinHexString(byte[] inArray)
{
return null;
}
/// <summary>Verifies that the name is a valid name according to the W3C Extended Markup Language recommendation.</summary>
/// <param name="name">The name to verify. </param>
/// <returns>The name, if it is a valid XML name.</returns>
/// <exception cref="T:System.Xml.XmlException">
/// <paramref name="name" /> is not a valid XML name. </exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="name" /> is <see langword="null" /> or String.Empty. </exception>
// Token: 0x06000B2A RID: 2858 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B2A")]
[Address(RVA = "0x688F50", Offset = "0x687F50", VA = "0x180688F50")]
public static string VerifyName(string name)
{
return null;
}
// Token: 0x06000B2B RID: 2859 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B2B")]
[Address(RVA = "0x688760", Offset = "0x687760", VA = "0x180688760")]
internal static Exception TryVerifyName(string name)
{
return null;
}
// Token: 0x06000B2C RID: 2860 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B2C")]
[Address(RVA = "0x689080", Offset = "0x688080", VA = "0x180689080")]
internal static string VerifyQName(string name, ExceptionType exceptionType)
{
return null;
}
/// <summary>Verifies that the name is a valid <see langword="NCName" /> according to the W3C Extended Markup Language recommendation. An <see langword="NCName" /> is a name that cannot contain a colon.</summary>
/// <param name="name">The name to verify. </param>
/// <returns>The name, if it is a valid NCName.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="name" /> is <see langword="null" /> or String.Empty. </exception>
/// <exception cref="T:System.Xml.XmlException">
/// <paramref name="name" /> is not a valid non-colon name. </exception>
// Token: 0x06000B2D RID: 2861 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B2D")]
[Address(RVA = "0x688DE0", Offset = "0x687DE0", VA = "0x180688DE0")]
public static string VerifyNCName(string name)
{
return null;
}
// Token: 0x06000B2E RID: 2862 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B2E")]
[Address(RVA = "0x688CA0", Offset = "0x687CA0", VA = "0x180688CA0")]
internal static string VerifyNCName(string name, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B2F RID: 2863 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B2F")]
[Address(RVA = "0x6884A0", Offset = "0x6874A0", VA = "0x1806884A0")]
internal static Exception TryVerifyNCName(string name)
{
return null;
}
/// <summary>Verifies that the string is a valid token according to the W3C XML Schema Part2: Datatypes recommendation.</summary>
/// <param name="token">The string value you wish to verify.</param>
/// <returns>The token, if it is a valid token.</returns>
/// <exception cref="T:System.Xml.XmlException">The string value is not a valid token.</exception>
// Token: 0x06000B30 RID: 2864 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B30")]
[Address(RVA = "0x689240", Offset = "0x688240", VA = "0x180689240")]
public static string VerifyTOKEN(string token)
{
return null;
}
// Token: 0x06000B31 RID: 2865 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B31")]
[Address(RVA = "0x688940", Offset = "0x687940", VA = "0x180688940")]
internal static Exception TryVerifyTOKEN(string token)
{
return null;
}
// Token: 0x06000B32 RID: 2866 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B32")]
[Address(RVA = "0x688590", Offset = "0x687590", VA = "0x180688590")]
internal static Exception TryVerifyNMTOKEN(string name)
{
return null;
}
// Token: 0x06000B33 RID: 2867 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B33")]
[Address(RVA = "0x688880", Offset = "0x687880", VA = "0x180688880")]
internal static Exception TryVerifyNormalizedString(string str)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Boolean" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Boolean" />, that is, "true" or "false".</returns>
// Token: 0x06000B34 RID: 2868 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B34")]
[Address(RVA = "0x686020", Offset = "0x685020", VA = "0x180686020")]
public static string ToString(bool value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Char" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Char" />.</returns>
// Token: 0x06000B35 RID: 2869 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B35")]
[Address(RVA = "0x685AF0", Offset = "0x684AF0", VA = "0x180685AF0")]
public static string ToString(char value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Decimal" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Decimal" />.</returns>
// Token: 0x06000B36 RID: 2870 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B36")]
[Address(RVA = "0x686100", Offset = "0x685100", VA = "0x180686100")]
public static string ToString(decimal value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.SByte" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="SByte" />.</returns>
// Token: 0x06000B37 RID: 2871 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B37")]
[Address(RVA = "0x6861A0", Offset = "0x6851A0", VA = "0x1806861A0")]
[CLSCompliant(false)]
public static string ToString(sbyte value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Int16" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Int16" />.</returns>
// Token: 0x06000B38 RID: 2872 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B38")]
[Address(RVA = "0x686130", Offset = "0x685130", VA = "0x180686130")]
public static string ToString(short value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Int32" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Int32" />.</returns>
// Token: 0x06000B39 RID: 2873 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B39")]
[Address(RVA = "0x685EF0", Offset = "0x684EF0", VA = "0x180685EF0")]
public static string ToString(int value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Int64" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Int64" />.</returns>
// Token: 0x06000B3A RID: 2874 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B3A")]
[Address(RVA = "0x686060", Offset = "0x685060", VA = "0x180686060")]
public static string ToString(long value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Byte" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Byte" />.</returns>
// Token: 0x06000B3B RID: 2875 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B3B")]
[Address(RVA = "0x685EC0", Offset = "0x684EC0", VA = "0x180685EC0")]
public static string ToString(byte value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.UInt16" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="UInt16" />.</returns>
// Token: 0x06000B3C RID: 2876 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B3C")]
[Address(RVA = "0x685E80", Offset = "0x684E80", VA = "0x180685E80")]
[CLSCompliant(false)]
public static string ToString(ushort value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.UInt32" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="UInt32" />.</returns>
// Token: 0x06000B3D RID: 2877 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B3D")]
[Address(RVA = "0x685F20", Offset = "0x684F20", VA = "0x180685F20")]
[CLSCompliant(false)]
public static string ToString(uint value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.UInt64" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="UInt64" />.</returns>
// Token: 0x06000B3E RID: 2878 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B3E")]
[Address(RVA = "0x685AC0", Offset = "0x684AC0", VA = "0x180685AC0")]
[CLSCompliant(false)]
public static string ToString(ulong value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Single" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Single" />.</returns>
// Token: 0x06000B3F RID: 2879 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B3F")]
[Address(RVA = "0x685F50", Offset = "0x684F50", VA = "0x180685F50")]
public static string ToString(float value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Double" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Double" />.</returns>
// Token: 0x06000B40 RID: 2880 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B40")]
[Address(RVA = "0x685B80", Offset = "0x684B80", VA = "0x180685B80")]
public static string ToString(double value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="TimeSpan" />.</returns>
// Token: 0x06000B41 RID: 2881 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B41")]
[Address(RVA = "0x686090", Offset = "0x685090", VA = "0x180686090")]
public static string ToString(TimeSpan value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <param name="format">The format structure that defines how to display the converted string. Valid formats include "yyyy-MM-ddTHH:mm:sszzzzzz" and its subsets. </param>
/// <returns>A string representation of the <see langword="DateTime" /> in the specified format.</returns>
// Token: 0x06000B42 RID: 2882 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B42")]
[Address(RVA = "0x685B10", Offset = "0x684B10", VA = "0x180685B10")]
public static string ToString(DateTime value, string format)
{
return null;
}
/// <summary>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" /> using the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> specified.</summary>
/// <param name="value">The <see cref="T:System.DateTime" /> value to convert.</param>
/// <param name="dateTimeOption">One of the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> values that specify how to treat the <see cref="T:System.DateTime" /> value.</param>
/// <returns>A <see cref="T:System.String" /> equivalent of the <see cref="T:System.DateTime" />.</returns>
/// <exception cref="T:System.ArgumentException">The <paramref name="dateTimeOption" /> value is not valid.</exception>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> or <paramref name="dateTimeOption" /> value is <see langword="null" />.</exception>
// Token: 0x06000B43 RID: 2883 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B43")]
[Address(RVA = "0x685CB0", Offset = "0x684CB0", VA = "0x180685CB0")]
public static string ToString(DateTime value, XmlDateTimeSerializationMode dateTimeOption)
{
return null;
}
/// <summary>Converts the supplied <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The <see cref="T:System.DateTimeOffset" /> to be converted.</param>
/// <returns>A <see cref="T:System.String" /> representation of the supplied <see cref="T:System.DateTimeOffset" />.</returns>
// Token: 0x06000B44 RID: 2884 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B44")]
[Address(RVA = "0x686160", Offset = "0x685160", VA = "0x180686160")]
public static string ToString(DateTimeOffset value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.Guid" /> to a <see cref="T:System.String" />.</summary>
/// <param name="value">The value to convert. </param>
/// <returns>A string representation of the <see langword="Guid" />.</returns>
// Token: 0x06000B45 RID: 2885 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B45")]
[Address(RVA = "0x685EB0", Offset = "0x684EB0", VA = "0x180685EB0")]
public static string ToString(Guid value)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Boolean" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="Boolean" /> value, that is, <see langword="true" /> or <see langword="false" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> does not represent a <see langword="Boolean" /> value. </exception>
// Token: 0x06000B46 RID: 2886 RVA: 0x000062B8 File Offset: 0x000044B8
[Token(Token = "0x6000B46")]
[Address(RVA = "0x684EC0", Offset = "0x683EC0", VA = "0x180684EC0")]
public static bool ToBoolean(string s)
{
return default(bool);
}
// Token: 0x06000B47 RID: 2887 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B47")]
[Address(RVA = "0x686970", Offset = "0x685970", VA = "0x180686970")]
internal static Exception TryToBoolean(string s, out bool result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Char" /> equivalent.</summary>
/// <param name="s">The string containing a single character to convert. </param>
/// <returns>A <see langword="Char" /> representing the single character.</returns>
/// <exception cref="T:System.ArgumentNullException">The value of the <paramref name="s" /> parameter is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">The <paramref name="s" /> parameter contains more than one character. </exception>
// Token: 0x06000B48 RID: 2888 RVA: 0x000062D0 File Offset: 0x000044D0
[Token(Token = "0x6000B48")]
[Address(RVA = "0x685060", Offset = "0x684060", VA = "0x180685060")]
public static char ToChar(string s)
{
return '\0';
}
// Token: 0x06000B49 RID: 2889 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B49")]
[Address(RVA = "0x686C70", Offset = "0x685C70", VA = "0x180686C70")]
internal static Exception TryToChar(string s, out char result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Decimal" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="Decimal" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception>
// Token: 0x06000B4A RID: 2890 RVA: 0x000062E8 File Offset: 0x000044E8
[Token(Token = "0x6000B4A")]
[Address(RVA = "0x685660", Offset = "0x684660", VA = "0x180685660")]
public static decimal ToDecimal(string s)
{
return 0m;
}
// Token: 0x06000B4B RID: 2891 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B4B")]
[Address(RVA = "0x686DE0", Offset = "0x685DE0", VA = "0x180686DE0")]
internal static Exception TryToDecimal(string s, out decimal result)
{
return null;
}
// Token: 0x06000B4C RID: 2892 RVA: 0x00006300 File Offset: 0x00004500
[Token(Token = "0x6000B4C")]
[Address(RVA = "0x6858F0", Offset = "0x6848F0", VA = "0x1806858F0")]
internal static decimal ToInteger(string s)
{
return 0m;
}
// Token: 0x06000B4D RID: 2893 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B4D")]
[Address(RVA = "0x687800", Offset = "0x686800", VA = "0x180687800")]
internal static Exception TryToInteger(string s, out decimal result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.SByte" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>An <see langword="SByte" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception>
// Token: 0x06000B4E RID: 2894 RVA: 0x00006318 File Offset: 0x00004518
[Token(Token = "0x6000B4E")]
[Address(RVA = "0x685980", Offset = "0x684980", VA = "0x180685980")]
[CLSCompliant(false)]
public static sbyte ToSByte(string s)
{
return 0;
}
// Token: 0x06000B4F RID: 2895 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B4F")]
[Address(RVA = "0x687990", Offset = "0x686990", VA = "0x180687990")]
internal static Exception TryToSByte(string s, out sbyte result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int16" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>An <see langword="Int16" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception>
// Token: 0x06000B50 RID: 2896 RVA: 0x00006330 File Offset: 0x00004530
[Token(Token = "0x6000B50")]
[Address(RVA = "0x685860", Offset = "0x684860", VA = "0x180685860")]
public static short ToInt16(string s)
{
return 0;
}
// Token: 0x06000B51 RID: 2897 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B51")]
[Address(RVA = "0x6873E0", Offset = "0x6863E0", VA = "0x1806873E0")]
internal static Exception TryToInt16(string s, out short result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int32" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>An <see langword="Int32" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception>
// Token: 0x06000B52 RID: 2898 RVA: 0x00006348 File Offset: 0x00004548
[Token(Token = "0x6000B52")]
[Address(RVA = "0x685890", Offset = "0x684890", VA = "0x180685890")]
public static int ToInt32(string s)
{
return 0;
}
// Token: 0x06000B53 RID: 2899 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B53")]
[Address(RVA = "0x687540", Offset = "0x686540", VA = "0x180687540")]
internal static Exception TryToInt32(string s, out int result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int64" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>An <see langword="Int64" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception>
// Token: 0x06000B54 RID: 2900 RVA: 0x00006360 File Offset: 0x00004560
[Token(Token = "0x6000B54")]
[Address(RVA = "0x6858C0", Offset = "0x6848C0", VA = "0x1806858C0")]
public static long ToInt64(string s)
{
return 0L;
}
// Token: 0x06000B55 RID: 2901 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B55")]
[Address(RVA = "0x6876A0", Offset = "0x6866A0", VA = "0x1806876A0")]
internal static Exception TryToInt64(string s, out long result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Byte" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="Byte" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception>
// Token: 0x06000B56 RID: 2902 RVA: 0x00006378 File Offset: 0x00004578
[Token(Token = "0x6000B56")]
[Address(RVA = "0x685030", Offset = "0x684030", VA = "0x180685030")]
public static byte ToByte(string s)
{
return 0;
}
// Token: 0x06000B57 RID: 2903 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B57")]
[Address(RVA = "0x686B10", Offset = "0x685B10", VA = "0x180686B10")]
internal static Exception TryToByte(string s, out byte result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt16" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="UInt16" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
// Token: 0x06000B58 RID: 2904 RVA: 0x00006390 File Offset: 0x00004590
[Token(Token = "0x6000B58")]
[Address(RVA = "0x686330", Offset = "0x685330", VA = "0x180686330")]
[CLSCompliant(false)]
public static ushort ToUInt16(string s)
{
return 0;
}
// Token: 0x06000B59 RID: 2905 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B59")]
[Address(RVA = "0x687DE0", Offset = "0x686DE0", VA = "0x180687DE0")]
internal static Exception TryToUInt16(string s, out ushort result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt32" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="UInt32" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
// Token: 0x06000B5A RID: 2906 RVA: 0x000063A8 File Offset: 0x000045A8
[Token(Token = "0x6000B5A")]
[Address(RVA = "0x686360", Offset = "0x685360", VA = "0x180686360")]
[CLSCompliant(false)]
public static uint ToUInt32(string s)
{
return 0U;
}
// Token: 0x06000B5B RID: 2907 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B5B")]
[Address(RVA = "0x687F40", Offset = "0x686F40", VA = "0x180687F40")]
internal static Exception TryToUInt32(string s, out uint result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt64" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="UInt64" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception>
// Token: 0x06000B5C RID: 2908 RVA: 0x000063C0 File Offset: 0x000045C0
[Token(Token = "0x6000B5C")]
[Address(RVA = "0x686390", Offset = "0x685390", VA = "0x180686390")]
[CLSCompliant(false)]
public static ulong ToUInt64(string s)
{
return 0UL;
}
// Token: 0x06000B5D RID: 2909 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B5D")]
[Address(RVA = "0x6880A0", Offset = "0x6870A0", VA = "0x1806880A0")]
internal static Exception TryToUInt64(string s, out ulong result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Single" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="Single" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception>
// Token: 0x06000B5E RID: 2910 RVA: 0x000063D8 File Offset: 0x000045D8
[Token(Token = "0x6000B5E")]
[Address(RVA = "0x6859B0", Offset = "0x6849B0", VA = "0x1806859B0")]
public static float ToSingle(string s)
{
return 0f;
}
// Token: 0x06000B5F RID: 2911 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B5F")]
[Address(RVA = "0x687AF0", Offset = "0x686AF0", VA = "0x180687AF0")]
internal static Exception TryToSingle(string s, out float result)
{
return null;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Double" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="Double" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in the correct format. </exception>
/// <exception cref="T:System.OverflowException">
/// <paramref name="s" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception>
// Token: 0x06000B60 RID: 2912 RVA: 0x000063F0 File Offset: 0x000045F0
[Token(Token = "0x6000B60")]
[Address(RVA = "0x6856F0", Offset = "0x6846F0", VA = "0x1806856F0")]
public static double ToDouble(string s)
{
return 0.0;
}
// Token: 0x06000B61 RID: 2913 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B61")]
[Address(RVA = "0x686F70", Offset = "0x685F70", VA = "0x180686F70")]
internal static Exception TryToDouble(string s, out double result)
{
return null;
}
// Token: 0x06000B62 RID: 2914 RVA: 0x00006408 File Offset: 0x00004608
[Token(Token = "0x6000B62")]
[Address(RVA = "0x6865F0", Offset = "0x6855F0", VA = "0x1806865F0")]
internal static double ToXPathDouble(object o)
{
return 0.0;
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" /> equivalent.</summary>
/// <param name="s">The string to convert. The string format must conform to the W3C XML Schema Part 2: Datatypes recommendation for duration.</param>
/// <returns>A <see langword="TimeSpan" /> equivalent of the string.</returns>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is not in correct format to represent a <see langword="TimeSpan" /> value. </exception>
// Token: 0x06000B63 RID: 2915 RVA: 0x00006420 File Offset: 0x00004620
[Token(Token = "0x6000B63")]
[Address(RVA = "0x6861D0", Offset = "0x6851D0", VA = "0x1806861D0")]
public static TimeSpan ToTimeSpan(string s)
{
return default(TimeSpan);
}
// Token: 0x06000B64 RID: 2916 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B64")]
[Address(RVA = "0x687D20", Offset = "0x686D20", VA = "0x180687D20")]
internal static Exception TryToTimeSpan(string s, out TimeSpan result)
{
return null;
}
// Token: 0x17000313 RID: 787
// (get) Token: 0x06000B65 RID: 2917 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000313")]
private static string[] AllDateTimeFormats
{
[Token(Token = "0x6000B65")]
[Address(RVA = "0x689470", Offset = "0x688470", VA = "0x180689470")]
get
{
return null;
}
}
// Token: 0x06000B66 RID: 2918 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000B66")]
[Address(RVA = "0x682250", Offset = "0x681250", VA = "0x180682250")]
private static void CreateAllDateTimeFormats()
{
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="DateTime" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is an empty string or is not in the correct format. </exception>
// Token: 0x06000B67 RID: 2919 RVA: 0x00006438 File Offset: 0x00004638
[Token(Token = "0x6000B67")]
[Address(RVA = "0x685410", Offset = "0x684410", VA = "0x180685410")]
[Obsolete]
public static DateTime ToDateTime(string s)
{
return default(DateTime);
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <param name="formats">An array containing the format structures to apply to the converted <see langword="DateTime" />. Valid formats include "yyyy-MM-ddTHH:mm:sszzzzzz" and its subsets. </param>
/// <returns>A <see langword="DateTime" /> equivalent of the string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> or an element of <paramref name="formats" /> is String.Empty -or-
/// <paramref name="s" /> does not contain a date and time that corresponds to any of the elements of <paramref name="formats" />. </exception>
// Token: 0x06000B68 RID: 2920 RVA: 0x00006450 File Offset: 0x00004650
[Token(Token = "0x6000B68")]
[Address(RVA = "0x6855B0", Offset = "0x6845B0", VA = "0x1806855B0")]
public static DateTime ToDateTime(string s, string[] formats)
{
return default(DateTime);
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> using the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> specified</summary>
/// <param name="s">The <see cref="T:System.String" /> value to convert.</param>
/// <param name="dateTimeOption">One of the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> values that specify whether the date should be converted to local time or preserved as Coordinated Universal Time (UTC), if it is a UTC date.</param>
/// <returns>A <see cref="T:System.DateTime" /> equivalent of the <see cref="T:System.String" />.</returns>
/// <exception cref="T:System.NullReferenceException">
/// <paramref name="s" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="dateTimeOption" /> value is <see langword="null" />.</exception>
/// <exception cref="T:System.FormatException">
/// <paramref name="s" /> is an empty string or is not in a valid format.</exception>
// Token: 0x06000B69 RID: 2921 RVA: 0x00006468 File Offset: 0x00004668
[Token(Token = "0x6000B69")]
[Address(RVA = "0x685200", Offset = "0x684200", VA = "0x180685200")]
public static DateTime ToDateTime(string s, XmlDateTimeSerializationMode dateTimeOption)
{
return default(DateTime);
}
/// <summary>Converts the supplied <see cref="T:System.String" /> to a <see cref="T:System.DateTimeOffset" /> equivalent.</summary>
/// <param name="s">The string to convert.
/// Note   The string must conform to a subset of the W3C Recommendation for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.</param>
/// <returns>The <see cref="T:System.DateTimeOffset" /> equivalent of the supplied string.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="s" /> is <see langword="null" />. </exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">The argument passed to this method is outside the range of allowable values. For information about allowable values, see <see cref="T:System.DateTimeOffset" />.</exception>
/// <exception cref="T:System.FormatException">The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.</exception>
// Token: 0x06000B6A RID: 2922 RVA: 0x00006480 File Offset: 0x00004680
[Token(Token = "0x6000B6A")]
[Address(RVA = "0x685120", Offset = "0x684120", VA = "0x180685120")]
public static DateTimeOffset ToDateTimeOffset(string s)
{
return default(DateTimeOffset);
}
/// <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Guid" /> equivalent.</summary>
/// <param name="s">The string to convert. </param>
/// <returns>A <see langword="Guid" /> equivalent of the string.</returns>
// Token: 0x06000B6B RID: 2923 RVA: 0x00006498 File Offset: 0x00004698
[Token(Token = "0x6000B6B")]
[Address(RVA = "0x685830", Offset = "0x684830", VA = "0x180685830")]
public static Guid ToGuid(string s)
{
return default(Guid);
}
// Token: 0x06000B6C RID: 2924 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B6C")]
[Address(RVA = "0x6871E0", Offset = "0x6861E0", VA = "0x1806871E0")]
internal static Exception TryToGuid(string s, out Guid result)
{
return null;
}
// Token: 0x06000B6D RID: 2925 RVA: 0x000064B0 File Offset: 0x000046B0
[Token(Token = "0x6000B6D")]
[Address(RVA = "0x684D60", Offset = "0x683D60", VA = "0x180684D60")]
private static DateTime SwitchToLocalTime(DateTime value)
{
return default(DateTime);
}
// Token: 0x06000B6E RID: 2926 RVA: 0x000064C8 File Offset: 0x000046C8
[Token(Token = "0x6000B6E")]
[Address(RVA = "0x684DD0", Offset = "0x683DD0", VA = "0x180684DD0")]
private static DateTime SwitchToUtcTime(DateTime value)
{
return default(DateTime);
}
// Token: 0x06000B6F RID: 2927 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B6F")]
[Address(RVA = "0x6863C0", Offset = "0x6853C0", VA = "0x1806863C0")]
internal static Uri ToUri(string s)
{
return null;
}
// Token: 0x06000B70 RID: 2928 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B70")]
[Address(RVA = "0x688200", Offset = "0x687200", VA = "0x180688200")]
internal static Exception TryToUri(string s, out Uri result)
{
return null;
}
// Token: 0x06000B71 RID: 2929 RVA: 0x000064E0 File Offset: 0x000046E0
[Token(Token = "0x6000B71")]
[Address(RVA = "0x684CC0", Offset = "0x683CC0", VA = "0x180684CC0")]
internal static bool StrEqual(char[] chars, int strPos1, int strLen1, string str2)
{
return default(bool);
}
// Token: 0x06000B72 RID: 2930 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B72")]
[Address(RVA = "0x6868F0", Offset = "0x6858F0", VA = "0x1806868F0")]
internal static string TrimString(string value)
{
return null;
}
// Token: 0x06000B73 RID: 2931 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B73")]
[Address(RVA = "0x686870", Offset = "0x685870", VA = "0x180686870")]
internal static string TrimStringStart(string value)
{
return null;
}
// Token: 0x06000B74 RID: 2932 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B74")]
[Address(RVA = "0x6867F0", Offset = "0x6857F0", VA = "0x1806867F0")]
internal static string TrimStringEnd(string value)
{
return null;
}
// Token: 0x06000B75 RID: 2933 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B75")]
[Address(RVA = "0x684C40", Offset = "0x683C40", VA = "0x180684C40")]
internal static string[] SplitString(string value)
{
return null;
}
// Token: 0x06000B76 RID: 2934 RVA: 0x000064F8 File Offset: 0x000046F8
[Token(Token = "0x6000B76")]
[Address(RVA = "0x684BC0", Offset = "0x683BC0", VA = "0x180684BC0")]
internal static bool IsNegativeZero(double value)
{
return default(bool);
}
// Token: 0x06000B77 RID: 2935 RVA: 0x00006510 File Offset: 0x00004710
[Token(Token = "0x6000B77")]
[Address(RVA = "0x6841A0", Offset = "0x6831A0", VA = "0x1806841A0")]
private static long DoubleToInt64Bits(double value)
{
return 0L;
}
// Token: 0x06000B78 RID: 2936 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000B78")]
[Address(RVA = "0x688A40", Offset = "0x687A40", VA = "0x180688A40")]
internal static void VerifyCharData(string data, ExceptionType invCharExceptionType, ExceptionType invSurrogateExceptionType)
{
}
// Token: 0x06000B79 RID: 2937 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B79")]
[Address(RVA = "0x682B90", Offset = "0x681B90", VA = "0x180682B90")]
internal static Exception CreateException(string res, ExceptionType exceptionType, int lineNo, int linePos)
{
return null;
}
// Token: 0x06000B7A RID: 2938 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B7A")]
[Address(RVA = "0x682C60", Offset = "0x681C60", VA = "0x180682C60")]
internal static Exception CreateException(string res, string arg, ExceptionType exceptionType, int lineNo, int linePos)
{
return null;
}
// Token: 0x06000B7B RID: 2939 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B7B")]
[Address(RVA = "0x682E50", Offset = "0x681E50", VA = "0x180682E50")]
internal static Exception CreateException(string res, string[] args, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B7C RID: 2940 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B7C")]
[Address(RVA = "0x682D90", Offset = "0x681D90", VA = "0x180682D90")]
internal static Exception CreateException(string res, string[] args, ExceptionType exceptionType, int lineNo, int linePos)
{
return null;
}
// Token: 0x06000B7D RID: 2941 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B7D")]
[Address(RVA = "0x6836B0", Offset = "0x6826B0", VA = "0x1806836B0")]
internal static Exception CreateInvalidSurrogatePairException(char low, char hi)
{
return null;
}
// Token: 0x06000B7E RID: 2942 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B7E")]
[Address(RVA = "0x683760", Offset = "0x682760", VA = "0x180683760")]
internal static Exception CreateInvalidSurrogatePairException(char low, char hi, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B7F RID: 2943 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B7F")]
[Address(RVA = "0x6837E0", Offset = "0x6827E0", VA = "0x1806837E0")]
internal static Exception CreateInvalidSurrogatePairException(char low, char hi, ExceptionType exceptionType, int lineNo, int linePos)
{
return null;
}
// Token: 0x06000B80 RID: 2944 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B80")]
[Address(RVA = "0x683340", Offset = "0x682340", VA = "0x180683340")]
internal static Exception CreateInvalidHighSurrogateCharException(char hi)
{
return null;
}
// Token: 0x06000B81 RID: 2945 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B81")]
[Address(RVA = "0x683160", Offset = "0x682160", VA = "0x180683160")]
internal static Exception CreateInvalidHighSurrogateCharException(char hi, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B82 RID: 2946 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B82")]
[Address(RVA = "0x6833A0", Offset = "0x6823A0", VA = "0x1806833A0")]
internal static Exception CreateInvalidHighSurrogateCharException(char hi, ExceptionType exceptionType, int lineNo, int linePos)
{
return null;
}
// Token: 0x06000B83 RID: 2947 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B83")]
[Address(RVA = "0x6830C0", Offset = "0x6820C0", VA = "0x1806830C0")]
internal static Exception CreateInvalidCharException(string data, int invCharPos, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B84 RID: 2948 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B84")]
[Address(RVA = "0x682ED0", Offset = "0x681ED0", VA = "0x180682ED0")]
internal static Exception CreateInvalidCharException(char invChar, char nextChar)
{
return null;
}
// Token: 0x06000B85 RID: 2949 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B85")]
[Address(RVA = "0x682FE0", Offset = "0x681FE0", VA = "0x180682FE0")]
internal static Exception CreateInvalidCharException(char invChar, char nextChar, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B86 RID: 2950 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B86")]
[Address(RVA = "0x683600", Offset = "0x682600", VA = "0x180683600")]
internal static Exception CreateInvalidNameCharException(string name, int index, ExceptionType exceptionType)
{
return null;
}
// Token: 0x06000B87 RID: 2951 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B87")]
[Address(RVA = "0x683550", Offset = "0x682550", VA = "0x180683550")]
internal static ArgumentException CreateInvalidNameArgumentException(string name, string argumentName)
{
return null;
}
// Token: 0x0400060A RID: 1546
[Token(Token = "0x400060A")]
private static XmlCharType xmlCharType;
// Token: 0x0400060B RID: 1547
[Token(Token = "0x400060B")]
internal static char[] crt;
// Token: 0x0400060C RID: 1548
[Token(Token = "0x400060C")]
private static readonly int c_EncodedCharLength;
// Token: 0x0400060D RID: 1549
[Token(Token = "0x400060D")]
private static Regex c_EncodeCharPattern;
// Token: 0x0400060E RID: 1550
[Token(Token = "0x400060E")]
private static Regex c_DecodeCharPattern;
// Token: 0x0400060F RID: 1551
[Token(Token = "0x400060F")]
private static string[] s_allDateTimeFormats;
// Token: 0x04000610 RID: 1552
[Token(Token = "0x4000610")]
internal static readonly char[] WhitespaceChars;
}
}