455 lines
26 KiB
C#
455 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 -3.40E +38 through 3.40E +38 to be stored in or retrieved from a database.</summary>
|
|
// Token: 0x020000AD RID: 173
|
|
[Token(Token = "0x20000AD")]
|
|
[XmlSchemaProvider("GetXsdType")]
|
|
[Serializable]
|
|
public struct SqlSingle : INullable, IComparable, IXmlSerializable
|
|
{
|
|
// Token: 0x06000A7A RID: 2682 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000A7A")]
|
|
[Address(RVA = "0xBD2BB0", Offset = "0xBD1BB0", VA = "0x180BD2BB0")]
|
|
private SqlSingle(bool fNull)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
|
|
/// <param name="value">A floating point number which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
// Token: 0x06000A7B RID: 2683 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000A7B")]
|
|
[Address(RVA = "0xBD8530", Offset = "0xBD7530", VA = "0x180BD8530")]
|
|
public SqlSingle(float value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure using the supplied double parameter.</summary>
|
|
/// <param name="value">A double value which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
// Token: 0x06000A7C RID: 2684 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000A7C")]
|
|
[Address(RVA = "0xBD85D0", Offset = "0xBD75D0", VA = "0x180BD85D0")]
|
|
public SqlSingle(double value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure is null.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x17000193 RID: 403
|
|
// (get) Token: 0x06000A7D RID: 2685 RVA: 0x00006794 File Offset: 0x00004994
|
|
[Token(Token = "0x17000193")]
|
|
public bool IsNull
|
|
{
|
|
[Token(Token = "0x6000A7D")]
|
|
[Address(RVA = "0x8BD410", Offset = "0x8BC410", VA = "0x1808BD410", Slot = "4")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure. This property is read-only.</summary>
|
|
/// <returns>A floating point value in the range -3.40E+38 through 3.40E+38.</returns>
|
|
// Token: 0x17000194 RID: 404
|
|
// (get) Token: 0x06000A7E RID: 2686 RVA: 0x000067AC File Offset: 0x000049AC
|
|
[Token(Token = "0x17000194")]
|
|
public float Value
|
|
{
|
|
[Token(Token = "0x6000A7E")]
|
|
[Address(RVA = "0xBD85E0", Offset = "0xBD75E0", VA = "0x180BD85E0")]
|
|
get
|
|
{
|
|
return 0f;
|
|
}
|
|
}
|
|
|
|
/// <summary>Converts the specified floating point value to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The float value to be converted to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the value of the specified float.</returns>
|
|
// Token: 0x06000A7F RID: 2687 RVA: 0x000067C4 File Offset: 0x000049C4
|
|
[Token(Token = "0x6000A7F")]
|
|
[Address(RVA = "0xBD8EC0", Offset = "0xBD7EC0", VA = "0x180BD8EC0")]
|
|
public static implicit operator SqlSingle(float x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.String" />.</summary>
|
|
/// <returns>A <see langword="String" /> object representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
// Token: 0x06000A80 RID: 2688 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A80")]
|
|
[Address(RVA = "0xBD83F0", Offset = "0xBD73F0", VA = "0x180BD83F0", Slot = "3")]
|
|
public override string ToString()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Negates the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the negated value.</returns>
|
|
// Token: 0x06000A81 RID: 2689 RVA: 0x000067DC File Offset: 0x000049DC
|
|
[Token(Token = "0x6000A81")]
|
|
[Address(RVA = "0xBD95C0", Offset = "0xBD85C0", VA = "0x180BD95C0")]
|
|
public static SqlSingle operator -(SqlSingle x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</returns>
|
|
// Token: 0x06000A82 RID: 2690 RVA: 0x000067F4 File Offset: 0x000049F4
|
|
[Token(Token = "0x6000A82")]
|
|
[Address(RVA = "0xBD8640", Offset = "0xBD7640", VA = "0x180BD8640")]
|
|
public static SqlSingle operator +(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure from the first.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the results of the subtraction.</returns>
|
|
// Token: 0x06000A83 RID: 2691 RVA: 0x0000680C File Offset: 0x00004A0C
|
|
[Token(Token = "0x6000A83")]
|
|
[Address(RVA = "0xBD94C0", Offset = "0xBD84C0", VA = "0x180BD94C0")]
|
|
public static SqlSingle operator -(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Computes the product of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the product of the multiplication.</returns>
|
|
// Token: 0x06000A84 RID: 2692 RVA: 0x00006824 File Offset: 0x00004A24
|
|
[Token(Token = "0x6000A84")]
|
|
[Address(RVA = "0xBD93C0", Offset = "0xBD83C0", VA = "0x180BD93C0")]
|
|
public static SqlSingle operator *(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure by the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the results of the division.</returns>
|
|
// Token: 0x06000A85 RID: 2693 RVA: 0x0000683C File Offset: 0x00004A3C
|
|
[Token(Token = "0x6000A85")]
|
|
[Address(RVA = "0xBD8740", Offset = "0xBD7740", VA = "0x180BD8740")]
|
|
public static SqlSingle operator /(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>This implicit operator converts the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
// Token: 0x06000A86 RID: 2694 RVA: 0x00006854 File Offset: 0x00004A54
|
|
[Token(Token = "0x6000A86")]
|
|
[Address(RVA = "0xBD8B40", Offset = "0xBD7B40", VA = "0x180BD8B40")]
|
|
public static implicit operator SqlSingle(SqlByte x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
// Token: 0x06000A87 RID: 2695 RVA: 0x0000686C File Offset: 0x00004A6C
|
|
[Token(Token = "0x6000A87")]
|
|
[Address(RVA = "0xBD90D0", Offset = "0xBD80D0", VA = "0x180BD90D0")]
|
|
public static implicit operator SqlSingle(SqlInt16 x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
// Token: 0x06000A88 RID: 2696 RVA: 0x00006884 File Offset: 0x00004A84
|
|
[Token(Token = "0x6000A88")]
|
|
[Address(RVA = "0xBD8C70", Offset = "0xBD7C70", VA = "0x180BD8C70")]
|
|
public static implicit operator SqlSingle(SqlInt32 x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
// Token: 0x06000A89 RID: 2697 RVA: 0x0000689C File Offset: 0x00004A9C
|
|
[Token(Token = "0x6000A89")]
|
|
[Address(RVA = "0xBD8DA0", Offset = "0xBD7DA0", VA = "0x180BD8DA0")]
|
|
public static implicit operator SqlSingle(SqlInt64 x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
// Token: 0x06000A8A RID: 2698 RVA: 0x000068B4 File Offset: 0x00004AB4
|
|
[Token(Token = "0x6000A8A")]
|
|
[Address(RVA = "0xBD9200", Offset = "0xBD8200", VA = "0x180BD9200")]
|
|
public static implicit operator SqlSingle(SqlMoney x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
// Token: 0x06000A8B RID: 2699 RVA: 0x000068CC File Offset: 0x00004ACC
|
|
[Token(Token = "0x6000A8B")]
|
|
[Address(RVA = "0xBD8F70", Offset = "0xBD7F70", VA = "0x180BD8F70")]
|
|
public static implicit operator SqlSingle(SqlDecimal x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to be converted.</param>
|
|
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
// Token: 0x06000A8C RID: 2700 RVA: 0x000068E4 File Offset: 0x00004AE4
|
|
[Token(Token = "0x6000A8C")]
|
|
[Address(RVA = "0xBD8970", Offset = "0xBD7970", VA = "0x180BD8970")]
|
|
public static explicit operator SqlSingle(SqlDouble x)
|
|
{
|
|
return default(SqlSingle);
|
|
}
|
|
|
|
/// <summary>Performs a logical comparison of the two SqlSingle parameters to determine whether they are equal.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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: 0x06000A8D RID: 2701 RVA: 0x000068FC File Offset: 0x00004AFC
|
|
[Token(Token = "0x6000A8D")]
|
|
[Address(RVA = "0xBD88A0", Offset = "0xBD78A0", VA = "0x180BD88A0")]
|
|
public static SqlBoolean operator ==(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether the first is less than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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.SqlSingle" /> 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: 0x06000A8E RID: 2702 RVA: 0x00006914 File Offset: 0x00004B14
|
|
[Token(Token = "0x6000A8E")]
|
|
[Address(RVA = "0xBD9310", Offset = "0xBD8310", VA = "0x180BD9310")]
|
|
public static SqlBoolean operator <(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> operands to determine whether the first is greater than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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.SqlSingle" /> 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: 0x06000A8F RID: 2703 RVA: 0x0000692C File Offset: 0x00004B2C
|
|
[Token(Token = "0x6000A8F")]
|
|
[Address(RVA = "0xBD8A90", Offset = "0xBD7A90", VA = "0x180BD8A90")]
|
|
public static SqlBoolean operator >(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether the first is less than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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.SqlSingle" /> 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: 0x06000A90 RID: 2704 RVA: 0x00006944 File Offset: 0x00004B44
|
|
[Token(Token = "0x6000A90")]
|
|
[Address(RVA = "0xBD8080", Offset = "0xBD7080", VA = "0x180BD8080")]
|
|
public static SqlBoolean LessThan(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> operands to determine whether the first is greater than the second.</summary>
|
|
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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.SqlSingle" /> 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: 0x06000A91 RID: 2705 RVA: 0x0000695C File Offset: 0x00004B5C
|
|
[Token(Token = "0x6000A91")]
|
|
[Address(RVA = "0xBD8010", Offset = "0xBD7010", VA = "0x180BD8010")]
|
|
public static SqlBoolean GreaterThan(SqlSingle x, SqlSingle y)
|
|
{
|
|
return default(SqlBoolean);
|
|
}
|
|
|
|
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
/// <returns>A new <see langword="SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
// Token: 0x06000A92 RID: 2706 RVA: 0x00006974 File Offset: 0x00004B74
|
|
[Token(Token = "0x6000A92")]
|
|
[Address(RVA = "0xBD82E0", Offset = "0xBD72E0", VA = "0x180BD82E0")]
|
|
public SqlDouble ToSqlDouble()
|
|
{
|
|
return default(SqlDouble);
|
|
}
|
|
|
|
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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 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: 0x06000A93 RID: 2707 RVA: 0x0000698C File Offset: 0x00004B8C
|
|
[Token(Token = "0x6000A93")]
|
|
[Address(RVA = "0xBD7C50", Offset = "0xBD6C50", VA = "0x180BD7C50", Slot = "5")]
|
|
public int CompareTo(object value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> and returns an indication of their relative values.</summary>
|
|
/// <param name="value">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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: 0x06000A94 RID: 2708 RVA: 0x000069A4 File Offset: 0x00004BA4
|
|
[Token(Token = "0x6000A94")]
|
|
[Address(RVA = "0xBD7B00", Offset = "0xBD6B00", VA = "0x180BD7B00")]
|
|
public int CompareTo(SqlSingle value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> object.</summary>
|
|
/// <param name="value">The object to be compared.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> and the two are equal. Otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x06000A95 RID: 2709 RVA: 0x000069BC File Offset: 0x00004BBC
|
|
[Token(Token = "0x6000A95")]
|
|
[Address(RVA = "0xBD7D50", Offset = "0xBD6D50", VA = "0x180BD7D50", Slot = "0")]
|
|
public override bool Equals(object value)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Gets the hash code for this instance.</summary>
|
|
/// <returns>A 32-bit signed integer hash code.</returns>
|
|
// Token: 0x06000A96 RID: 2710 RVA: 0x000069D4 File Offset: 0x00004BD4
|
|
[Token(Token = "0x6000A96")]
|
|
[Address(RVA = "0xBD7F20", Offset = "0xBD6F20", VA = "0x180BD7F20", 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 <see langword="XmlSchema" />.</returns>
|
|
// Token: 0x06000A97 RID: 2711 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A97")]
|
|
[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">
|
|
/// <see langword="XmlReader" />
|
|
/// </param>
|
|
// Token: 0x06000A98 RID: 2712 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000A98")]
|
|
[Address(RVA = "0xBD80F0", Offset = "0xBD70F0", VA = "0x180BD80F0", 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">
|
|
/// <see langword="XmlWriter" />
|
|
/// </param>
|
|
// Token: 0x06000A99 RID: 2713 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000A99")]
|
|
[Address(RVA = "0xBD8200", Offset = "0xBD7200", VA = "0x180BD8200", 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">A <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: 0x06000A9A RID: 2714 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A9A")]
|
|
[Address(RVA = "0xBD7FB0", Offset = "0xBD6FB0", VA = "0x180BD7FB0")]
|
|
public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x040003E7 RID: 999
|
|
[FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x40003E7")]
|
|
private bool _fNotNull;
|
|
|
|
// Token: 0x040003E8 RID: 1000
|
|
[FieldOffset(Offset = "0x4")]
|
|
[Token(Token = "0x40003E8")]
|
|
private float _value;
|
|
|
|
/// <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
|
|
// Token: 0x040003E9 RID: 1001
|
|
[Token(Token = "0x40003E9")]
|
|
public static readonly SqlSingle Null;
|
|
|
|
/// <summary>Represents the zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
|
|
// Token: 0x040003EA RID: 1002
|
|
[Token(Token = "0x40003EA")]
|
|
public static readonly SqlSingle Zero;
|
|
|
|
/// <summary>Represents the minimum value that can be assigned to <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
|
|
// Token: 0x040003EB RID: 1003
|
|
[Token(Token = "0x40003EB")]
|
|
public static readonly SqlSingle MinValue;
|
|
|
|
/// <summary>Represents the maximum value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
|
|
// Token: 0x040003EC RID: 1004
|
|
[Token(Token = "0x40003EC")]
|
|
public static readonly SqlSingle MaxValue;
|
|
}
|
|
}
|