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

428 lines
23 KiB
C#

using System;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>Represents a 32-bit signed integer to be stored in or retrieved from a database.</summary>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure using the supplied integer value.</summary>
/// <param name="value">The integer to be converted.</param>
// Token: 0x06000A12 RID: 2578 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000A12")]
[Address(RVA = "0xBD2BC0", Offset = "0xBD1BC0", VA = "0x180BD2BC0")]
public SqlInt32(int value)
{
}
/// <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure is null.</summary>
/// <returns>This property is <see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> is null. Otherwise, <see langword="false" />.</returns>
// 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);
}
}
/// <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure. This property is read-only.</summary>
/// <returns>An integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</returns>
/// <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property contains <see cref="F:System.Data.SqlTypes.SqlInt32.Null" />.</exception>
// 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;
}
}
/// <summary>Converts the supplied integer to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
/// <param name="x">An integer value.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose Value property is equal to the integer parameter.</returns>
// 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);
}
/// <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to a <see cref="T:System.String" />.</summary>
/// <returns>A <see cref="T:System.String" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
// 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;
}
/// <summary>Negates the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> operand.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the negated value.</returns>
// 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);
}
/// <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</returns>
// 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);
}
/// <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the first.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the subtraction.</returns>
// 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);
}
/// <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the product of the two parameters.</returns>
// 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);
}
/// <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the division.</returns>
// 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);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> property to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
// 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);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
// 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);
}
/// <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of the <see langword="SqlInt64" /> parameter.</returns>
// 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);
}
/// <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether they are equal.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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.SqlInt32" /> 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: 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);
}
/// <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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.SqlInt32" /> 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: 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);
}
/// <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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.SqlInt32" /> 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: 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);
}
/// <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is less than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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.SqlInt32" /> 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: 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);
}
/// <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is greater than the second.</summary>
/// <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
/// <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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.SqlInt32" /> 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: 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);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
// 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);
}
/// <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
/// <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
// 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);
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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: 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;
}
/// <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt32" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> and returns an indication of their relative values.</summary>
/// <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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: 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;
}
/// <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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.SqlInt32" /> and the two are equal; otherwise <see langword="false" />.</returns>
// 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);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// 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;
}
/// <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: 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;
}
/// <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: 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)
{
}
/// <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: 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)
{
}
/// <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" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
// 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;
/// <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> class.</summary>
// Token: 0x040003D0 RID: 976
[Token(Token = "0x40003D0")]
public static readonly SqlInt32 Null;
/// <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
// Token: 0x040003D1 RID: 977
[Token(Token = "0x40003D1")]
public static readonly SqlInt32 Zero;
/// <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
// Token: 0x040003D2 RID: 978
[Token(Token = "0x40003D2")]
public static readonly SqlInt32 MinValue;
/// <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
// Token: 0x040003D3 RID: 979
[Token(Token = "0x40003D3")]
public static readonly SqlInt32 MaxValue;
}
}