443 lines
26 KiB
C#
443 lines
26 KiB
C#
using System;
|
|
using System.Xml;
|
|
using System.Xml.Schema;
|
|
using System.Xml.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data.SqlTypes
|
|
{
|
|
/// <summary>Represents a floating-point number within the range of -1.79E +308 through 1.79E +308 to be stored in or retrieved from a database.</summary>
|
|
// Token: 0x020000A7 RID: 167
|
|
[Token(Token = "0x20000A7")]
|
|
[XmlSchemaProvider("GetXsdType")]
|
|
[Serializable]
|
|
public struct SqlDouble : INullable, IComparable, IXmlSerializable
|
|
{
|
|
// Token: 0x060009C0 RID: 2496 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60009C0")]
|
|
[Address(RVA = "0xBCEFE0", Offset = "0xBCDFE0", VA = "0x180BCEFE0")]
|
|
private SqlDouble(bool fNull)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure using the supplied double parameter to set the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property.</summary>
|
|
/// <param name="value">A double whose value will be used for the new <see cref="T:System.Data.SqlTypes.SqlDouble" />.</param>
|
|
// Token: 0x060009C1 RID: 2497 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60009C1")]
|
|
[Address(RVA = "0xBCEFF0", Offset = "0xBCDFF0", VA = "0x180BCEFF0")]
|
|
public SqlDouble(double value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Returns a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlDouble" /> instance is null.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is null. Otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x17000187 RID: 391
|
|
// (get) Token: 0x060009C2 RID: 2498 RVA: 0x00005AEC File Offset: 0x00003CEC
|
|
[Token(Token = "0x17000187")]
|
|
public bool IsNull
|
|
{
|
|
[Token(Token = "0x60009C2")]
|
|
[Address(RVA = "0x8BD410", Offset = "0x8BC410", VA = "0x1808BD410", Slot = "4")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure. This property is read-only.</summary>
|
|
/// <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</returns>
|
|
// Token: 0x17000188 RID: 392
|
|
// (get) Token: 0x060009C3 RID: 2499 RVA: 0x00005B04 File Offset: 0x00003D04
|
|
[Token(Token = "0x17000188")]
|
|
public double Value
|
|
{
|
|
[Token(Token = "0x60009C3")]
|
|
[Address(RVA = "0xBCF0F0", Offset = "0xBCE0F0", VA = "0x180BCF0F0")]
|
|
get
|
|
{
|
|
return 0.0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Converts the supplied double value to a <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">The double value to convert.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> with the same value as the specified double parameter.</returns>
|
|
// Token: 0x060009C4 RID: 2500 RVA: 0x00005B1C File Offset: 0x00003D1C
|
|
[Token(Token = "0x60009C4")]
|
|
[Address(RVA = "0xBCFB50", Offset = "0xBCEB50", VA = "0x180BCFB50")]
|
|
public static implicit operator SqlDouble(double x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to a string.</summary>
|
|
/// <returns>A string representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
// Token: 0x060009C5 RID: 2501 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60009C5")]
|
|
[Address(RVA = "0xBCEEC0", Offset = "0xBCDEC0", VA = "0x180BCEEC0", Slot = "3")]
|
|
public override string ToString()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Returns the negated value of the specified <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure that contains the negated value.</returns>
|
|
// Token: 0x060009C6 RID: 2502 RVA: 0x00005B34 File Offset: 0x00003D34
|
|
[Token(Token = "0x60009C6")]
|
|
[Address(RVA = "0xBCFEB0", Offset = "0xBCEEB0", VA = "0x180BCFEB0")]
|
|
public static SqlDouble operator -(SqlDouble x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>The addition operator computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</returns>
|
|
// Token: 0x060009C7 RID: 2503 RVA: 0x00005B4C File Offset: 0x00003D4C
|
|
[Token(Token = "0x60009C7")]
|
|
[Address(RVA = "0xBCF150", Offset = "0xBCE150", VA = "0x180BCF150")]
|
|
public static SqlDouble operator +(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>The subtraction operator the second <see cref="T:System.Data.SqlTypes.SqlDouble" /> operand from the first.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>The results of the subtraction operation.</returns>
|
|
// Token: 0x060009C8 RID: 2504 RVA: 0x00005B64 File Offset: 0x00003D64
|
|
[Token(Token = "0x60009C8")]
|
|
[Address(RVA = "0xBCFD70", Offset = "0xBCED70", VA = "0x180BCFD70")]
|
|
public static SqlDouble operator -(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</returns>
|
|
// Token: 0x060009C9 RID: 2505 RVA: 0x00005B7C File Offset: 0x00003D7C
|
|
[Token(Token = "0x60009C9")]
|
|
[Address(RVA = "0xBCFC30", Offset = "0xBCEC30", VA = "0x180BCFC30")]
|
|
public static SqlDouble operator *(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlDouble" /> operand by the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure that contains the results of the division operation.</returns>
|
|
// Token: 0x060009CA RID: 2506 RVA: 0x00005B94 File Offset: 0x00003D94
|
|
[Token(Token = "0x60009CA")]
|
|
[Address(RVA = "0xBCF290", Offset = "0xBCE290", VA = "0x180BCF290")]
|
|
public static SqlDouble operator /(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlByte" /> is <see cref="F:System.Data.SqlTypes.SqlByte.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009CB RID: 2507 RVA: 0x00005BAC File Offset: 0x00003DAC
|
|
[Token(Token = "0x60009CB")]
|
|
[Address(RVA = "0xBCF670", Offset = "0xBCE670", VA = "0x180BCF670")]
|
|
public static implicit operator SqlDouble(SqlByte x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt16" /> is <see cref="F:System.Data.SqlTypes.SqlInt16.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009CC RID: 2508 RVA: 0x00005BC4 File Offset: 0x00003DC4
|
|
[Token(Token = "0x60009CC")]
|
|
[Address(RVA = "0xBCF730", Offset = "0xBCE730", VA = "0x180BCF730")]
|
|
public static implicit operator SqlDouble(SqlInt16 x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt32" /> is <see cref="F:System.Data.SqlTypes.SqlInt32.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009CD RID: 2509 RVA: 0x00005BDC File Offset: 0x00003DDC
|
|
[Token(Token = "0x60009CD")]
|
|
[Address(RVA = "0xBCF5A0", Offset = "0xBCE5A0", VA = "0x180BCF5A0")]
|
|
public static implicit operator SqlDouble(SqlInt32 x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt64" /> is <see cref="F:System.Data.SqlTypes.SqlInt64.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009CE RID: 2510 RVA: 0x00005BF4 File Offset: 0x00003DF4
|
|
[Token(Token = "0x60009CE")]
|
|
[Address(RVA = "0xBCF9B0", Offset = "0xBCE9B0", VA = "0x180BCF9B0")]
|
|
public static implicit operator SqlDouble(SqlInt64 x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlSingle" /> is <see cref="F:System.Data.SqlTypes.SqlSingle.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009CF RID: 2511 RVA: 0x00005C0C File Offset: 0x00003E0C
|
|
[Token(Token = "0x60009CF")]
|
|
[Address(RVA = "0xBCFA80", Offset = "0xBCEA80", VA = "0x180BCFA80")]
|
|
public static implicit operator SqlDouble(SqlSingle x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlMoney" /> is <see cref="F:System.Data.SqlTypes.SqlMoney.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009D0 RID: 2512 RVA: 0x00005C24 File Offset: 0x00003E24
|
|
[Token(Token = "0x60009D0")]
|
|
[Address(RVA = "0xBCF800", Offset = "0xBCE800", VA = "0x180BCF800")]
|
|
public static implicit operator SqlDouble(SqlMoney x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is <see cref="F:System.Data.SqlTypes.SqlDecimal.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
// Token: 0x060009D1 RID: 2513 RVA: 0x00005C3C File Offset: 0x00003E3C
|
|
[Token(Token = "0x60009D1")]
|
|
[Address(RVA = "0xBCF8B0", Offset = "0xBCE8B0", VA = "0x180BCF8B0")]
|
|
public static implicit operator SqlDouble(SqlDecimal x)
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Performs a logical comparison on two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether they are equal.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x060009D2 RID: 2514 RVA: 0x00005C54 File Offset: 0x00003E54
|
|
[Token(Token = "0x60009D2")]
|
|
[Address(RVA = "0xBCF420", Offset = "0xBCE420", VA = "0x180BCF420")]
|
|
public static SqlBoolean operator ==(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is less than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
// Token: 0x060009D3 RID: 2515 RVA: 0x00005C6C File Offset: 0x00003E6C
|
|
[Token(Token = "0x60009D3")]
|
|
[Address(RVA = "0xBCFB80", Offset = "0xBCEB80", VA = "0x180BCFB80")]
|
|
public static SqlBoolean operator <(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is greater than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
// Token: 0x060009D4 RID: 2516 RVA: 0x00005C84 File Offset: 0x00003E84
|
|
[Token(Token = "0x60009D4")]
|
|
[Address(RVA = "0xBCF4F0", Offset = "0xBCE4F0", VA = "0x180BCF4F0")]
|
|
public static SqlBoolean operator >(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is less than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
// Token: 0x060009D5 RID: 2517 RVA: 0x00005C9C File Offset: 0x00003E9C
|
|
[Token(Token = "0x60009D5")]
|
|
[Address(RVA = "0xBCEA60", Offset = "0xBCDA60", VA = "0x180BCEA60")]
|
|
public static SqlBoolean LessThan(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is greater than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
// Token: 0x060009D6 RID: 2518 RVA: 0x00005CB4 File Offset: 0x00003EB4
|
|
[Token(Token = "0x60009D6")]
|
|
[Address(RVA = "0xBCE970", Offset = "0xBCD970", VA = "0x180BCE970")]
|
|
public static SqlBoolean GreaterThan(SqlDouble x, SqlDouble y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <returns>A new <see langword="SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
// Token: 0x060009D7 RID: 2519 RVA: 0x00005CCC File Offset: 0x00003ECC
|
|
[Token(Token = "0x60009D7")]
|
|
[Address(RVA = "0xBCED40", Offset = "0xBCDD40", VA = "0x180BCED40")]
|
|
public SqlSingle ToSqlSingle()
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDouble" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
/// <param name="value">The <see cref="T:System.Object" /> to compare.</param>
|
|
/// <returns>A signed number that indicates the relative values of the instance and the object.
|
|
/// Return value
|
|
///
|
|
/// Condition
|
|
///
|
|
/// Less than zero
|
|
///
|
|
/// This instance is less than the object.
|
|
///
|
|
/// Zero
|
|
///
|
|
/// This instance is the same as the object.
|
|
///
|
|
/// Greater than zero
|
|
///
|
|
/// This instance is greater than the object
|
|
///
|
|
/// -or-
|
|
///
|
|
/// The object is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
// Token: 0x060009D8 RID: 2520 RVA: 0x00005CE4 File Offset: 0x00003EE4
|
|
[Token(Token = "0x60009D8")]
|
|
[Address(RVA = "0xBCE370", Offset = "0xBCD370", VA = "0x180BCE370", Slot = "5")]
|
|
public int CompareTo(object value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDouble" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> and returns an indication of their relative values.</summary>
|
|
/// <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> to be compared.</param>
|
|
/// <returns>A signed number that indicates the relative values of the instance and the object.
|
|
/// Return value
|
|
///
|
|
/// Condition
|
|
///
|
|
/// Less than zero
|
|
///
|
|
/// This instance is less than the object.
|
|
///
|
|
/// Zero
|
|
///
|
|
/// This instance is the same as the object.
|
|
///
|
|
/// Greater than zero
|
|
///
|
|
/// This instance is greater than the object
|
|
///
|
|
/// -or-
|
|
///
|
|
/// The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
|
|
// Token: 0x060009D9 RID: 2521 RVA: 0x00005CFC File Offset: 0x00003EFC
|
|
[Token(Token = "0x60009D9")]
|
|
[Address(RVA = "0xBCE480", Offset = "0xBCD480", VA = "0x180BCE480")]
|
|
public int CompareTo(SqlDouble value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> object.</summary>
|
|
/// <param name="value">The object to be compared.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x060009DA RID: 2522 RVA: 0x00005D14 File Offset: 0x00003F14
|
|
[Token(Token = "0x60009DA")]
|
|
[Address(RVA = "0xBCE6C0", Offset = "0xBCD6C0", VA = "0x180BCE6C0", Slot = "0")]
|
|
public override bool Equals(object value)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Returns the hash code for this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structre.</summary>
|
|
/// <returns>A 32-bit signed integer hash code.</returns>
|
|
// Token: 0x060009DB RID: 2523 RVA: 0x00005D2C File Offset: 0x00003F2C
|
|
[Token(Token = "0x60009DB")]
|
|
[Address(RVA = "0xBCE880", Offset = "0xBCD880", VA = "0x180BCE880", Slot = "2")]
|
|
public override int GetHashCode()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
/// <returns>An XML schema consumed by .NET Framework.</returns>
|
|
// Token: 0x060009DC RID: 2524 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60009DC")]
|
|
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "6")]
|
|
XmlSchema IXmlSerializable.GetSchema()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
/// <param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
|
|
// Token: 0x060009DD RID: 2525 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60009DD")]
|
|
[Address(RVA = "0xBCEB50", Offset = "0xBCDB50", VA = "0x180BCEB50", Slot = "7")]
|
|
void IXmlSerializable.ReadXml(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
/// <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
/// <param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
|
|
// Token: 0x060009DE RID: 2526 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60009DE")]
|
|
[Address(RVA = "0xBCEC60", Offset = "0xBCDC60", VA = "0x180BCEC60", Slot = "8")]
|
|
void IXmlSerializable.WriteXml(XmlWriter writer)
|
|
{
|
|
}
|
|
|
|
/// <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
/// <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
/// <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
|
|
// Token: 0x060009DF RID: 2527 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60009DF")]
|
|
[Address(RVA = "0xBCE910", Offset = "0xBCD910", VA = "0x180BCE910")]
|
|
public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x040003BB RID: 955
|
|
[FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x40003BB")]
|
|
private bool m_fNotNull;
|
|
|
|
// Token: 0x040003BC RID: 956
|
|
[FieldOffset(Offset = "0x8")]
|
|
[Token(Token = "0x40003BC")]
|
|
private double m_value;
|
|
|
|
/// <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
|
|
// Token: 0x040003BD RID: 957
|
|
[Token(Token = "0x40003BD")]
|
|
public static readonly SqlDouble Null;
|
|
|
|
/// <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
|
|
// Token: 0x040003BE RID: 958
|
|
[Token(Token = "0x40003BE")]
|
|
public static readonly SqlDouble Zero;
|
|
|
|
/// <summary>A constant representing the minimum possible value of <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
// Token: 0x040003BF RID: 959
|
|
[Token(Token = "0x40003BF")]
|
|
public static readonly SqlDouble MinValue;
|
|
|
|
/// <summary>A constant representing the maximum value for a <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
|
|
// Token: 0x040003C0 RID: 960
|
|
[Token(Token = "0x40003C0")]
|
|
public static readonly SqlDouble MaxValue;
|
|
}
|
|
}
|