using System; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; using Cpp2IlInjected; namespace System.Data.SqlTypes { /// Represents a 32-bit signed integer to be stored in or retrieved from a database. // Token: 0x020000AA RID: 170 [Token(Token = "0x20000AA")] [XmlSchemaProvider("GetXsdType")] [Serializable] public struct SqlInt32 : INullable, IComparable, IXmlSerializable { // Token: 0x06000A11 RID: 2577 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000A11")] [Address(RVA = "0xBD2BB0", Offset = "0xBD1BB0", VA = "0x180BD2BB0")] private SqlInt32(bool fNull) { } /// Initializes a new instance of the structure using the supplied integer value. /// The integer to be converted. // Token: 0x06000A12 RID: 2578 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000A12")] [Address(RVA = "0xBD2BC0", Offset = "0xBD1BC0", VA = "0x180BD2BC0")] public SqlInt32(int value) { } /// Indicates whether this structure is null. /// This property is if is null. Otherwise, . // Token: 0x1700018D RID: 397 // (get) Token: 0x06000A13 RID: 2579 RVA: 0x00006044 File Offset: 0x00004244 [Token(Token = "0x1700018D")] public bool IsNull { [Token(Token = "0x6000A13")] [Address(RVA = "0x8BD410", Offset = "0x8BC410", VA = "0x1808BD410", Slot = "4")] get { return default(bool); } } /// Gets the value of this structure. This property is read-only. /// An integer representing the value of this structure. /// The property contains . // Token: 0x1700018E RID: 398 // (get) Token: 0x06000A14 RID: 2580 RVA: 0x0000605C File Offset: 0x0000425C [Token(Token = "0x1700018E")] public int Value { [Token(Token = "0x6000A14")] [Address(RVA = "0xBD2BD0", Offset = "0xBD1BD0", VA = "0x180BD2BD0")] get { return 0; } } /// Converts the supplied integer to . /// An integer value. /// A new structure whose Value property is equal to the integer parameter. // Token: 0x06000A15 RID: 2581 RVA: 0x00006074 File Offset: 0x00004274 [Token(Token = "0x6000A15")] [Address(RVA = "0xBD3270", Offset = "0xBD2270", VA = "0x180BD3270")] public static implicit operator SqlInt32(int x) { return default(SqlInt32); } /// Converts a structure to a . /// A structure equal to the value of this . // Token: 0x06000A16 RID: 2582 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A16")] [Address(RVA = "0xBD2AB0", Offset = "0xBD1AB0", VA = "0x180BD2AB0", Slot = "3")] public override string ToString() { return null; } /// Negates the of the operand. /// A structure. /// A structure that contains the negated value. // Token: 0x06000A17 RID: 2583 RVA: 0x0000608C File Offset: 0x0000428C [Token(Token = "0x6000A17")] [Address(RVA = "0xBD35E0", Offset = "0xBD25E0", VA = "0x180BD35E0")] public static SqlInt32 operator -(SqlInt32 x) { return default(SqlInt32); } /// Computes the sum of the two specified structures. /// A structure. /// A structure. /// A structure whose property contains the sum of the specified structures. // Token: 0x06000A18 RID: 2584 RVA: 0x000060A4 File Offset: 0x000042A4 [Token(Token = "0x6000A18")] [Address(RVA = "0xBD2C30", Offset = "0xBD1C30", VA = "0x180BD2C30")] public static SqlInt32 operator +(SqlInt32 x, SqlInt32 y) { return default(SqlInt32); } /// Subtracts the second parameter from the first. /// A structure. /// A structure. /// A structure whose property contains the results of the subtraction. // Token: 0x06000A19 RID: 2585 RVA: 0x000060BC File Offset: 0x000042BC [Token(Token = "0x6000A19")] [Address(RVA = "0xBD3490", Offset = "0xBD2490", VA = "0x180BD3490")] public static SqlInt32 operator -(SqlInt32 x, SqlInt32 y) { return default(SqlInt32); } /// Computes the product of the two parameters. /// A structure. /// A structure. /// A structure whose contains the product of the two parameters. // Token: 0x06000A1A RID: 2586 RVA: 0x000060D4 File Offset: 0x000042D4 [Token(Token = "0x6000A1A")] [Address(RVA = "0xBD3340", Offset = "0xBD2340", VA = "0x180BD3340")] public static SqlInt32 operator *(SqlInt32 x, SqlInt32 y) { return default(SqlInt32); } /// Divides the first parameter from the second. /// A structure. /// A structure. /// A whose property contains the results of the division. // Token: 0x06000A1B RID: 2587 RVA: 0x000060EC File Offset: 0x000042EC [Token(Token = "0x6000A1B")] [Address(RVA = "0xBD2D80", Offset = "0xBD1D80", VA = "0x180BD2D80")] public static SqlInt32 operator /(SqlInt32 x, SqlInt32 y) { return default(SqlInt32); } /// Converts the supplied property to . /// A structure. /// A new structure whose property equals the property of the parameter. // Token: 0x06000A1C RID: 2588 RVA: 0x00006104 File Offset: 0x00004304 [Token(Token = "0x6000A1C")] [Address(RVA = "0xBD3130", Offset = "0xBD2130", VA = "0x180BD3130")] public static implicit operator SqlInt32(SqlByte x) { return default(SqlInt32); } /// Converts the supplied to . /// A structure. /// A new structure whose property equals the property of the parameter. // Token: 0x06000A1D RID: 2589 RVA: 0x0000611C File Offset: 0x0000431C [Token(Token = "0x6000A1D")] [Address(RVA = "0xBD31D0", Offset = "0xBD21D0", VA = "0x180BD31D0")] public static implicit operator SqlInt32(SqlInt16 x) { return default(SqlInt32); } /// Converts the supplied to . /// A structure. /// A new structure whose property equals the property of the parameter. // Token: 0x06000A1E RID: 2590 RVA: 0x00006134 File Offset: 0x00004334 [Token(Token = "0x6000A1E")] [Address(RVA = "0xBD2F90", Offset = "0xBD1F90", VA = "0x180BD2F90")] public static explicit operator SqlInt32(SqlInt64 x) { return default(SqlInt32); } // Token: 0x06000A1F RID: 2591 RVA: 0x0000614C File Offset: 0x0000434C [Token(Token = "0x6000A1F")] [Address(RVA = "0xBD2660", Offset = "0xBD1660", VA = "0x180BD2660")] private static bool SameSignInt(int x, int y) { return default(bool); } /// Performs a logical comparison of the two parameters 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: 0x06000A20 RID: 2592 RVA: 0x00006164 File Offset: 0x00004364 [Token(Token = "0x6000A20")] [Address(RVA = "0xBD2EE0", Offset = "0xBD1EE0", VA = "0x180BD2EE0")] public static SqlBoolean operator ==(SqlInt32 x, SqlInt32 y) { return default(SqlBoolean); } /// Compares the two parameters 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: 0x06000A21 RID: 2593 RVA: 0x0000617C File Offset: 0x0000437C [Token(Token = "0x6000A21")] [Address(RVA = "0xBD3290", Offset = "0xBD2290", VA = "0x180BD3290")] public static SqlBoolean operator <(SqlInt32 x, SqlInt32 y) { return default(SqlBoolean); } /// Compares the two parameters 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: 0x06000A22 RID: 2594 RVA: 0x00006194 File Offset: 0x00004394 [Token(Token = "0x6000A22")] [Address(RVA = "0xBD3080", Offset = "0xBD2080", VA = "0x180BD3080")] public static SqlBoolean operator >(SqlInt32 x, SqlInt32 y) { return default(SqlBoolean); } /// Compares the two parameters 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: 0x06000A23 RID: 2595 RVA: 0x000061AC File Offset: 0x000043AC [Token(Token = "0x6000A23")] [Address(RVA = "0xBD25F0", Offset = "0xBD15F0", VA = "0x180BD25F0")] public static SqlBoolean LessThan(SqlInt32 x, SqlInt32 y) { return default(SqlBoolean); } /// Compares the two parameters 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: 0x06000A24 RID: 2596 RVA: 0x000061C4 File Offset: 0x000043C4 [Token(Token = "0x6000A24")] [Address(RVA = "0xBD2580", Offset = "0xBD1580", VA = "0x180BD2580")] public static SqlBoolean GreaterThan(SqlInt32 x, SqlInt32 y) { return default(SqlBoolean); } /// Converts this structure to . /// A new structure equal to the value of this . // Token: 0x06000A25 RID: 2597 RVA: 0x000061DC File Offset: 0x000043DC [Token(Token = "0x6000A25")] [Address(RVA = "0xBD2860", Offset = "0xBD1860", VA = "0x180BD2860")] public SqlDouble ToSqlDouble() { return default(SqlDouble); } /// Converts this structure to . /// A new structure equal to the value of this . // Token: 0x06000A26 RID: 2598 RVA: 0x000061F4 File Offset: 0x000043F4 [Token(Token = "0x6000A26")] [Address(RVA = "0xBD2970", Offset = "0xBD1970", VA = "0x180BD2970")] 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- /// /// The object is a null reference ( in Visual Basic). // Token: 0x06000A27 RID: 2599 RVA: 0x0000620C File Offset: 0x0000440C [Token(Token = "0x6000A27")] [Address(RVA = "0xBD20B0", Offset = "0xBD10B0", VA = "0x180BD20B0", 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: 0x06000A28 RID: 2600 RVA: 0x00006224 File Offset: 0x00004424 [Token(Token = "0x6000A28")] [Address(RVA = "0xBD21B0", Offset = "0xBD11B0", VA = "0x180BD21B0")] public int CompareTo(SqlInt32 value) { return 0; } /// Compares the supplied object parameter to the property of the object. /// The object to be compared. /// /// if object is an instance of and the two are equal; otherwise . // Token: 0x06000A29 RID: 2601 RVA: 0x0000623C File Offset: 0x0000443C [Token(Token = "0x6000A29")] [Address(RVA = "0xBD2300", Offset = "0xBD1300", VA = "0x180BD2300", 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: 0x06000A2A RID: 2602 RVA: 0x00006254 File Offset: 0x00004454 [Token(Token = "0x6000A2A")] [Address(RVA = "0xBD2490", Offset = "0xBD1490", VA = "0x180BD2490", 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 . // Token: 0x06000A2B RID: 2603 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A2B")] [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: 0x06000A2C RID: 2604 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000A2C")] [Address(RVA = "0xBD2680", Offset = "0xBD1680", VA = "0x180BD2680", 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: 0x06000A2D RID: 2605 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000A2D")] [Address(RVA = "0xBD2790", Offset = "0xBD1790", VA = "0x180BD2790", 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: 0x06000A2E RID: 2606 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A2E")] [Address(RVA = "0xBD2520", Offset = "0xBD1520", VA = "0x180BD2520")] public static XmlQualifiedName GetXsdType(XmlSchemaSet schemaSet) { return null; } // Token: 0x040003CC RID: 972 [FieldOffset(Offset = "0x0")] [Token(Token = "0x40003CC")] private bool m_fNotNull; // Token: 0x040003CD RID: 973 [FieldOffset(Offset = "0x4")] [Token(Token = "0x40003CD")] private int m_value; // Token: 0x040003CE RID: 974 [Token(Token = "0x40003CE")] private static readonly long s_iIntMin; // Token: 0x040003CF RID: 975 [Token(Token = "0x40003CF")] private static readonly long s_lBitNotIntMax; /// Represents a that can be assigned to this instance of the class. // Token: 0x040003D0 RID: 976 [Token(Token = "0x40003D0")] public static readonly SqlInt32 Null; /// Represents a zero value that can be assigned to the property of an instance of the structure. // Token: 0x040003D1 RID: 977 [Token(Token = "0x40003D1")] public static readonly SqlInt32 Zero; /// A constant representing the smallest possible value of a . // Token: 0x040003D2 RID: 978 [Token(Token = "0x40003D2")] public static readonly SqlInt32 MinValue; /// A constant representing the largest possible value of a . // Token: 0x040003D3 RID: 979 [Token(Token = "0x40003D3")] public static readonly SqlInt32 MaxValue; } }