using System;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// Represents a 16-bit signed integer to be stored in or retrieved from a database.
// Token: 0x020000A9 RID: 169
[Token(Token = "0x20000A9")]
[XmlSchemaProvider("GetXsdType")]
[Serializable]
public struct SqlInt16 : INullable, IComparable, IXmlSerializable
{
// Token: 0x060009F4 RID: 2548 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009F4")]
[Address(RVA = "0xBD17C0", Offset = "0xBD07C0", VA = "0x180BD17C0")]
private SqlInt16(bool fNull)
{
}
/// Initializes a new instance of the structure using the supplied short integer parameter.
/// A short integer.
// Token: 0x060009F5 RID: 2549 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009F5")]
[Address(RVA = "0xBD17D0", Offset = "0xBD07D0", VA = "0x180BD17D0")]
public SqlInt16(short value)
{
}
/// Indicates whether this structure is null.
///
/// if null. Otherwise, . For more information, see Handling Null Values.
// Token: 0x1700018B RID: 395
// (get) Token: 0x060009F6 RID: 2550 RVA: 0x00005E4C File Offset: 0x0000404C
[Token(Token = "0x1700018B")]
public bool IsNull
{
[Token(Token = "0x60009F6")]
[Address(RVA = "0x8BD410", Offset = "0x8BC410", VA = "0x1808BD410", Slot = "4")]
get
{
return default(bool);
}
}
/// Gets the value of this instance of structure. This property is read-only.
/// A short integer representing the value of this structure.
// Token: 0x1700018C RID: 396
// (get) Token: 0x060009F7 RID: 2551 RVA: 0x00005E64 File Offset: 0x00004064
[Token(Token = "0x1700018C")]
public short Value
{
[Token(Token = "0x60009F7")]
[Address(RVA = "0xBD17E0", Offset = "0xBD07E0", VA = "0x180BD17E0")]
get
{
return 0;
}
}
/// Converts the supplied short integer to .
/// A short integer value.
/// A structure with the same value as the specified short integer.
// Token: 0x060009F8 RID: 2552 RVA: 0x00005E7C File Offset: 0x0000407C
[Token(Token = "0x60009F8")]
[Address(RVA = "0xBD1D30", Offset = "0xBD0D30", VA = "0x180BD1D30")]
public static implicit operator SqlInt16(short x)
{
return default(SqlInt16);
}
/// Converts a structure to .
/// A object representing the of this instance of .
// Token: 0x060009F9 RID: 2553 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009F9")]
[Address(RVA = "0xBD16E0", Offset = "0xBD06E0", VA = "0x180BD16E0", Slot = "3")]
public override string ToString()
{
return null;
}
/// The unary minus operator negates the of the operand.
/// A structure.
/// A structure that contains the negated value.
// Token: 0x060009FA RID: 2554 RVA: 0x00005E94 File Offset: 0x00004094
[Token(Token = "0x60009FA")]
[Address(RVA = "0xBD2020", Offset = "0xBD1020", VA = "0x180BD2020")]
public static SqlInt16 operator -(SqlInt16 x)
{
return default(SqlInt16);
}
/// Computes the sum of the two operands.
/// A structure.
/// A structure.
/// A structure whose property contains the sum of the two operands.
// Token: 0x060009FB RID: 2555 RVA: 0x00005EAC File Offset: 0x000040AC
[Token(Token = "0x60009FB")]
[Address(RVA = "0xBD1840", Offset = "0xBD0840", VA = "0x180BD1840")]
public static SqlInt16 operator +(SqlInt16 x, SqlInt16 y)
{
return default(SqlInt16);
}
/// Subtracts the second parameter from the first.
/// A structure.
/// A structure.
/// A structure whose property contains the results of the subtraction.
// Token: 0x060009FC RID: 2556 RVA: 0x00005EC4 File Offset: 0x000040C4
[Token(Token = "0x60009FC")]
[Address(RVA = "0xBD1F30", Offset = "0xBD0F30", VA = "0x180BD1F30")]
public static SqlInt16 operator -(SqlInt16 x, SqlInt16 y)
{
return default(SqlInt16);
}
/// Computes the product of the two parameters.
/// A structure.
/// A structure.
/// A structure whose contains the product of the two parameters.
// Token: 0x060009FD RID: 2557 RVA: 0x00005EDC File Offset: 0x000040DC
[Token(Token = "0x60009FD")]
[Address(RVA = "0xBD1DF0", Offset = "0xBD0DF0", VA = "0x180BD1DF0")]
public static SqlInt16 operator *(SqlInt16 x, SqlInt16 y)
{
return default(SqlInt16);
}
/// Divides the first operand by the second.
/// A structure.
/// A structure.
/// A whose property contains the results of the division.
// Token: 0x060009FE RID: 2558 RVA: 0x00005EF4 File Offset: 0x000040F4
[Token(Token = "0x60009FE")]
[Address(RVA = "0xBD1930", Offset = "0xBD0930", VA = "0x180BD1930")]
public static SqlInt16 operator /(SqlInt16 x, SqlInt16 y)
{
return default(SqlInt16);
}
/// Converts the supplied structure to .
/// A structure.
/// A new structure whose property is equal to the property of the parameter.
// Token: 0x060009FF RID: 2559 RVA: 0x00005F0C File Offset: 0x0000410C
[Token(Token = "0x60009FF")]
[Address(RVA = "0xBD1C90", Offset = "0xBD0C90", VA = "0x180BD1C90")]
public static implicit operator SqlInt16(SqlByte x)
{
return default(SqlInt16);
}
/// Converts the supplied structure to .
/// A structure.
/// A new structure whose property is equal to the of the parameter.
// Token: 0x06000A00 RID: 2560 RVA: 0x00005F24 File Offset: 0x00004124
[Token(Token = "0x6000A00")]
[Address(RVA = "0xBD1B00", Offset = "0xBD0B00", VA = "0x180BD1B00")]
public static explicit operator SqlInt16(SqlInt64 x)
{
return default(SqlInt16);
}
/// Performs a logical comparison of two structures to determine whether they are equal.
/// A structure.
/// A structure.
/// A that is if the two instances are equal or if the two instances are not equal. If either instance of is null, the of the will be .
// Token: 0x06000A01 RID: 2561 RVA: 0x00005F3C File Offset: 0x0000413C
[Token(Token = "0x6000A01")]
[Address(RVA = "0xBD1A60", Offset = "0xBD0A60", VA = "0x180BD1A60")]
public static SqlBoolean operator ==(SqlInt16 x, SqlInt16 y)
{
return default(SqlBoolean);
}
/// Compares two instances of to determine whether the first is less than the second.
/// A structure.
/// A structure.
/// A that is if the first instance is less than the second instance. Otherwise, . If either instance of is null, the of the will be .
// Token: 0x06000A02 RID: 2562 RVA: 0x00005F54 File Offset: 0x00004154
[Token(Token = "0x6000A02")]
[Address(RVA = "0xBD1D50", Offset = "0xBD0D50", VA = "0x180BD1D50")]
public static SqlBoolean operator <(SqlInt16 x, SqlInt16 y)
{
return default(SqlBoolean);
}
/// Compares two instances of to determine whether the first is greater than the second.
/// A structure.
/// A structure.
/// A that is if the first instance is greater than the second instance. Otherwise, . If either instance of is null, the of the will be .
// Token: 0x06000A03 RID: 2563 RVA: 0x00005F6C File Offset: 0x0000416C
[Token(Token = "0x6000A03")]
[Address(RVA = "0xBD1BF0", Offset = "0xBD0BF0", VA = "0x180BD1BF0")]
public static SqlBoolean operator >(SqlInt16 x, SqlInt16 y)
{
return default(SqlBoolean);
}
/// Compares two instances of to determine whether the first is less than the second.
/// A structure.
/// A structure.
/// A that is if the first instance is less than the second instance. Otherwise, . If either instance of is null, the of the will be .
// Token: 0x06000A04 RID: 2564 RVA: 0x00005F84 File Offset: 0x00004184
[Token(Token = "0x6000A04")]
[Address(RVA = "0xBD1230", Offset = "0xBD0230", VA = "0x180BD1230")]
public static SqlBoolean LessThan(SqlInt16 x, SqlInt16 y)
{
return default(SqlBoolean);
}
/// Compares two instances of to determine whether the first is greater than the second.
/// A structure.
/// A structure.
/// A that is if the first instance is greater than the second instance. Otherwise, . If either instance of is null, the of the will be .
// Token: 0x06000A05 RID: 2565 RVA: 0x00005F9C File Offset: 0x0000419C
[Token(Token = "0x6000A05")]
[Address(RVA = "0xBD11D0", Offset = "0xBD01D0", VA = "0x180BD11D0")]
public static SqlBoolean GreaterThan(SqlInt16 x, SqlInt16 y)
{
return default(SqlBoolean);
}
/// Converts this structure to .
/// A new structure whose equals the value of this structure.
// Token: 0x06000A06 RID: 2566 RVA: 0x00005FB4 File Offset: 0x000041B4
[Token(Token = "0x6000A06")]
[Address(RVA = "0xBD1470", Offset = "0xBD0470", VA = "0x180BD1470")]
public SqlDouble ToSqlDouble()
{
return default(SqlDouble);
}
/// Converts this structure to .
/// A new structure whose equals the value of this structure.
// Token: 0x06000A07 RID: 2567 RVA: 0x00005FCC File Offset: 0x000041CC
[Token(Token = "0x6000A07")]
[Address(RVA = "0xBD15B0", Offset = "0xBD05B0", VA = "0x180BD15B0")]
public SqlInt64 ToSqlInt64()
{
return default(SqlInt64);
}
/// Compares this instance to the supplied and returns an indication of their relative values.
/// The to be compared.
/// 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-
///
/// object is a null reference ( in Visual Basic)
// Token: 0x06000A08 RID: 2568 RVA: 0x00005FE4 File Offset: 0x000041E4
[Token(Token = "0x6000A08")]
[Address(RVA = "0xBD0E50", Offset = "0xBCFE50", VA = "0x180BD0E50", Slot = "5")]
public int CompareTo(object value)
{
return 0;
}
/// Compares this instance to the supplied and returns an indication of their relative values.
/// The to be compared.
/// 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 ( in Visual Basic)
// Token: 0x06000A09 RID: 2569 RVA: 0x00005FFC File Offset: 0x000041FC
[Token(Token = "0x6000A09")]
[Address(RVA = "0xBD0D10", Offset = "0xBCFD10", VA = "0x180BD0D10")]
public int CompareTo(SqlInt16 value)
{
return 0;
}
/// Compares the specified object to the property of the object.
/// The object to be compared.
///
/// if object is an instance of and the two are equal; otherwise .
// Token: 0x06000A0A RID: 2570 RVA: 0x00006014 File Offset: 0x00004214
[Token(Token = "0x6000A0A")]
[Address(RVA = "0xBD0F50", Offset = "0xBCFF50", VA = "0x180BD0F50", Slot = "0")]
public override bool Equals(object value)
{
return default(bool);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// Token: 0x06000A0B RID: 2571 RVA: 0x0000602C File Offset: 0x0000422C
[Token(Token = "0x6000A0B")]
[Address(RVA = "0xBD10E0", Offset = "0xBD00E0", VA = "0x180BD10E0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
/// An XML schema consumed by .NET Framework.
// Token: 0x06000A0C RID: 2572 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A0C")]
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "6")]
XmlSchema IXmlSerializable.GetSchema()
{
return null;
}
/// This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
///
///
///
// Token: 0x06000A0D RID: 2573 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A0D")]
[Address(RVA = "0xBD1290", Offset = "0xBD0290", VA = "0x180BD1290", Slot = "7")]
void IXmlSerializable.ReadXml(XmlReader reader)
{
}
/// This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
///
///
///
// Token: 0x06000A0E RID: 2574 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A0E")]
[Address(RVA = "0xBD13A0", Offset = "0xBD03A0", VA = "0x180BD13A0", Slot = "8")]
void IXmlSerializable.WriteXml(XmlWriter writer)
{
}
/// Returns the XML Schema definition language (XSD) of the specified .
/// An .
/// A value that indicates the XSD of the specified .
// Token: 0x06000A0F RID: 2575 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A0F")]
[Address(RVA = "0xBD1170", Offset = "0xBD0170", VA = "0x180BD1170")]
public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet)
{
return null;
}
// Token: 0x040003C5 RID: 965
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x40003C5")]
private bool m_fNotNull;
// Token: 0x040003C6 RID: 966
[FieldOffset(Offset = "0x2")]
[Token(Token = "0x40003C6")]
private short m_value;
// Token: 0x040003C7 RID: 967
[Token(Token = "0x40003C7")]
private static readonly int s_MASKI2;
/// Represents a that can be assigned to this instance of the structure.
// Token: 0x040003C8 RID: 968
[Token(Token = "0x40003C8")]
public static readonly SqlInt16 Null;
/// Represents a zero value that can be assigned to the property of an instance of the structure.
// Token: 0x040003C9 RID: 969
[Token(Token = "0x40003C9")]
public static readonly SqlInt16 Zero;
/// A constant representing the smallest possible value of a .
// Token: 0x040003CA RID: 970
[Token(Token = "0x40003CA")]
public static readonly SqlInt16 MinValue;
/// A constant representing the largest possible value of a .
// Token: 0x040003CB RID: 971
[Token(Token = "0x40003CB")]
public static readonly SqlInt16 MaxValue;
}
}