605 lines
25 KiB
C#
605 lines
25 KiB
C#
using System;
|
|
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: 0x02000068 RID: 104
|
|
[Token(Token = "0x2000068")]
|
|
public class XmlConvert
|
|
{
|
|
// Token: 0x06000484 RID: 1156 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000484")]
|
|
[Address(RVA = "0x462850", Offset = "0x461650", VA = "0x180462850")]
|
|
internal static byte[] FromBinHexString(string s, bool allowOddCount)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000485 RID: 1157 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000485")]
|
|
[Address(RVA = "0x462B70", Offset = "0x461970", VA = "0x180462B70")]
|
|
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: 0x06000486 RID: 1158 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000486")]
|
|
[Address(RVA = "0x465C20", Offset = "0x464A20", VA = "0x180465C20")]
|
|
public static string VerifyName(string name)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000487 RID: 1159 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000487")]
|
|
[Address(RVA = "0x465910", Offset = "0x464710", VA = "0x180465910")]
|
|
internal static Exception TryVerifyName(string name)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000488 RID: 1160 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000488")]
|
|
[Address(RVA = "0x465630", Offset = "0x464430", VA = "0x180465630")]
|
|
internal static Exception TryVerifyNCName(string name)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000489 RID: 1161 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000489")]
|
|
[Address(RVA = "0x465B20", Offset = "0x464920", VA = "0x180465B20")]
|
|
internal static Exception TryVerifyTOKEN(string token)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600048A RID: 1162 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600048A")]
|
|
[Address(RVA = "0x465720", Offset = "0x464520", VA = "0x180465720")]
|
|
internal static Exception TryVerifyNMTOKEN(string name)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600048B RID: 1163 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600048B")]
|
|
[Address(RVA = "0x465A60", Offset = "0x464860", VA = "0x180465A60")]
|
|
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: 0x0600048C RID: 1164 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600048C")]
|
|
[Address(RVA = "0x463750", Offset = "0x462550", VA = "0x180463750")]
|
|
public static string ToString(bool 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: 0x0600048D RID: 1165 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600048D")]
|
|
[Address(RVA = "0x4637C0", Offset = "0x4625C0", VA = "0x1804637C0")]
|
|
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: 0x0600048E RID: 1166 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600048E")]
|
|
[Address(RVA = "0x463820", Offset = "0x462620", VA = "0x180463820")]
|
|
[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: 0x0600048F RID: 1167 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600048F")]
|
|
[Address(RVA = "0x4637F0", Offset = "0x4625F0", VA = "0x1804637F0")]
|
|
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: 0x06000490 RID: 1168 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000490")]
|
|
[Address(RVA = "0x463620", Offset = "0x462420", VA = "0x180463620")]
|
|
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: 0x06000491 RID: 1169 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000491")]
|
|
[Address(RVA = "0x463790", Offset = "0x462590", VA = "0x180463790")]
|
|
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: 0x06000492 RID: 1170 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000492")]
|
|
[Address(RVA = "0x4635F0", Offset = "0x4623F0", VA = "0x1804635F0")]
|
|
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: 0x06000493 RID: 1171 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000493")]
|
|
[Address(RVA = "0x4635C0", Offset = "0x4623C0", VA = "0x1804635C0")]
|
|
[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: 0x06000494 RID: 1172 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000494")]
|
|
[Address(RVA = "0x463650", Offset = "0x462450", VA = "0x180463650")]
|
|
[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: 0x06000495 RID: 1173 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000495")]
|
|
[Address(RVA = "0x463210", Offset = "0x462010", VA = "0x180463210")]
|
|
[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: 0x06000496 RID: 1174 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000496")]
|
|
[Address(RVA = "0x463680", Offset = "0x462480", VA = "0x180463680")]
|
|
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: 0x06000497 RID: 1175 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000497")]
|
|
[Address(RVA = "0x463240", Offset = "0x462040", VA = "0x180463240")]
|
|
public static string ToString(double value)
|
|
{
|
|
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: 0x06000498 RID: 1176 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000498")]
|
|
[Address(RVA = "0x463370", Offset = "0x462170", VA = "0x180463370")]
|
|
public static string ToString(DateTime value, XmlDateTimeSerializationMode dateTimeOption)
|
|
{
|
|
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: 0x06000499 RID: 1177 RVA: 0x00003D50 File Offset: 0x00001F50
|
|
[Token(Token = "0x6000499")]
|
|
[Address(RVA = "0x462BE0", Offset = "0x4619E0", VA = "0x180462BE0")]
|
|
public static bool ToBoolean(string s)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x0600049A RID: 1178 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600049A")]
|
|
[Address(RVA = "0x463B00", Offset = "0x462900", VA = "0x180463B00")]
|
|
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: 0x0600049B RID: 1179 RVA: 0x00003D68 File Offset: 0x00001F68
|
|
[Token(Token = "0x600049B")]
|
|
[Address(RVA = "0x462D50", Offset = "0x461B50", VA = "0x180462D50")]
|
|
public static char ToChar(string s)
|
|
{
|
|
return '\0';
|
|
}
|
|
|
|
// Token: 0x0600049C RID: 1180 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600049C")]
|
|
[Address(RVA = "0x463E00", Offset = "0x462C00", VA = "0x180463E00")]
|
|
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: 0x0600049D RID: 1181 RVA: 0x00003D80 File Offset: 0x00001F80
|
|
[Token(Token = "0x600049D")]
|
|
[Address(RVA = "0x462E10", Offset = "0x461C10", VA = "0x180462E10")]
|
|
public static decimal ToDecimal(string s)
|
|
{
|
|
return 0m;
|
|
}
|
|
|
|
// Token: 0x0600049E RID: 1182 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600049E")]
|
|
[Address(RVA = "0x463F70", Offset = "0x462D70", VA = "0x180463F70")]
|
|
internal static Exception TryToDecimal(string s, out decimal result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600049F RID: 1183 RVA: 0x00003D98 File Offset: 0x00001F98
|
|
[Token(Token = "0x600049F")]
|
|
[Address(RVA = "0x463070", Offset = "0x461E70", VA = "0x180463070")]
|
|
internal static decimal ToInteger(string s)
|
|
{
|
|
return 0m;
|
|
}
|
|
|
|
// Token: 0x060004A0 RID: 1184 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A0")]
|
|
[Address(RVA = "0x464990", Offset = "0x463790", VA = "0x180464990")]
|
|
internal static Exception TryToInteger(string s, out decimal result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004A1 RID: 1185 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A1")]
|
|
[Address(RVA = "0x464B20", Offset = "0x463920", VA = "0x180464B20")]
|
|
internal static Exception TryToSByte(string s, out sbyte result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004A2 RID: 1186 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A2")]
|
|
[Address(RVA = "0x464570", Offset = "0x463370", VA = "0x180464570")]
|
|
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: 0x060004A3 RID: 1187 RVA: 0x00003DB0 File Offset: 0x00001FB0
|
|
[Token(Token = "0x60004A3")]
|
|
[Address(RVA = "0x463010", Offset = "0x461E10", VA = "0x180463010")]
|
|
public static int ToInt32(string s)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x060004A4 RID: 1188 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A4")]
|
|
[Address(RVA = "0x4646D0", Offset = "0x4634D0", VA = "0x1804646D0")]
|
|
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: 0x060004A5 RID: 1189 RVA: 0x00003DC8 File Offset: 0x00001FC8
|
|
[Token(Token = "0x60004A5")]
|
|
[Address(RVA = "0x463040", Offset = "0x461E40", VA = "0x180463040")]
|
|
public static long ToInt64(string s)
|
|
{
|
|
return 0L;
|
|
}
|
|
|
|
// Token: 0x060004A6 RID: 1190 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A6")]
|
|
[Address(RVA = "0x464830", Offset = "0x463630", VA = "0x180464830")]
|
|
internal static Exception TryToInt64(string s, out long result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004A7 RID: 1191 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A7")]
|
|
[Address(RVA = "0x463CA0", Offset = "0x462AA0", VA = "0x180463CA0")]
|
|
internal static Exception TryToByte(string s, out byte result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004A8 RID: 1192 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A8")]
|
|
[Address(RVA = "0x464F70", Offset = "0x463D70", VA = "0x180464F70")]
|
|
internal static Exception TryToUInt16(string s, out ushort result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004A9 RID: 1193 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004A9")]
|
|
[Address(RVA = "0x4650D0", Offset = "0x463ED0", VA = "0x1804650D0")]
|
|
internal static Exception TryToUInt32(string s, out uint result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004AA RID: 1194 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004AA")]
|
|
[Address(RVA = "0x465230", Offset = "0x464030", VA = "0x180465230")]
|
|
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: 0x060004AB RID: 1195 RVA: 0x00003DE0 File Offset: 0x00001FE0
|
|
[Token(Token = "0x60004AB")]
|
|
[Address(RVA = "0x463100", Offset = "0x461F00", VA = "0x180463100")]
|
|
public static float ToSingle(string s)
|
|
{
|
|
return 0f;
|
|
}
|
|
|
|
// Token: 0x060004AC RID: 1196 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004AC")]
|
|
[Address(RVA = "0x464C80", Offset = "0x463A80", VA = "0x180464C80")]
|
|
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: 0x060004AD RID: 1197 RVA: 0x00003DF8 File Offset: 0x00001FF8
|
|
[Token(Token = "0x60004AD")]
|
|
[Address(RVA = "0x462EA0", Offset = "0x461CA0", VA = "0x180462EA0")]
|
|
public static double ToDouble(string s)
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
// Token: 0x060004AE RID: 1198 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004AE")]
|
|
[Address(RVA = "0x464100", Offset = "0x462F00", VA = "0x180464100")]
|
|
internal static Exception TryToDouble(string s, out double result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004AF RID: 1199 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004AF")]
|
|
[Address(RVA = "0x464EB0", Offset = "0x463CB0", VA = "0x180464EB0")]
|
|
internal static Exception TryToTimeSpan(string s, out TimeSpan result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <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: 0x060004B0 RID: 1200 RVA: 0x00003E10 File Offset: 0x00002010
|
|
[Token(Token = "0x60004B0")]
|
|
[Address(RVA = "0x462FE0", Offset = "0x461DE0", VA = "0x180462FE0")]
|
|
public static Guid ToGuid(string s)
|
|
{
|
|
return default(Guid);
|
|
}
|
|
|
|
// Token: 0x060004B1 RID: 1201 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004B1")]
|
|
[Address(RVA = "0x464370", Offset = "0x463170", VA = "0x180464370")]
|
|
internal static Exception TryToGuid(string s, out Guid result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004B2 RID: 1202 RVA: 0x00003E28 File Offset: 0x00002028
|
|
[Token(Token = "0x60004B2")]
|
|
[Address(RVA = "0x462A80", Offset = "0x461880", VA = "0x180462A80")]
|
|
private static DateTime SwitchToLocalTime(DateTime value)
|
|
{
|
|
return default(DateTime);
|
|
}
|
|
|
|
// Token: 0x060004B3 RID: 1203 RVA: 0x00003E40 File Offset: 0x00002040
|
|
[Token(Token = "0x60004B3")]
|
|
[Address(RVA = "0x462AF0", Offset = "0x4618F0", VA = "0x180462AF0")]
|
|
private static DateTime SwitchToUtcTime(DateTime value)
|
|
{
|
|
return default(DateTime);
|
|
}
|
|
|
|
// Token: 0x060004B4 RID: 1204 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004B4")]
|
|
[Address(RVA = "0x463850", Offset = "0x462650", VA = "0x180463850")]
|
|
internal static Uri ToUri(string s)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004B5 RID: 1205 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004B5")]
|
|
[Address(RVA = "0x465390", Offset = "0x464190", VA = "0x180465390")]
|
|
internal static Exception TryToUri(string s, out Uri result)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004B6 RID: 1206 RVA: 0x00003E58 File Offset: 0x00002058
|
|
[Token(Token = "0x60004B6")]
|
|
[Address(RVA = "0x4629E0", Offset = "0x4617E0", VA = "0x1804629E0")]
|
|
internal static bool StrEqual(char[] chars, int strPos1, int strLen1, string str2)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x060004B7 RID: 1207 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004B7")]
|
|
[Address(RVA = "0x463A80", Offset = "0x462880", VA = "0x180463A80")]
|
|
internal static string TrimString(string value)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004B8 RID: 1208 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004B8")]
|
|
[Address(RVA = "0x462960", Offset = "0x461760", VA = "0x180462960")]
|
|
internal static string[] SplitString(string value)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004B9 RID: 1209 RVA: 0x00003E70 File Offset: 0x00002070
|
|
[Token(Token = "0x60004B9")]
|
|
[Address(RVA = "0x4628E0", Offset = "0x4616E0", VA = "0x1804628E0")]
|
|
internal static bool IsNegativeZero(double value)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x060004BA RID: 1210 RVA: 0x00003E88 File Offset: 0x00002088
|
|
[Token(Token = "0x60004BA")]
|
|
[Address(RVA = "0x462840", Offset = "0x461640", VA = "0x180462840")]
|
|
private static long DoubleToInt64Bits(double value)
|
|
{
|
|
return 0L;
|
|
}
|
|
|
|
// Token: 0x060004BB RID: 1211 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004BB")]
|
|
[Address(RVA = "0x462560", Offset = "0x461360", VA = "0x180462560")]
|
|
internal static Exception CreateException(string res, string[] args, ExceptionType exceptionType, int lineNo, int linePos)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004BC RID: 1212 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004BC")]
|
|
[Address(RVA = "0x4626E0", Offset = "0x4614E0", VA = "0x1804626E0")]
|
|
internal static Exception CreateInvalidNameCharException(string name, int index, ExceptionType exceptionType)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060004BD RID: 1213 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004BD")]
|
|
[Address(RVA = "0x462630", Offset = "0x461430", VA = "0x180462630")]
|
|
internal static ArgumentException CreateInvalidNameArgumentException(string name, string argumentName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x04000243 RID: 579
|
|
[Token(Token = "0x4000243")]
|
|
private static XmlCharType xmlCharType;
|
|
|
|
// Token: 0x04000244 RID: 580
|
|
[Token(Token = "0x4000244")]
|
|
internal static char[] crt;
|
|
|
|
// Token: 0x04000245 RID: 581
|
|
[Token(Token = "0x4000245")]
|
|
private static readonly int c_EncodedCharLength;
|
|
|
|
// Token: 0x04000246 RID: 582
|
|
[Token(Token = "0x4000246")]
|
|
internal static readonly char[] WhitespaceChars;
|
|
}
|
|
}
|