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

511 lines
28 KiB
C#

using System;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>Represents a currency value ranging from -2 63 (or -922,337,203,685,477.5808) to 2 63 -1 (or +922,337,203,685,477.5807) with an accuracy to a ten-thousandth of currency unit to be stored in or retrieved from a database.</summary>
// Token: 0x020000AC RID: 172
[Token(Token = "0x20000AC")]
[XmlSchemaProvider("GetXsdType")]
[Serializable]
public struct SqlMoney : INullable, IComparable, IXmlSerializable
{
// Token: 0x06000A54 RID: 2644 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A54")]
[Address(RVA = "0xBCEFE0", Offset = "0xBCDFE0", VA = "0x180BCEFE0")]
private SqlMoney(bool fNull)
{
}
// Token: 0x06000A55 RID: 2645 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A55")]
[Address(RVA = "0xBD46D0", Offset = "0xBD36D0", VA = "0x180BD46D0")]
internal SqlMoney(long value, int ignored)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with the specified integer value.</summary>
/// <param name="value">The monetary value to initialize.</param>
// Token: 0x06000A56 RID: 2646 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A56")]
[Address(RVA = "0xBD68C0", Offset = "0xBD58C0", VA = "0x180BD68C0")]
public SqlMoney(int value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with the specified long integer value.</summary>
/// <param name="value">The monetary value to initialize.</param>
// Token: 0x06000A57 RID: 2647 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A57")]
[Address(RVA = "0xBD6940", Offset = "0xBD5940", VA = "0x180BD6940")]
public SqlMoney(long value)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with the specified <see cref="T:System.Decimal" /> value.</summary>
/// <param name="value">The monetary value to initialize.</param>
// Token: 0x06000A58 RID: 2648 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A58")]
[Address(RVA = "0xBD6A40", Offset = "0xBD5A40", VA = "0x180BD6A40")]
public SqlMoney(decimal value)
{
}
/// <summary>Returns a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure is null.</summary>
/// <returns>
/// <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
// Token: 0x17000191 RID: 401
// (get) Token: 0x06000A59 RID: 2649 RVA: 0x0000650C File Offset: 0x0000470C
[Token(Token = "0x17000191")]
public bool IsNull
{
[Token(Token = "0x6000A59")]
[Address(RVA = "0x8BD410", Offset = "0x8BC410", VA = "0x1808BD410", Slot = "4")]
get
{
return default(bool);
}
}
/// <summary>Gets the monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure. This property is read-only.</summary>
/// <returns>The monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
/// <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is set to null.</exception>
// Token: 0x17000192 RID: 402
// (get) Token: 0x06000A5A RID: 2650 RVA: 0x00006524 File Offset: 0x00004724
[Token(Token = "0x17000192")]
public decimal Value
{
[Token(Token = "0x6000A5A")]
[Address(RVA = "0xBD6BE0", Offset = "0xBD5BE0", VA = "0x180BD6BE0")]
get
{
return 0m;
}
}
/// <summary>Converts the Value of this instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> as a <see cref="T:System.Decimal" /> structure.</summary>
/// <returns>A <see cref="T:System.Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
// Token: 0x06000A5B RID: 2651 RVA: 0x0000653C File Offset: 0x0000473C
[Token(Token = "0x6000A5B")]
[Address(RVA = "0xBD6190", Offset = "0xBD5190", VA = "0x180BD6190")]
public decimal ToDecimal()
{
return 0m;
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to a <see cref="T:System.Double" />.</summary>
/// <returns>A double with a value equal to this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
// Token: 0x06000A5C RID: 2652 RVA: 0x00006554 File Offset: 0x00004754
[Token(Token = "0x6000A5C")]
[Address(RVA = "0xBD6280", Offset = "0xBD5280", VA = "0x180BD6280")]
public double ToDouble()
{
return 0.0;
}
/// <summary>Converts the <see cref="T:System.Decimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
/// <param name="x">The <see cref="T:System.Decimal" /> value to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> equals the value of the <see cref="T:System.Decimal" /> parameter.</returns>
// Token: 0x06000A5D RID: 2653 RVA: 0x0000656C File Offset: 0x0000476C
[Token(Token = "0x6000A5D")]
[Address(RVA = "0xBD7600", Offset = "0xBD6600", VA = "0x180BD7600")]
public static implicit operator SqlMoney(decimal x)
{
return default(SqlMoney);
}
/// <summary>This implicit operator converts the supplied <see cref="T:System.Int64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
/// <param name="x">The <see cref="T:System.Int64" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property is equal to the value of the <see cref="T:System.Int64" /> parameter.</returns>
// Token: 0x06000A5E RID: 2654 RVA: 0x00006584 File Offset: 0x00004784
[Token(Token = "0x6000A5E")]
[Address(RVA = "0xBD73C0", Offset = "0xBD63C0", VA = "0x180BD73C0")]
public static implicit operator SqlMoney(long x)
{
return default(SqlMoney);
}
/// <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> to string.</summary>
/// <returns>A string whose value is the string representation of the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
// Token: 0x06000A5F RID: 2655 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A5F")]
[Address(RVA = "0xBD66B0", Offset = "0xBD56B0", VA = "0x180BD66B0", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>The unary minus operator negates the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be negated.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the negation.</returns>
// Token: 0x06000A60 RID: 2656 RVA: 0x0000659C File Offset: 0x0000479C
[Token(Token = "0x6000A60")]
[Address(RVA = "0xBD7990", Offset = "0xBD6990", VA = "0x180BD7990")]
public static SqlMoney operator -(SqlMoney x)
{
return default(SqlMoney);
}
/// <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> stucture whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</returns>
// Token: 0x06000A61 RID: 2657 RVA: 0x000065B4 File Offset: 0x000047B4
[Token(Token = "0x6000A61")]
[Address(RVA = "0xBD6C60", Offset = "0xBD5C60", VA = "0x180BD6C60")]
public static SqlMoney operator +(SqlMoney x, SqlMoney y)
{
return default(SqlMoney);
}
/// <summary>The subtraction operator subtracts the second <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter from the first.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure that contains the results of the subtraction.</returns>
// Token: 0x06000A62 RID: 2658 RVA: 0x000065CC File Offset: 0x000047CC
[Token(Token = "0x6000A62")]
[Address(RVA = "0xBD7830", Offset = "0xBD6830", VA = "0x180BD7830")]
public static SqlMoney operator -(SqlMoney x, SqlMoney y)
{
return default(SqlMoney);
}
/// <summary>The multiplicaion operator calculates the product of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the product of the multiplication.</returns>
// Token: 0x06000A63 RID: 2659 RVA: 0x000065E4 File Offset: 0x000047E4
[Token(Token = "0x6000A63")]
[Address(RVA = "0xBD76F0", Offset = "0xBD66F0", VA = "0x180BD76F0")]
public static SqlMoney operator *(SqlMoney x, SqlMoney y)
{
return default(SqlMoney);
}
/// <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter by the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the division.</returns>
// Token: 0x06000A64 RID: 2660 RVA: 0x000065FC File Offset: 0x000047FC
[Token(Token = "0x6000A64")]
[Address(RVA = "0xBD6DC0", Offset = "0xBD5DC0", VA = "0x180BD6DC0")]
public static SqlMoney operator /(SqlMoney x, SqlMoney y)
{
return default(SqlMoney);
}
/// <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
/// <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
// Token: 0x06000A65 RID: 2661 RVA: 0x00006614 File Offset: 0x00004814
[Token(Token = "0x6000A65")]
[Address(RVA = "0xBD7190", Offset = "0xBD6190", VA = "0x180BD7190")]
public static implicit operator SqlMoney(SqlByte x)
{
return default(SqlMoney);
}
/// <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</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.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
// Token: 0x06000A66 RID: 2662 RVA: 0x0000662C File Offset: 0x0000482C
[Token(Token = "0x6000A66")]
[Address(RVA = "0xBD72A0", Offset = "0xBD62A0", VA = "0x180BD72A0")]
public static implicit operator SqlMoney(SqlInt16 x)
{
return default(SqlMoney);
}
/// <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</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.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
// Token: 0x06000A67 RID: 2663 RVA: 0x00006644 File Offset: 0x00004844
[Token(Token = "0x6000A67")]
[Address(RVA = "0xBD7410", Offset = "0xBD6410", VA = "0x180BD7410")]
public static implicit operator SqlMoney(SqlInt32 x)
{
return default(SqlMoney);
}
/// <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</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.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
// Token: 0x06000A68 RID: 2664 RVA: 0x0000665C File Offset: 0x0000485C
[Token(Token = "0x6000A68")]
[Address(RVA = "0xBD7530", Offset = "0xBD6530", VA = "0x180BD7530")]
public static implicit operator SqlMoney(SqlInt64 x)
{
return default(SqlMoney);
}
/// <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</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.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
// Token: 0x06000A69 RID: 2665 RVA: 0x00006674 File Offset: 0x00004874
[Token(Token = "0x6000A69")]
[Address(RVA = "0xBD6FC0", Offset = "0xBD5FC0", VA = "0x180BD6FC0")]
public static explicit operator SqlMoney(SqlDecimal x)
{
return default(SqlMoney);
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether they are equal.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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.SqlMoney" /> 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: 0x06000A6A RID: 2666 RVA: 0x0000668C File Offset: 0x0000488C
[Token(Token = "0x6000A6A")]
[Address(RVA = "0xBD6F00", Offset = "0xBD5F00", VA = "0x180BD6F00")]
public static SqlBoolean operator ==(SqlMoney x, SqlMoney y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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.SqlMoney" /> 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: 0x06000A6B RID: 2667 RVA: 0x000066A4 File Offset: 0x000048A4
[Token(Token = "0x6000A6B")]
[Address(RVA = "0xBD7630", Offset = "0xBD6630", VA = "0x180BD7630")]
public static SqlBoolean operator <(SqlMoney x, SqlMoney y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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.SqlMoney" /> 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: 0x06000A6C RID: 2668 RVA: 0x000066BC File Offset: 0x000048BC
[Token(Token = "0x6000A6C")]
[Address(RVA = "0xBD70D0", Offset = "0xBD60D0", VA = "0x180BD70D0")]
public static SqlBoolean operator >(SqlMoney x, SqlMoney y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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.SqlMoney" /> 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: 0x06000A6D RID: 2669 RVA: 0x000066D4 File Offset: 0x000048D4
[Token(Token = "0x6000A6D")]
[Address(RVA = "0xBD5E40", Offset = "0xBD4E40", VA = "0x180BD5E40")]
public static SqlBoolean LessThan(SqlMoney x, SqlMoney y)
{
return default(SqlBoolean);
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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.SqlMoney" /> 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: 0x06000A6E RID: 2670 RVA: 0x000066EC File Offset: 0x000048EC
[Token(Token = "0x6000A6E")]
[Address(RVA = "0xBD5D30", Offset = "0xBD4D30", VA = "0x180BD5D30")]
public static SqlBoolean GreaterThan(SqlMoney x, SqlMoney y)
{
return default(SqlBoolean);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
// Token: 0x06000A6F RID: 2671 RVA: 0x00006704 File Offset: 0x00004904
[Token(Token = "0x6000A6F")]
[Address(RVA = "0xBD64C0", Offset = "0xBD54C0", VA = "0x180BD64C0")]
public SqlDouble ToSqlDouble()
{
return default(SqlDouble);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
// Token: 0x06000A70 RID: 2672 RVA: 0x0000671C File Offset: 0x0000491C
[Token(Token = "0x6000A70")]
[Address(RVA = "0xBD6300", Offset = "0xBD5300", VA = "0x180BD6300")]
public SqlDecimal ToSqlDecimal()
{
return default(SqlDecimal);
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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: 0x06000A71 RID: 2673 RVA: 0x00006734 File Offset: 0x00004934
[Token(Token = "0x6000A71")]
[Address(RVA = "0xBD5A10", Offset = "0xBD4A10", VA = "0x180BD5A10", Slot = "5")]
public int CompareTo(object value)
{
return 0;
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlMoney" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> and returns an indication of their relative values.</summary>
/// <param name="value">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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: 0x06000A72 RID: 2674 RVA: 0x0000674C File Offset: 0x0000494C
[Token(Token = "0x6000A72")]
[Address(RVA = "0xBD57C0", Offset = "0xBD47C0", VA = "0x180BD57C0")]
public int CompareTo(SqlMoney value)
{
return 0;
}
/// <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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.SqlMoney" /> and the two are equal; otherwise, <see langword="false" />.</returns>
// Token: 0x06000A73 RID: 2675 RVA: 0x00006764 File Offset: 0x00004964
[Token(Token = "0x6000A73")]
[Address(RVA = "0xBD5B20", Offset = "0xBD4B20", VA = "0x180BD5B20", 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: 0x06000A74 RID: 2676 RVA: 0x0000677C File Offset: 0x0000497C
[Token(Token = "0x6000A74")]
[Address(RVA = "0xBD5CB0", Offset = "0xBD4CB0", VA = "0x180BD5CB0", 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: 0x06000A75 RID: 2677 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A75")]
[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: 0x06000A76 RID: 2678 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A76")]
[Address(RVA = "0xBD5F50", Offset = "0xBD4F50", VA = "0x180BD5F50", 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: 0x06000A77 RID: 2679 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A77")]
[Address(RVA = "0xBD60A0", Offset = "0xBD50A0", VA = "0x180BD60A0", 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" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
// Token: 0x06000A78 RID: 2680 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A78")]
[Address(RVA = "0xBD5CD0", Offset = "0xBD4CD0", VA = "0x180BD5CD0")]
public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet)
{
return null;
}
// Token: 0x040003DC RID: 988
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x40003DC")]
private bool _fNotNull;
// Token: 0x040003DD RID: 989
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x40003DD")]
private long _value;
// Token: 0x040003DE RID: 990
[Token(Token = "0x40003DE")]
internal static readonly int s_iMoneyScale;
// Token: 0x040003DF RID: 991
[Token(Token = "0x40003DF")]
private static readonly long s_lTickBase;
// Token: 0x040003E0 RID: 992
[Token(Token = "0x40003E0")]
private static readonly double s_dTickBase;
// Token: 0x040003E1 RID: 993
[Token(Token = "0x40003E1")]
private static readonly long s_minLong;
// Token: 0x040003E2 RID: 994
[Token(Token = "0x40003E2")]
private static readonly long s_maxLong;
/// <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
// Token: 0x040003E3 RID: 995
[Token(Token = "0x40003E3")]
public static readonly SqlMoney Null;
/// <summary>Represents the zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
// Token: 0x040003E4 RID: 996
[Token(Token = "0x40003E4")]
public static readonly SqlMoney Zero;
/// <summary>Represents the minimum value that can be assigned to <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
// Token: 0x040003E5 RID: 997
[Token(Token = "0x40003E5")]
public static readonly SqlMoney MinValue;
/// <summary>Represents the maximum value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
// Token: 0x040003E6 RID: 998
[Token(Token = "0x40003E6")]
public static readonly SqlMoney MaxValue;
}
}