Files
27Aug2021-Cpp2IL-Dump/System.Data/SqlTypes/SqlInt16.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

405 lines
22 KiB
C#

using System;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>Represents a 16-bit signed integer to be stored in or retrieved from a database.</summary>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure using the supplied short integer parameter.</summary>
/// <param name="value">A short integer.</param>
// Token: 0x060009F5 RID: 2549 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60009F5")]
[Address(RVA = "0xBD17D0", Offset = "0xBD07D0", VA = "0x180BD17D0")]
public SqlInt16(short value)
{
}
/// <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure is null.</summary>
/// <returns>
/// <see langword="true" /> if null. Otherwise, <see langword="false" />. For more information, see Handling Null Values.</returns>
// 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);
}
}
/// <summary>Gets the value of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure. This property is read-only.</summary>
/// <returns>A short integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
// 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;
}
}
/// <summary>Converts the supplied short integer to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
/// <param name="x">A short integer value.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure with the same value as the specified short integer.</returns>
// 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);
}
/// <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.String" />.</summary>
/// <returns>A <see cref="T:System.String" /> object representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
// 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;
}
/// <summary>The unary minus operator negates the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure that contains the negated value.</returns>
// 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);
}
/// <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</returns>
// 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);
}
/// <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter from the first.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the subtraction.</returns>
// 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);
}
/// <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameters.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the product of the two parameters.</returns>
// 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);
}
/// <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand by the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the division.</returns>
// 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);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
// 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);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
// 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);
}
/// <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether they are equal.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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.SqlInt16" /> 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: 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);
}
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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.SqlInt16" /> 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: 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);
}
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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.SqlInt16" /> 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: 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);
}
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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.SqlInt16" /> 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: 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);
}
/// <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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.SqlInt16" /> 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: 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);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
// 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);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
// 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);
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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-
///
/// object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
// 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;
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> and returns an indication of their relative values.</summary>
/// <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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: 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;
}
/// <summary>Compares the specified object to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> object.</summary>
/// <param name="value">The object to be compared.</param>
/// <returns>
/// <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> and the two are equal; otherwise <see langword="false" />.</returns>
// 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);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// 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;
}
/// <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: 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;
}
/// <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: 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)
{
}
/// <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: 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)
{
}
/// <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 cref="T:System.String" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
// 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;
/// <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</summary>
// Token: 0x040003C8 RID: 968
[Token(Token = "0x40003C8")]
public static readonly SqlInt16 Null;
/// <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</summary>
// Token: 0x040003C9 RID: 969
[Token(Token = "0x40003C9")]
public static readonly SqlInt16 Zero;
/// <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
// Token: 0x040003CA RID: 970
[Token(Token = "0x40003CA")]
public static readonly SqlInt16 MinValue;
/// <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
// Token: 0x040003CB RID: 971
[Token(Token = "0x40003CB")]
public static readonly SqlInt16 MaxValue;
}
}