1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("2.0.5.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Data.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Data.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.50524.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.50524.0")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.Data.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("2.0.5.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Design, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
20 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Web, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
21 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
22 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
23 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
24 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
25 namespace Microsoft.SqlServer.Server
26 {
27     [System.SerializableAttribute]
28     public enum DataAccessKind
29     {
30         None = 0,
31         Read = 1,
32     }
33     public enum Format
34     {
35         Native = 1,
36         Unknown = 0,
37         UserDefined = 2,
38     }
39     public partial interface IBinarySerialize
40     {
Read(System.IO.BinaryReader r)41         void Read(System.IO.BinaryReader r);
Write(System.IO.BinaryWriter w)42         void Write(System.IO.BinaryWriter w);
43     }
44     [System.SerializableAttribute]
45     public sealed partial class InvalidUdtException : System.SystemException
46     {
InvalidUdtException()47         internal InvalidUdtException() { }
48         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)49         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
50     }
51     public partial class SqlDataRecord : System.Data.IDataRecord
52     {
SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData)53         public SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData) { }
54         public virtual int FieldCount { get { throw null; } }
55         public virtual object this[int ordinal] { get { throw null; } }
56         public virtual object this[string name] { get { throw null; } }
GetBoolean(int ordinal)57         public virtual bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)58         public virtual byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)59         public virtual long GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { throw null; }
GetChar(int ordinal)60         public virtual char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)61         public virtual long GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { throw null; }
GetDataTypeName(int ordinal)62         public virtual string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)63         public virtual System.DateTime GetDateTime(int ordinal) { throw null; }
GetDateTimeOffset(int ordinal)64         public virtual System.DateTimeOffset GetDateTimeOffset(int ordinal) { throw null; }
GetDecimal(int ordinal)65         public virtual decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)66         public virtual double GetDouble(int ordinal) { throw null; }
GetFieldType(int ordinal)67         public virtual System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)68         public virtual float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)69         public virtual System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)70         public virtual short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)71         public virtual int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)72         public virtual long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)73         public virtual string GetName(int ordinal) { throw null; }
GetOrdinal(string name)74         public virtual int GetOrdinal(string name) { throw null; }
GetSqlBinary(int ordinal)75         public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int ordinal) { throw null; }
GetSqlBoolean(int ordinal)76         public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int ordinal) { throw null; }
GetSqlByte(int ordinal)77         public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int ordinal) { throw null; }
GetSqlBytes(int ordinal)78         public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int ordinal) { throw null; }
GetSqlChars(int ordinal)79         public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int ordinal) { throw null; }
GetSqlDateTime(int ordinal)80         public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int ordinal) { throw null; }
GetSqlDecimal(int ordinal)81         public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int ordinal) { throw null; }
GetSqlDouble(int ordinal)82         public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int ordinal) { throw null; }
GetSqlFieldType(int ordinal)83         public virtual System.Type GetSqlFieldType(int ordinal) { throw null; }
GetSqlGuid(int ordinal)84         public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int ordinal) { throw null; }
GetSqlInt16(int ordinal)85         public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int ordinal) { throw null; }
GetSqlInt32(int ordinal)86         public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int ordinal) { throw null; }
GetSqlInt64(int ordinal)87         public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int ordinal) { throw null; }
GetSqlMetaData(int ordinal)88         public virtual Microsoft.SqlServer.Server.SqlMetaData GetSqlMetaData(int ordinal) { throw null; }
GetSqlMoney(int ordinal)89         public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int ordinal) { throw null; }
GetSqlSingle(int ordinal)90         public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int ordinal) { throw null; }
GetSqlString(int ordinal)91         public virtual System.Data.SqlTypes.SqlString GetSqlString(int ordinal) { throw null; }
GetSqlValue(int ordinal)92         public virtual object GetSqlValue(int ordinal) { throw null; }
GetSqlValues(object[] values)93         public virtual int GetSqlValues(object[] values) { throw null; }
GetSqlXml(int ordinal)94         public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int ordinal) { throw null; }
GetString(int ordinal)95         public virtual string GetString(int ordinal) { throw null; }
GetTimeSpan(int ordinal)96         public virtual System.TimeSpan GetTimeSpan(int ordinal) { throw null; }
GetValue(int ordinal)97         public virtual object GetValue(int ordinal) { throw null; }
GetValues(object[] values)98         public virtual int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)99         public virtual bool IsDBNull(int ordinal) { throw null; }
SetBoolean(int ordinal, bool value)100         public virtual void SetBoolean(int ordinal, bool value) { }
SetByte(int ordinal, byte value)101         public virtual void SetByte(int ordinal, byte value) { }
SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)102         public virtual void SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { }
SetChar(int ordinal, char value)103         public virtual void SetChar(int ordinal, char value) { }
SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)104         public virtual void SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { }
SetDateTime(int ordinal, System.DateTime value)105         public virtual void SetDateTime(int ordinal, System.DateTime value) { }
SetDateTimeOffset(int ordinal, System.DateTimeOffset value)106         public virtual void SetDateTimeOffset(int ordinal, System.DateTimeOffset value) { }
SetDBNull(int ordinal)107         public virtual void SetDBNull(int ordinal) { }
SetDecimal(int ordinal, decimal value)108         public virtual void SetDecimal(int ordinal, decimal value) { }
SetDouble(int ordinal, double value)109         public virtual void SetDouble(int ordinal, double value) { }
SetFloat(int ordinal, float value)110         public virtual void SetFloat(int ordinal, float value) { }
SetGuid(int ordinal, System.Guid value)111         public virtual void SetGuid(int ordinal, System.Guid value) { }
SetInt16(int ordinal, short value)112         public virtual void SetInt16(int ordinal, short value) { }
SetInt32(int ordinal, int value)113         public virtual void SetInt32(int ordinal, int value) { }
SetInt64(int ordinal, long value)114         public virtual void SetInt64(int ordinal, long value) { }
SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value)115         public virtual void SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value) { }
SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value)116         public virtual void SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value) { }
SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value)117         public virtual void SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value) { }
SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value)118         public virtual void SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value) { }
SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value)119         public virtual void SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value) { }
SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value)120         public virtual void SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value) { }
SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value)121         public virtual void SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value) { }
SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value)122         public virtual void SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value) { }
SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value)123         public virtual void SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value) { }
SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value)124         public virtual void SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value) { }
SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value)125         public virtual void SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value) { }
SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value)126         public virtual void SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value) { }
SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value)127         public virtual void SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value) { }
SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value)128         public virtual void SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value) { }
SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value)129         public virtual void SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value) { }
SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value)130         public virtual void SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value) { }
SetString(int ordinal, string value)131         public virtual void SetString(int ordinal, string value) { }
SetTimeSpan(int ordinal, System.TimeSpan value)132         public virtual void SetTimeSpan(int ordinal, System.TimeSpan value) { }
SetValue(int ordinal, object value)133         public virtual void SetValue(int ordinal, object value) { }
SetValues(params object[] values)134         public virtual int SetValues(params object[] values) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)135         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
136     }
137     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false, Inherited=false)]
138     public partial class SqlFacetAttribute : System.Attribute
139     {
SqlFacetAttribute()140         public SqlFacetAttribute() { }
141         public bool IsFixedLength { get { throw null; } set { } }
142         public bool IsNullable { get { throw null; } set { } }
143         public int MaxSize { get { throw null; } set { } }
144         public int Precision { get { throw null; } set { } }
145         public int Scale { get { throw null; } set { } }
146     }
147     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
148     [System.SerializableAttribute]
149     public partial class SqlFunctionAttribute : System.Attribute
150     {
SqlFunctionAttribute()151         public SqlFunctionAttribute() { }
152         public Microsoft.SqlServer.Server.DataAccessKind DataAccess { get { throw null; } set { } }
153         public string FillRowMethodName { get { throw null; } set { } }
154         public bool IsDeterministic { get { throw null; } set { } }
155         public bool IsPrecise { get { throw null; } set { } }
156         public string Name { get { throw null; } set { } }
157         public Microsoft.SqlServer.Server.SystemDataAccessKind SystemDataAccess { get { throw null; } set { } }
158         public string TableDefinition { get { throw null; } set { } }
159     }
160     public sealed partial class SqlMetaData
161     {
SqlMetaData(string name, System.Data.SqlDbType dbType)162         public SqlMetaData(string name, System.Data.SqlDbType dbType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)163         public SqlMetaData(string name, System.Data.SqlDbType dbType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale)164         public SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)165         public SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength)166         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)167         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType)168         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long localeId, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)169         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long localeId, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions)170         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)171         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName)172         public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)173         public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType)174         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName)175         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)176         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
177         public System.Data.SqlTypes.SqlCompareOptions CompareOptions { get { throw null; } }
178         public System.Data.DbType DbType { get { throw null; } }
179         public bool IsUniqueKey { get { throw null; } }
180         public long LocaleId { get { throw null; } }
181         public static long Max { get { throw null; } }
182         public long MaxLength { get { throw null; } }
183         public string Name { get { throw null; } }
184         public byte Precision { get { throw null; } }
185         public byte Scale { get { throw null; } }
186         public System.Data.SqlClient.SortOrder SortOrder { get { throw null; } }
187         public int SortOrdinal { get { throw null; } }
188         public System.Data.SqlDbType SqlDbType { get { throw null; } }
189         public System.Type Type { get { throw null; } }
190         public string TypeName { get { throw null; } }
191         public bool UseServerDefault { get { throw null; } }
192         public string XmlSchemaCollectionDatabase { get { throw null; } }
193         public string XmlSchemaCollectionName { get { throw null; } }
194         public string XmlSchemaCollectionOwningSchema { get { throw null; } }
Adjust(bool value)195         public bool Adjust(bool value) { throw null; }
Adjust(byte value)196         public byte Adjust(byte value) { throw null; }
Adjust(byte[] value)197         public byte[] Adjust(byte[] value) { throw null; }
Adjust(char value)198         public char Adjust(char value) { throw null; }
Adjust(char[] value)199         public char[] Adjust(char[] value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBinary value)200         public System.Data.SqlTypes.SqlBinary Adjust(System.Data.SqlTypes.SqlBinary value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBoolean value)201         public System.Data.SqlTypes.SqlBoolean Adjust(System.Data.SqlTypes.SqlBoolean value) { throw null; }
Adjust(System.Data.SqlTypes.SqlByte value)202         public System.Data.SqlTypes.SqlByte Adjust(System.Data.SqlTypes.SqlByte value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBytes value)203         public System.Data.SqlTypes.SqlBytes Adjust(System.Data.SqlTypes.SqlBytes value) { throw null; }
Adjust(System.Data.SqlTypes.SqlChars value)204         public System.Data.SqlTypes.SqlChars Adjust(System.Data.SqlTypes.SqlChars value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDateTime value)205         public System.Data.SqlTypes.SqlDateTime Adjust(System.Data.SqlTypes.SqlDateTime value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDecimal value)206         public System.Data.SqlTypes.SqlDecimal Adjust(System.Data.SqlTypes.SqlDecimal value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDouble value)207         public System.Data.SqlTypes.SqlDouble Adjust(System.Data.SqlTypes.SqlDouble value) { throw null; }
Adjust(System.Data.SqlTypes.SqlGuid value)208         public System.Data.SqlTypes.SqlGuid Adjust(System.Data.SqlTypes.SqlGuid value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt16 value)209         public System.Data.SqlTypes.SqlInt16 Adjust(System.Data.SqlTypes.SqlInt16 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt32 value)210         public System.Data.SqlTypes.SqlInt32 Adjust(System.Data.SqlTypes.SqlInt32 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt64 value)211         public System.Data.SqlTypes.SqlInt64 Adjust(System.Data.SqlTypes.SqlInt64 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlMoney value)212         public System.Data.SqlTypes.SqlMoney Adjust(System.Data.SqlTypes.SqlMoney value) { throw null; }
Adjust(System.Data.SqlTypes.SqlSingle value)213         public System.Data.SqlTypes.SqlSingle Adjust(System.Data.SqlTypes.SqlSingle value) { throw null; }
Adjust(System.Data.SqlTypes.SqlString value)214         public System.Data.SqlTypes.SqlString Adjust(System.Data.SqlTypes.SqlString value) { throw null; }
Adjust(System.Data.SqlTypes.SqlXml value)215         public System.Data.SqlTypes.SqlXml Adjust(System.Data.SqlTypes.SqlXml value) { throw null; }
Adjust(System.DateTime value)216         public System.DateTime Adjust(System.DateTime value) { throw null; }
Adjust(System.DateTimeOffset value)217         public System.DateTimeOffset Adjust(System.DateTimeOffset value) { throw null; }
Adjust(decimal value)218         public decimal Adjust(decimal value) { throw null; }
Adjust(double value)219         public double Adjust(double value) { throw null; }
Adjust(System.Guid value)220         public System.Guid Adjust(System.Guid value) { throw null; }
Adjust(short value)221         public short Adjust(short value) { throw null; }
Adjust(int value)222         public int Adjust(int value) { throw null; }
Adjust(long value)223         public long Adjust(long value) { throw null; }
Adjust(object value)224         public object Adjust(object value) { throw null; }
Adjust(float value)225         public float Adjust(float value) { throw null; }
Adjust(string value)226         public string Adjust(string value) { throw null; }
Adjust(System.TimeSpan value)227         public System.TimeSpan Adjust(System.TimeSpan value) { throw null; }
InferFromValue(object value, string name)228         public static Microsoft.SqlServer.Server.SqlMetaData InferFromValue(object value, string name) { throw null; }
229     }
230     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
231     [System.SerializableAttribute]
232     public sealed partial class SqlMethodAttribute : Microsoft.SqlServer.Server.SqlFunctionAttribute
233     {
SqlMethodAttribute()234         public SqlMethodAttribute() { }
235         public bool InvokeIfReceiverIsNull { get { throw null; } set { } }
236         public bool IsMutator { get { throw null; } set { } }
237         public bool OnNullCall { get { throw null; } set { } }
238     }
239     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
240     [System.SerializableAttribute]
241     public sealed partial class SqlProcedureAttribute : System.Attribute
242     {
SqlProcedureAttribute()243         public SqlProcedureAttribute() { }
244         public string Name { get { throw null; } set { } }
245     }
246     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
247     [System.SerializableAttribute]
248     public sealed partial class SqlTriggerAttribute : System.Attribute
249     {
SqlTriggerAttribute()250         public SqlTriggerAttribute() { }
251         public string Event { get { throw null; } set { } }
252         public string Name { get { throw null; } set { } }
253         public string Target { get { throw null; } set { } }
254     }
255     public sealed partial class SqlTriggerContext
256     {
SqlTriggerContext()257         internal SqlTriggerContext() { }
258         public int ColumnCount { get { throw null; } }
259         public System.Data.SqlTypes.SqlXml EventData { get { throw null; } }
260         public Microsoft.SqlServer.Server.TriggerAction TriggerAction { get { throw null; } }
IsUpdatedColumn(int columnOrdinal)261         public bool IsUpdatedColumn(int columnOrdinal) { throw null; }
262     }
263     [System.AttributeUsageAttribute((System.AttributeTargets)(12), AllowMultiple=false, Inherited=false)]
264     public sealed partial class SqlUserDefinedAggregateAttribute : System.Attribute
265     {
266         public const int MaxByteSizeValue = 8000;
SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format)267         public SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format) { }
268         public Microsoft.SqlServer.Server.Format Format { get { throw null; } }
269         public bool IsInvariantToDuplicates { get { throw null; } set { } }
270         public bool IsInvariantToNulls { get { throw null; } set { } }
271         public bool IsInvariantToOrder { get { throw null; } set { } }
272         public bool IsNullIfEmpty { get { throw null; } set { } }
273         public int MaxByteSize { get { throw null; } set { } }
274         public string Name { get { throw null; } set { } }
275     }
276     [System.AttributeUsageAttribute((System.AttributeTargets)(12), AllowMultiple=false, Inherited=true)]
277     public sealed partial class SqlUserDefinedTypeAttribute : System.Attribute
278     {
SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format)279         public SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format) { }
280         public Microsoft.SqlServer.Server.Format Format { get { throw null; } }
281         public bool IsByteOrdered { get { throw null; } set { } }
282         public bool IsFixedLength { get { throw null; } set { } }
283         public int MaxByteSize { get { throw null; } set { } }
284         public string Name { get { throw null; } set { } }
285         public string ValidationMethodName { get { throw null; } set { } }
286     }
287     [System.SerializableAttribute]
288     public enum SystemDataAccessKind
289     {
290         None = 0,
291         Read = 1,
292     }
293     public enum TriggerAction
294     {
295         AlterAppRole = 138,
296         AlterAssembly = 102,
297         AlterBinding = 175,
298         AlterFunction = 62,
299         AlterIndex = 25,
300         AlterLogin = 145,
301         AlterPartitionFunction = 192,
302         AlterPartitionScheme = 195,
303         AlterProcedure = 52,
304         AlterQueue = 158,
305         AlterRole = 135,
306         AlterRoute = 165,
307         AlterSchema = 142,
308         AlterService = 162,
309         AlterTable = 22,
310         AlterTrigger = 72,
311         AlterUser = 132,
312         AlterView = 42,
313         CreateAppRole = 137,
314         CreateAssembly = 101,
315         CreateBinding = 174,
316         CreateContract = 154,
317         CreateEventNotification = 74,
318         CreateFunction = 61,
319         CreateIndex = 24,
320         CreateLogin = 144,
321         CreateMsgType = 151,
322         CreatePartitionFunction = 191,
323         CreatePartitionScheme = 194,
324         CreateProcedure = 51,
325         CreateQueue = 157,
326         CreateRole = 134,
327         CreateRoute = 164,
328         CreateSchema = 141,
329         CreateSecurityExpression = 31,
330         CreateService = 161,
331         CreateSynonym = 34,
332         CreateTable = 21,
333         CreateTrigger = 71,
334         CreateType = 91,
335         CreateUser = 131,
336         CreateView = 41,
337         Delete = 3,
338         DenyObject = 171,
339         DenyStatement = 168,
340         DropAppRole = 139,
341         DropAssembly = 103,
342         DropBinding = 176,
343         DropContract = 156,
344         DropEventNotification = 76,
345         DropFunction = 63,
346         DropIndex = 26,
347         DropLogin = 146,
348         DropMsgType = 153,
349         DropPartitionFunction = 193,
350         DropPartitionScheme = 196,
351         DropProcedure = 53,
352         DropQueue = 159,
353         DropRole = 136,
354         DropRoute = 166,
355         DropSchema = 143,
356         DropSecurityExpression = 33,
357         DropService = 163,
358         DropSynonym = 36,
359         DropTable = 23,
360         DropTrigger = 73,
361         DropType = 93,
362         DropUser = 133,
363         DropView = 43,
364         GrantObject = 170,
365         GrantStatement = 167,
366         Insert = 1,
367         Invalid = 0,
368         RevokeObject = 172,
369         RevokeStatement = 169,
370         Update = 2,
371     }
372 }
373 namespace System
374 {
375     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
376     internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute
377     {
MonoDocumentationNoteAttribute(string comment)378         public MonoDocumentationNoteAttribute(string comment) { }
379     }
380     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
381     internal partial class MonoExtensionAttribute : System.MonoTODOAttribute
382     {
MonoExtensionAttribute(string comment)383         public MonoExtensionAttribute(string comment) { }
384     }
385     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
386     internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute
387     {
MonoInternalNoteAttribute(string comment)388         public MonoInternalNoteAttribute(string comment) { }
389     }
390     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
391     internal partial class MonoLimitationAttribute : System.MonoTODOAttribute
392     {
MonoLimitationAttribute(string comment)393         public MonoLimitationAttribute(string comment) { }
394     }
395     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
396     internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute
397     {
MonoNotSupportedAttribute(string comment)398         public MonoNotSupportedAttribute(string comment) { }
399     }
400     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
401     internal partial class MonoTODOAttribute : System.Attribute
402     {
MonoTODOAttribute()403         public MonoTODOAttribute() { }
MonoTODOAttribute(string comment)404         public MonoTODOAttribute(string comment) { }
405         public string Comment { get { throw null; } }
406     }
407 }
408 namespace System.Data
409 {
410     public enum AcceptRejectRule
411     {
412         Cascade = 1,
413         None = 0,
414     }
415     [System.FlagsAttribute]
416     public enum CommandBehavior
417     {
418         CloseConnection = 32,
419         Default = 0,
420         KeyInfo = 4,
421         SchemaOnly = 2,
422         SequentialAccess = 16,
423         SingleResult = 1,
424         SingleRow = 8,
425     }
426     public enum CommandType
427     {
428         StoredProcedure = 4,
429         TableDirect = 512,
430         Text = 1,
431     }
432     public enum ConflictOption
433     {
434         CompareAllSearchableValues = 1,
435         CompareRowVersion = 2,
436         OverwriteChanges = 3,
437     }
438     [System.FlagsAttribute]
439     public enum ConnectionState
440     {
441         Broken = 16,
442         Closed = 0,
443         Connecting = 2,
444         Executing = 4,
445         Fetching = 8,
446         Open = 1,
447     }
448     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
449     [System.ComponentModel.TypeConverterAttribute("System.Data.ConstraintConverter")]
450     public abstract partial class Constraint
451     {
Constraint()452         protected Constraint() { }
453         [System.ComponentModel.DefaultValueAttribute("")]
454         public virtual string ConstraintName { get { throw null; } set { } }
455         [System.ComponentModel.BrowsableAttribute(false)]
456         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
457         public abstract System.Data.DataTable Table { get; }
458         [System.CLSCompliantAttribute(false)]
459         protected virtual System.Data.DataSet _DataSet { get { throw null; } }
CheckStateForProperty()460         protected void CheckStateForProperty() { }
SetDataSet(System.Data.DataSet dataSet)461         protected internal void SetDataSet(System.Data.DataSet dataSet) { }
ToString()462         public override string ToString() { throw null; }
463     }
464     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
465     public sealed partial class ConstraintCollection : System.Data.InternalDataCollectionBase
466     {
ConstraintCollection()467         internal ConstraintCollection() { }
468         public System.Data.Constraint this[int index] { get { throw null; } }
469         public System.Data.Constraint this[string name] { get { throw null; } }
470         protected override System.Collections.ArrayList List { get { throw null; } }
471         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add(System.Data.Constraint constraint)472         public void Add(System.Data.Constraint constraint) { }
Add(string name, System.Data.DataColumn column, bool primaryKey)473         public System.Data.Constraint Add(string name, System.Data.DataColumn column, bool primaryKey) { throw null; }
Add(string name, System.Data.DataColumn primaryKeyColumn, System.Data.DataColumn foreignKeyColumn)474         public System.Data.Constraint Add(string name, System.Data.DataColumn primaryKeyColumn, System.Data.DataColumn foreignKeyColumn) { throw null; }
Add(string name, System.Data.DataColumn[] columns, bool primaryKey)475         public System.Data.Constraint Add(string name, System.Data.DataColumn[] columns, bool primaryKey) { throw null; }
Add(string name, System.Data.DataColumn[] primaryKeyColumns, System.Data.DataColumn[] foreignKeyColumns)476         public System.Data.Constraint Add(string name, System.Data.DataColumn[] primaryKeyColumns, System.Data.DataColumn[] foreignKeyColumns) { throw null; }
AddRange(System.Data.Constraint[] constraints)477         public void AddRange(System.Data.Constraint[] constraints) { }
CanRemove(System.Data.Constraint constraint)478         public bool CanRemove(System.Data.Constraint constraint) { throw null; }
Clear()479         public void Clear() { }
Contains(string name)480         public bool Contains(string name) { throw null; }
CopyTo(System.Data.Constraint[] array, int index)481         public void CopyTo(System.Data.Constraint[] array, int index) { }
IndexOf(System.Data.Constraint constraint)482         public int IndexOf(System.Data.Constraint constraint) { throw null; }
IndexOf(string constraintName)483         public int IndexOf(string constraintName) { throw null; }
Remove(System.Data.Constraint constraint)484         public void Remove(System.Data.Constraint constraint) { }
Remove(string name)485         public void Remove(string name) { }
RemoveAt(int index)486         public void RemoveAt(int index) { }
487     }
488     [System.SerializableAttribute]
489     public partial class ConstraintException : System.Data.DataException
490     {
ConstraintException()491         public ConstraintException() { }
ConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)492         protected ConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ConstraintException(string s)493         public ConstraintException(string s) { }
ConstraintException(string message, System.Exception innerException)494         public ConstraintException(string message, System.Exception innerException) { }
495     }
496     [System.ComponentModel.DefaultPropertyAttribute("ColumnName")]
497     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
498     [System.ComponentModel.ToolboxItemAttribute(false)]
499     public partial class DataColumn : System.ComponentModel.MarshalByValueComponent
500     {
DataColumn()501         public DataColumn() { }
DataColumn(string columnName)502         public DataColumn(string columnName) { }
DataColumn(string columnName, System.Type dataType)503         public DataColumn(string columnName, System.Type dataType) { }
DataColumn(string columnName, System.Type dataType, string expr)504         public DataColumn(string columnName, System.Type dataType, string expr) { }
DataColumn(string columnName, System.Type dataType, string expr, System.Data.MappingType type)505         public DataColumn(string columnName, System.Type dataType, string expr, System.Data.MappingType type) { }
506         [System.ComponentModel.DefaultValueAttribute(true)]
507         public bool AllowDBNull { get { throw null; } set { } }
508         [System.ComponentModel.DefaultValueAttribute(false)]
509         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
510         public bool AutoIncrement { get { throw null; } set { } }
511         [System.ComponentModel.DefaultValueAttribute((long)0)]
512         public long AutoIncrementSeed { get { throw null; } set { } }
513         [System.ComponentModel.DefaultValueAttribute((long)1)]
514         public long AutoIncrementStep { get { throw null; } set { } }
515         public string Caption { get { throw null; } set { } }
516         [System.ComponentModel.DefaultValueAttribute((System.Data.MappingType)(1))]
517         public virtual System.Data.MappingType ColumnMapping { get { throw null; } set { } }
518         [System.ComponentModel.DefaultValueAttribute("")]
519         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
520         public string ColumnName { get { throw null; } set { } }
521         [System.ComponentModel.DefaultValueAttribute(typeof(string))]
522         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
523         [System.ComponentModel.TypeConverterAttribute("System.Data.ColumnTypeConverter")]
524         public System.Type DataType { get { throw null; } set { } }
525         [System.ComponentModel.DefaultValueAttribute((System.Data.DataSetDateTime)(3))]
526         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
527         public System.Data.DataSetDateTime DateTimeMode { get { throw null; } set { } }
528         [System.ComponentModel.TypeConverterAttribute("System.Data.DefaultValueTypeConverter")]
529         public object DefaultValue { get { throw null; } set { } }
530         [System.ComponentModel.DefaultValueAttribute("")]
531         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
532         public string Expression { get { throw null; } set { } }
533         [System.ComponentModel.BrowsableAttribute(false)]
534         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
535         [System.ComponentModel.DefaultValueAttribute(-1)]
536         public int MaxLength { get { throw null; } set { } }
537         public string Namespace { get { throw null; } set { } }
538         [System.ComponentModel.BrowsableAttribute(false)]
539         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
540         public int Ordinal { get { throw null; } }
541         [System.ComponentModel.DefaultValueAttribute("")]
542         public string Prefix { get { throw null; } set { } }
543         [System.ComponentModel.DefaultValueAttribute(false)]
544         public bool ReadOnly { get { throw null; } set { } }
545         [System.ComponentModel.BrowsableAttribute(false)]
546         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
547         public System.Data.DataTable Table { get { throw null; } }
548         [System.ComponentModel.DefaultValueAttribute(false)]
549         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
550         public bool Unique { get { throw null; } set { } }
CheckNotAllowNull()551         protected internal void CheckNotAllowNull() { }
CheckUnique()552         protected void CheckUnique() { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)553         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
RaisePropertyChanging(string name)554         protected internal void RaisePropertyChanging(string name) { }
SetOrdinal(int ordinal)555         public void SetOrdinal(int ordinal) { }
ToString()556         public override string ToString() { throw null; }
557     }
558     public partial class DataColumnChangeEventArgs : System.EventArgs
559     {
DataColumnChangeEventArgs(System.Data.DataRow row, System.Data.DataColumn column, object value)560         public DataColumnChangeEventArgs(System.Data.DataRow row, System.Data.DataColumn column, object value) { }
561         public System.Data.DataColumn Column { get { throw null; } }
562         public object ProposedValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
563         public System.Data.DataRow Row { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
564     }
DataColumnChangeEventHandler(object sender, System.Data.DataColumnChangeEventArgs e)565     public delegate void DataColumnChangeEventHandler(object sender, System.Data.DataColumnChangeEventArgs e);
566     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
567     public sealed partial class DataColumnCollection : System.Data.InternalDataCollectionBase
568     {
DataColumnCollection()569         internal DataColumnCollection() { }
570         public System.Data.DataColumn this[int index] { get { throw null; } }
571         public System.Data.DataColumn this[string name] { get { throw null; } }
572         protected override System.Collections.ArrayList List { get { throw null; } }
573         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add()574         public System.Data.DataColumn Add() { throw null; }
Add(System.Data.DataColumn column)575         public void Add(System.Data.DataColumn column) { }
Add(string columnName)576         public System.Data.DataColumn Add(string columnName) { throw null; }
Add(string columnName, System.Type type)577         public System.Data.DataColumn Add(string columnName, System.Type type) { throw null; }
Add(string columnName, System.Type type, string expression)578         public System.Data.DataColumn Add(string columnName, System.Type type, string expression) { throw null; }
AddRange(System.Data.DataColumn[] columns)579         public void AddRange(System.Data.DataColumn[] columns) { }
CanRemove(System.Data.DataColumn column)580         public bool CanRemove(System.Data.DataColumn column) { throw null; }
Clear()581         public void Clear() { }
Contains(string name)582         public bool Contains(string name) { throw null; }
CopyTo(System.Data.DataColumn[] array, int index)583         public void CopyTo(System.Data.DataColumn[] array, int index) { }
IndexOf(System.Data.DataColumn column)584         public int IndexOf(System.Data.DataColumn column) { throw null; }
IndexOf(string columnName)585         public int IndexOf(string columnName) { throw null; }
Remove(System.Data.DataColumn column)586         public void Remove(System.Data.DataColumn column) { }
Remove(string name)587         public void Remove(string name) { }
RemoveAt(int index)588         public void RemoveAt(int index) { }
589     }
590     [System.SerializableAttribute]
591     public partial class DataException : System.SystemException
592     {
DataException()593         public DataException() { }
DataException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)594         protected DataException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataException(string s)595         public DataException(string s) { }
DataException(string s, System.Exception innerException)596         public DataException(string s, System.Exception innerException) { }
597     }
598     [System.ComponentModel.DefaultPropertyAttribute("RelationName")]
599     [System.ComponentModel.TypeConverterAttribute("System.Data.RelationshipConverter")]
600     public partial class DataRelation
601     {
DataRelation(string relationName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)602         public DataRelation(string relationName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
DataRelation(string relationName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn, bool createConstraints)603         public DataRelation(string relationName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn, bool createConstraints) { }
DataRelation(string relationName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)604         public DataRelation(string relationName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
DataRelation(string relationName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns, bool createConstraints)605         public DataRelation(string relationName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns, bool createConstraints) { }
606         [System.ComponentModel.BrowsableAttribute(false)]
DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested)607         public DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested) { }
608         [System.ComponentModel.BrowsableAttribute(false)]
DataRelation(string relationName, string parentTableName, string childTableName, string[] parentColumnNames, string[] childColumnNames, bool nested)609         public DataRelation(string relationName, string parentTableName, string childTableName, string[] parentColumnNames, string[] childColumnNames, bool nested) { }
610         public virtual System.Data.DataColumn[] ChildColumns { get { throw null; } }
611         public virtual System.Data.ForeignKeyConstraint ChildKeyConstraint { get { throw null; } }
612         public virtual System.Data.DataTable ChildTable { get { throw null; } }
613         [System.ComponentModel.BrowsableAttribute(false)]
614         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
615         public virtual System.Data.DataSet DataSet { get { throw null; } }
616         [System.ComponentModel.BrowsableAttribute(false)]
617         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
618         [System.ComponentModel.DefaultValueAttribute(false)]
619         public virtual bool Nested { get { throw null; } set { } }
620         public virtual System.Data.DataColumn[] ParentColumns { get { throw null; } }
621         public virtual System.Data.UniqueConstraint ParentKeyConstraint { get { throw null; } }
622         public virtual System.Data.DataTable ParentTable { get { throw null; } }
623         [System.ComponentModel.DefaultValueAttribute("")]
624         public virtual string RelationName { get { throw null; } set { } }
CheckStateForProperty()625         protected void CheckStateForProperty() { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)626         protected internal void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
RaisePropertyChanging(string name)627         protected internal void RaisePropertyChanging(string name) { }
ToString()628         public override string ToString() { throw null; }
629     }
630     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
631     [System.ComponentModel.DefaultPropertyAttribute("Table")]
632     public abstract partial class DataRelationCollection : System.Data.InternalDataCollectionBase
633     {
DataRelationCollection()634         protected DataRelationCollection() { }
635         public abstract System.Data.DataRelation this[int index] { get; }
636         public abstract System.Data.DataRelation this[string name] { get; }
637         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)638         public virtual System.Data.DataRelation Add(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { throw null; }
Add(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)639         public virtual System.Data.DataRelation Add(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { throw null; }
Add(System.Data.DataRelation relation)640         public void Add(System.Data.DataRelation relation) { }
Add(string name, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)641         public virtual System.Data.DataRelation Add(string name, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { throw null; }
Add(string name, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn, bool createConstraints)642         public virtual System.Data.DataRelation Add(string name, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn, bool createConstraints) { throw null; }
Add(string name, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)643         public virtual System.Data.DataRelation Add(string name, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { throw null; }
Add(string name, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns, bool createConstraints)644         public virtual System.Data.DataRelation Add(string name, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns, bool createConstraints) { throw null; }
AddCore(System.Data.DataRelation relation)645         protected virtual void AddCore(System.Data.DataRelation relation) { }
AddRange(System.Data.DataRelation[] relations)646         public virtual void AddRange(System.Data.DataRelation[] relations) { }
CanRemove(System.Data.DataRelation relation)647         public virtual bool CanRemove(System.Data.DataRelation relation) { throw null; }
Clear()648         public virtual void Clear() { }
Contains(string name)649         public virtual bool Contains(string name) { throw null; }
CopyTo(System.Data.DataRelation[] array, int index)650         public void CopyTo(System.Data.DataRelation[] array, int index) { }
GetDataSet()651         protected abstract System.Data.DataSet GetDataSet();
IndexOf(System.Data.DataRelation relation)652         public virtual int IndexOf(System.Data.DataRelation relation) { throw null; }
IndexOf(string relationName)653         public virtual int IndexOf(string relationName) { throw null; }
OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent)654         protected virtual void OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent) { }
OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs ccevent)655         protected virtual void OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs ccevent) { }
Remove(System.Data.DataRelation relation)656         public void Remove(System.Data.DataRelation relation) { }
Remove(string name)657         public void Remove(string name) { }
RemoveAt(int index)658         public void RemoveAt(int index) { }
RemoveCore(System.Data.DataRelation relation)659         protected virtual void RemoveCore(System.Data.DataRelation relation) { }
660     }
661     public partial class DataRow
662     {
DataRow(System.Data.DataRowBuilder builder)663         protected internal DataRow(System.Data.DataRowBuilder builder) { }
664         public bool HasErrors { get { throw null; } }
665         public object this[System.Data.DataColumn column] { get { throw null; } set { } }
666         public object this[System.Data.DataColumn column, System.Data.DataRowVersion version] { get { throw null; } }
667         public object this[int columnIndex] { get { throw null; } set { } }
668         public object this[int columnIndex, System.Data.DataRowVersion version] { get { throw null; } }
669         public object this[string columnName] { get { throw null; } set { } }
670         public object this[string columnName, System.Data.DataRowVersion version] { get { throw null; } }
671         public object[] ItemArray { get { throw null; } set { } }
672         public string RowError { get { throw null; } set { } }
673         public System.Data.DataRowState RowState { get { throw null; } }
674         public System.Data.DataTable Table { get { throw null; } }
AcceptChanges()675         public void AcceptChanges() { }
676         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
BeginEdit()677         public void BeginEdit() { }
678         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
CancelEdit()679         public void CancelEdit() { }
ClearErrors()680         public void ClearErrors() { }
Delete()681         public void Delete() { }
682         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
EndEdit()683         public void EndEdit() { }
GetChildRows(System.Data.DataRelation relation)684         public System.Data.DataRow[] GetChildRows(System.Data.DataRelation relation) { throw null; }
GetChildRows(System.Data.DataRelation relation, System.Data.DataRowVersion version)685         public System.Data.DataRow[] GetChildRows(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetChildRows(string relationName)686         public System.Data.DataRow[] GetChildRows(string relationName) { throw null; }
GetChildRows(string relationName, System.Data.DataRowVersion version)687         public System.Data.DataRow[] GetChildRows(string relationName, System.Data.DataRowVersion version) { throw null; }
GetColumnError(System.Data.DataColumn column)688         public string GetColumnError(System.Data.DataColumn column) { throw null; }
GetColumnError(int columnIndex)689         public string GetColumnError(int columnIndex) { throw null; }
GetColumnError(string columnName)690         public string GetColumnError(string columnName) { throw null; }
GetColumnsInError()691         public System.Data.DataColumn[] GetColumnsInError() { throw null; }
GetParentRow(System.Data.DataRelation relation)692         public System.Data.DataRow GetParentRow(System.Data.DataRelation relation) { throw null; }
GetParentRow(System.Data.DataRelation relation, System.Data.DataRowVersion version)693         public System.Data.DataRow GetParentRow(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetParentRow(string relationName)694         public System.Data.DataRow GetParentRow(string relationName) { throw null; }
GetParentRow(string relationName, System.Data.DataRowVersion version)695         public System.Data.DataRow GetParentRow(string relationName, System.Data.DataRowVersion version) { throw null; }
GetParentRows(System.Data.DataRelation relation)696         public System.Data.DataRow[] GetParentRows(System.Data.DataRelation relation) { throw null; }
GetParentRows(System.Data.DataRelation relation, System.Data.DataRowVersion version)697         public System.Data.DataRow[] GetParentRows(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetParentRows(string relationName)698         public System.Data.DataRow[] GetParentRows(string relationName) { throw null; }
GetParentRows(string relationName, System.Data.DataRowVersion version)699         public System.Data.DataRow[] GetParentRows(string relationName, System.Data.DataRowVersion version) { throw null; }
HasVersion(System.Data.DataRowVersion version)700         public bool HasVersion(System.Data.DataRowVersion version) { throw null; }
IsNull(System.Data.DataColumn column)701         public bool IsNull(System.Data.DataColumn column) { throw null; }
IsNull(System.Data.DataColumn column, System.Data.DataRowVersion version)702         public bool IsNull(System.Data.DataColumn column, System.Data.DataRowVersion version) { throw null; }
IsNull(int columnIndex)703         public bool IsNull(int columnIndex) { throw null; }
IsNull(string columnName)704         public bool IsNull(string columnName) { throw null; }
RejectChanges()705         public void RejectChanges() { }
SetAdded()706         public void SetAdded() { }
SetColumnError(System.Data.DataColumn column, string error)707         public void SetColumnError(System.Data.DataColumn column, string error) { }
SetColumnError(int columnIndex, string error)708         public void SetColumnError(int columnIndex, string error) { }
SetColumnError(string columnName, string error)709         public void SetColumnError(string columnName, string error) { }
SetModified()710         public void SetModified() { }
SetNull(System.Data.DataColumn column)711         protected void SetNull(System.Data.DataColumn column) { }
SetParentRow(System.Data.DataRow parentRow)712         public void SetParentRow(System.Data.DataRow parentRow) { }
SetParentRow(System.Data.DataRow parentRow, System.Data.DataRelation relation)713         public void SetParentRow(System.Data.DataRow parentRow, System.Data.DataRelation relation) { }
714     }
715     [System.FlagsAttribute]
716     public enum DataRowAction
717     {
718         Add = 16,
719         Change = 2,
720         ChangeCurrentAndOriginal = 64,
721         ChangeOriginal = 32,
722         Commit = 8,
723         Delete = 1,
724         Nothing = 0,
725         Rollback = 4,
726     }
727     public sealed partial class DataRowBuilder
728     {
DataRowBuilder()729         internal DataRowBuilder() { }
730     }
731     public partial class DataRowChangeEventArgs : System.EventArgs
732     {
DataRowChangeEventArgs(System.Data.DataRow row, System.Data.DataRowAction action)733         public DataRowChangeEventArgs(System.Data.DataRow row, System.Data.DataRowAction action) { }
734         public System.Data.DataRowAction Action { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
735         public System.Data.DataRow Row { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
736     }
DataRowChangeEventHandler(object sender, System.Data.DataRowChangeEventArgs e)737     public delegate void DataRowChangeEventHandler(object sender, System.Data.DataRowChangeEventArgs e);
738     public sealed partial class DataRowCollection : System.Data.InternalDataCollectionBase
739     {
DataRowCollection()740         internal DataRowCollection() { }
741         public override int Count { get { throw null; } }
742         public System.Data.DataRow this[int index] { get { throw null; } }
Add(System.Data.DataRow row)743         public void Add(System.Data.DataRow row) { }
Add(params object[] values)744         public System.Data.DataRow Add(params object[] values) { throw null; }
Clear()745         public void Clear() { }
Contains(object key)746         public bool Contains(object key) { throw null; }
Contains(object[] keys)747         public bool Contains(object[] keys) { throw null; }
CopyTo(System.Array ar, int index)748         public override void CopyTo(System.Array ar, int index) { }
CopyTo(System.Data.DataRow[] array, int index)749         public void CopyTo(System.Data.DataRow[] array, int index) { }
Find(object key)750         public System.Data.DataRow Find(object key) { throw null; }
Find(object[] keys)751         public System.Data.DataRow Find(object[] keys) { throw null; }
GetEnumerator()752         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.Data.DataRow row)753         public int IndexOf(System.Data.DataRow row) { throw null; }
InsertAt(System.Data.DataRow row, int pos)754         public void InsertAt(System.Data.DataRow row, int pos) { }
Remove(System.Data.DataRow row)755         public void Remove(System.Data.DataRow row) { }
RemoveAt(int index)756         public void RemoveAt(int index) { }
757     }
758     [System.FlagsAttribute]
759     public enum DataRowState
760     {
761         Added = 4,
762         Deleted = 8,
763         Detached = 1,
764         Modified = 16,
765         Unchanged = 2,
766     }
767     public enum DataRowVersion
768     {
769         Current = 512,
770         Default = 1536,
771         Original = 256,
772         Proposed = 1024,
773     }
774     public partial class DataRowView : System.ComponentModel.ICustomTypeDescriptor, System.ComponentModel.IDataErrorInfo, System.ComponentModel.IEditableObject, System.ComponentModel.INotifyPropertyChanged
775     {
DataRowView()776         internal DataRowView() { }
777         public System.Data.DataView DataView { get { throw null; } }
778         public bool IsEdit { get { throw null; } }
779         public bool IsNew { get { throw null; } }
780         public object this[int ndx] { get { throw null; } set { } }
781         public object this[string property] { get { throw null; } set { } }
782         public System.Data.DataRow Row { get { throw null; } }
783         public System.Data.DataRowVersion RowVersion { get { throw null; } }
784         string System.ComponentModel.IDataErrorInfo.Error { get { throw null; } }
785         string System.ComponentModel.IDataErrorInfo.this[string colName] { get { throw null; } }
786         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
BeginEdit()787         public void BeginEdit() { }
CancelEdit()788         public void CancelEdit() { }
CreateChildView(System.Data.DataRelation relation)789         public System.Data.DataView CreateChildView(System.Data.DataRelation relation) { throw null; }
CreateChildView(System.Data.DataRelation relation, bool followParent)790         public System.Data.DataView CreateChildView(System.Data.DataRelation relation, bool followParent) { throw null; }
CreateChildView(string relationName)791         public System.Data.DataView CreateChildView(string relationName) { throw null; }
CreateChildView(string relationName, bool followParent)792         public System.Data.DataView CreateChildView(string relationName, bool followParent) { throw null; }
Delete()793         public void Delete() { }
EndEdit()794         public void EndEdit() { }
Equals(object other)795         public override bool Equals(object other) { throw null; }
GetHashCode()796         public override int GetHashCode() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()797         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()798         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()799         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()800         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()801         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()802         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)803         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()804         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)805         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()806         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)807         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)808         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
809     }
810     [System.ComponentModel.DefaultPropertyAttribute("DataSetName")]
811     [System.Xml.Serialization.XmlRootAttribute("DataSet")]
812     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetDataSetSchema")]
813     [System.SerializableAttribute]
814     public partial class DataSet : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
815     {
DataSet()816         public DataSet() { }
DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)817         protected DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context, bool ConstructSchema)818         protected DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context, bool ConstructSchema) { }
DataSet(string dataSetName)819         public DataSet(string dataSetName) { }
820         [System.ComponentModel.DefaultValueAttribute(false)]
821         public bool CaseSensitive { get { throw null; } set { } }
822         [System.ComponentModel.DefaultValueAttribute("")]
823         public string DataSetName { get { throw null; } set { } }
824         [System.ComponentModel.BrowsableAttribute(false)]
825         public System.Data.DataViewManager DefaultViewManager { get { throw null; } }
826         [System.ComponentModel.DefaultValueAttribute(true)]
827         public bool EnforceConstraints { get { throw null; } set { } }
828         [System.ComponentModel.BrowsableAttribute(false)]
829         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
830         [System.ComponentModel.BrowsableAttribute(false)]
831         public bool HasErrors { get { throw null; } }
832         [System.ComponentModel.BrowsableAttribute(false)]
833         public bool IsInitialized { get { throw null; } }
834         public System.Globalization.CultureInfo Locale { get { throw null; } set { } }
835         [System.ComponentModel.DefaultValueAttribute("")]
836         public string Namespace { get { throw null; } set { } }
837         [System.ComponentModel.DefaultValueAttribute("")]
838         public string Prefix { get { throw null; } set { } }
839         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
840         public System.Data.DataRelationCollection Relations { get { throw null; } }
841         [System.ComponentModel.DefaultValueAttribute((System.Data.SerializationFormat)(0))]
842         public System.Data.SerializationFormat RemotingFormat { get { throw null; } set { } }
843         [System.ComponentModel.BrowsableAttribute(false)]
844         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
845         public virtual System.Data.SchemaSerializationMode SchemaSerializationMode { get { throw null; } set { } }
846         [System.ComponentModel.BrowsableAttribute(false)]
847         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
848         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
849         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
850         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
851         public System.Data.DataTableCollection Tables { get { throw null; } }
852         public event System.EventHandler Initialized { add { } remove { } }
853         public event System.Data.MergeFailedEventHandler MergeFailed { add { } remove { } }
AcceptChanges()854         public void AcceptChanges() { }
BeginInit()855         public void BeginInit() { }
Clear()856         public void Clear() { }
Clone()857         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public virtual System.Data.DataSet Clone() { throw null; }
Copy()858         public System.Data.DataSet Copy() { throw null; }
CreateDataReader()859         public System.Data.DataTableReader CreateDataReader() { throw null; }
CreateDataReader(params System.Data.DataTable[] dataTables)860         public System.Data.DataTableReader CreateDataReader(params System.Data.DataTable[] dataTables) { throw null; }
DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)861         protected System.Data.SchemaSerializationMode DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw null; }
DetermineSchemaSerializationMode(System.Xml.XmlReader reader)862         protected System.Data.SchemaSerializationMode DetermineSchemaSerializationMode(System.Xml.XmlReader reader) { throw null; }
EndInit()863         public void EndInit() { }
GetChanges()864         public System.Data.DataSet GetChanges() { throw null; }
GetChanges(System.Data.DataRowState rowStates)865         public System.Data.DataSet GetChanges(System.Data.DataRowState rowStates) { throw null; }
GetDataSetSchema(System.Xml.Schema.XmlSchemaSet schemaSet)866         public static System.Xml.Schema.XmlSchemaComplexType GetDataSetSchema(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)867         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetSchemaSerializable()868         protected virtual System.Xml.Schema.XmlSchema GetSchemaSerializable() { throw null; }
GetSerializationData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)869         protected void GetSerializationData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetXml()870         public string GetXml() { throw null; }
GetXmlSchema()871         public string GetXmlSchema() { throw null; }
HasChanges()872         public bool HasChanges() { throw null; }
HasChanges(System.Data.DataRowState rowStates)873         public bool HasChanges(System.Data.DataRowState rowStates) { throw null; }
InferXmlSchema(System.IO.Stream stream, string[] nsArray)874         public void InferXmlSchema(System.IO.Stream stream, string[] nsArray) { }
InferXmlSchema(System.IO.TextReader reader, string[] nsArray)875         public void InferXmlSchema(System.IO.TextReader reader, string[] nsArray) { }
InferXmlSchema(string fileName, string[] nsArray)876         public void InferXmlSchema(string fileName, string[] nsArray) { }
InferXmlSchema(System.Xml.XmlReader reader, string[] nsArray)877         public void InferXmlSchema(System.Xml.XmlReader reader, string[] nsArray) { }
InitializeDerivedDataSet()878         protected virtual void InitializeDerivedDataSet() { }
IsBinarySerialized(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)879         protected bool IsBinarySerialized(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw null; }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, params System.Data.DataTable[] tables)880         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, params System.Data.DataTable[] tables) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler, params System.Data.DataTable[] tables)881         public virtual void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler, params System.Data.DataTable[] tables) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, params string[] tables)882         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, params string[] tables) { }
Merge(System.Data.DataRow[] rows)883         public void Merge(System.Data.DataRow[] rows) { }
Merge(System.Data.DataRow[] rows, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)884         public void Merge(System.Data.DataRow[] rows, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
Merge(System.Data.DataSet dataSet)885         public void Merge(System.Data.DataSet dataSet) { }
Merge(System.Data.DataSet dataSet, bool preserveChanges)886         public void Merge(System.Data.DataSet dataSet, bool preserveChanges) { }
Merge(System.Data.DataSet dataSet, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)887         public void Merge(System.Data.DataSet dataSet, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
Merge(System.Data.DataTable table)888         public void Merge(System.Data.DataTable table) { }
Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)889         public void Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)890         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
OnRemoveRelation(System.Data.DataRelation relation)891         protected virtual void OnRemoveRelation(System.Data.DataRelation relation) { }
OnRemoveTable(System.Data.DataTable table)892         protected internal virtual void OnRemoveTable(System.Data.DataTable table) { }
RaisePropertyChanging(string name)893         protected internal void RaisePropertyChanging(string name) { }
ReadXml(System.IO.Stream stream)894         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream) { throw null; }
ReadXml(System.IO.Stream stream, System.Data.XmlReadMode mode)895         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream, System.Data.XmlReadMode mode) { throw null; }
ReadXml(System.IO.TextReader reader)896         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader) { throw null; }
ReadXml(System.IO.TextReader reader, System.Data.XmlReadMode mode)897         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader, System.Data.XmlReadMode mode) { throw null; }
ReadXml(string fileName)898         public System.Data.XmlReadMode ReadXml(string fileName) { throw null; }
ReadXml(string fileName, System.Data.XmlReadMode mode)899         public System.Data.XmlReadMode ReadXml(string fileName, System.Data.XmlReadMode mode) { throw null; }
ReadXml(System.Xml.XmlReader reader)900         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader) { throw null; }
ReadXml(System.Xml.XmlReader reader, System.Data.XmlReadMode mode)901         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader, System.Data.XmlReadMode mode) { throw null; }
ReadXmlSchema(System.IO.Stream stream)902         public void ReadXmlSchema(System.IO.Stream stream) { }
ReadXmlSchema(System.IO.TextReader reader)903         public void ReadXmlSchema(System.IO.TextReader reader) { }
ReadXmlSchema(string fileName)904         public void ReadXmlSchema(string fileName) { }
ReadXmlSchema(System.Xml.XmlReader reader)905         public void ReadXmlSchema(System.Xml.XmlReader reader) { }
ReadXmlSerializable(System.Xml.XmlReader reader)906         protected virtual void ReadXmlSerializable(System.Xml.XmlReader reader) { }
RejectChanges()907         public virtual void RejectChanges() { }
Reset()908         public virtual void Reset() { }
ShouldSerializeRelations()909         protected virtual bool ShouldSerializeRelations() { throw null; }
ShouldSerializeTables()910         protected virtual bool ShouldSerializeTables() { throw null; }
System.ComponentModel.IListSource.GetList()911         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()912         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader)913         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)914         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.IO.Stream stream)915         public void WriteXml(System.IO.Stream stream) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode)916         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.TextWriter writer)917         public void WriteXml(System.IO.TextWriter writer) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode)918         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(string fileName)919         public void WriteXml(string fileName) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode)920         public void WriteXml(string fileName, System.Data.XmlWriteMode mode) { }
WriteXml(System.Xml.XmlWriter writer)921         public void WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode)922         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode) { }
WriteXmlSchema(System.IO.Stream stream)923         public void WriteXmlSchema(System.IO.Stream stream) { }
WriteXmlSchema(System.IO.Stream stream, System.Converter<System.Type, string> multipleTargetConverter)924         public void WriteXmlSchema(System.IO.Stream stream, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(System.IO.TextWriter writer)925         public void WriteXmlSchema(System.IO.TextWriter writer) { }
WriteXmlSchema(System.IO.TextWriter writer, System.Converter<System.Type, string> multipleTargetConverter)926         public void WriteXmlSchema(System.IO.TextWriter writer, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(string fileName)927         public void WriteXmlSchema(string fileName) { }
WriteXmlSchema(string fileName, System.Converter<System.Type, string> multipleTargetConverter)928         public void WriteXmlSchema(string fileName, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(System.Xml.XmlWriter writer)929         public void WriteXmlSchema(System.Xml.XmlWriter writer) { }
WriteXmlSchema(System.Xml.XmlWriter writer, System.Converter<System.Type, string> multipleTargetConverter)930         public void WriteXmlSchema(System.Xml.XmlWriter writer, System.Converter<System.Type, string> multipleTargetConverter) { }
931     }
932     public enum DataSetDateTime
933     {
934         Local = 1,
935         Unspecified = 2,
936         UnspecifiedLocal = 3,
937         Utc = 4,
938     }
939     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
940     [System.ObsoleteAttribute("DataSysDescriptionAttribute has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202", false)]
941     public partial class DataSysDescriptionAttribute : System.ComponentModel.DescriptionAttribute
942     {
943         [System.ObsoleteAttribute("DataSysDescriptionAttribute has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202", false)]
DataSysDescriptionAttribute(string description)944         public DataSysDescriptionAttribute(string description) { }
945         public override string Description { get { throw null; } }
946     }
947     [System.ComponentModel.DefaultEventAttribute("RowChanging")]
948     [System.ComponentModel.DefaultPropertyAttribute("TableName")]
949     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
950     [System.ComponentModel.ToolboxItemAttribute(false)]
951     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetDataTableSchema")]
952     [System.SerializableAttribute]
953     public partial class DataTable : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
954     {
955         protected internal bool fInitInProgress;
DataTable()956         public DataTable() { }
DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)957         protected DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataTable(string tableName)958         public DataTable(string tableName) { }
DataTable(string tableName, string tableNamespace)959         public DataTable(string tableName, string tableNamespace) { }
960         public bool CaseSensitive { get { throw null; } set { } }
961         [System.ComponentModel.BrowsableAttribute(false)]
962         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
963         public System.Data.DataRelationCollection ChildRelations { get { throw null; } }
964         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
965         public System.Data.DataColumnCollection Columns { get { throw null; } }
966         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
967         public System.Data.ConstraintCollection Constraints { get { throw null; } }
968         [System.ComponentModel.BrowsableAttribute(false)]
969         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
970         public System.Data.DataSet DataSet { get { throw null; } }
971         [System.ComponentModel.BrowsableAttribute(false)]
972         public System.Data.DataView DefaultView { get { throw null; } }
973         [System.ComponentModel.DefaultValueAttribute("")]
974         public string DisplayExpression { get { throw null; } set { } }
975         [System.ComponentModel.BrowsableAttribute(false)]
976         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
977         [System.ComponentModel.BrowsableAttribute(false)]
978         public bool HasErrors { get { throw null; } }
979         [System.ComponentModel.BrowsableAttribute(false)]
980         public bool IsInitialized { get { throw null; } }
981         public System.Globalization.CultureInfo Locale { get { throw null; } set { } }
982         [System.ComponentModel.DefaultValueAttribute(50)]
983         public int MinimumCapacity { get { throw null; } set { } }
984         public string Namespace { get { throw null; } set { } }
985         [System.ComponentModel.BrowsableAttribute(false)]
986         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
987         public System.Data.DataRelationCollection ParentRelations { get { throw null; } }
988         [System.ComponentModel.DefaultValueAttribute("")]
989         public string Prefix { get { throw null; } set { } }
990         [System.ComponentModel.TypeConverterAttribute("System.Data.PrimaryKeyTypeConverter")]
991         public System.Data.DataColumn[] PrimaryKey { get { throw null; } set { } }
992         [System.ComponentModel.DefaultValueAttribute((System.Data.SerializationFormat)(0))]
993         public System.Data.SerializationFormat RemotingFormat { get { throw null; } set { } }
994         [System.ComponentModel.BrowsableAttribute(false)]
995         public System.Data.DataRowCollection Rows { get { throw null; } }
996         [System.ComponentModel.BrowsableAttribute(false)]
997         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
998         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
999         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
1000         [System.ComponentModel.DefaultValueAttribute("")]
1001         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1002         public string TableName { get { throw null; } set { } }
1003         public event System.Data.DataColumnChangeEventHandler ColumnChanged { add { } remove { } }
1004         public event System.Data.DataColumnChangeEventHandler ColumnChanging { add { } remove { } }
1005         public event System.EventHandler Initialized { add { } remove { } }
1006         public event System.Data.DataRowChangeEventHandler RowChanged { add { } remove { } }
1007         public event System.Data.DataRowChangeEventHandler RowChanging { add { } remove { } }
1008         public event System.Data.DataRowChangeEventHandler RowDeleted { add { } remove { } }
1009         public event System.Data.DataRowChangeEventHandler RowDeleting { add { } remove { } }
1010         public event System.Data.DataTableClearEventHandler TableCleared { add { } remove { } }
1011         public event System.Data.DataTableClearEventHandler TableClearing { add { } remove { } }
1012         public event System.Data.DataTableNewRowEventHandler TableNewRow { add { } remove { } }
AcceptChanges()1013         public void AcceptChanges() { }
BeginInit()1014         public virtual void BeginInit() { }
BeginLoadData()1015         public void BeginLoadData() { }
Clear()1016         public void Clear() { }
Clone()1017         public virtual System.Data.DataTable Clone() { throw null; }
Compute(string expression, string filter)1018         public object Compute(string expression, string filter) { throw null; }
Copy()1019         public System.Data.DataTable Copy() { throw null; }
CreateDataReader()1020         public System.Data.DataTableReader CreateDataReader() { throw null; }
CreateInstance()1021         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]protected virtual System.Data.DataTable CreateInstance() { throw null; }
EndInit()1022         public virtual void EndInit() { }
EndLoadData()1023         public void EndLoadData() { }
GetChanges()1024         public System.Data.DataTable GetChanges() { throw null; }
GetChanges(System.Data.DataRowState rowStates)1025         public System.Data.DataTable GetChanges(System.Data.DataRowState rowStates) { throw null; }
GetDataTableSchema(System.Xml.Schema.XmlSchemaSet schemaSet)1026         public static System.Xml.Schema.XmlSchemaComplexType GetDataTableSchema(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GetErrors()1027         public System.Data.DataRow[] GetErrors() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1028         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetRowType()1029         protected virtual System.Type GetRowType() { throw null; }
GetSchema()1030         protected virtual System.Xml.Schema.XmlSchema GetSchema() { throw null; }
ImportRow(System.Data.DataRow row)1031         public void ImportRow(System.Data.DataRow row) { }
Load(System.Data.IDataReader reader)1032         public void Load(System.Data.IDataReader reader) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption)1033         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler)1034         public virtual void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler) { }
LoadDataRow(object[] values, bool fAcceptChanges)1035         public System.Data.DataRow LoadDataRow(object[] values, bool fAcceptChanges) { throw null; }
LoadDataRow(object[] values, System.Data.LoadOption loadOption)1036         public System.Data.DataRow LoadDataRow(object[] values, System.Data.LoadOption loadOption) { throw null; }
Merge(System.Data.DataTable table)1037         public void Merge(System.Data.DataTable table) { }
Merge(System.Data.DataTable table, bool preserveChanges)1038         public void Merge(System.Data.DataTable table, bool preserveChanges) { }
Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)1039         public void Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
NewRow()1040         public System.Data.DataRow NewRow() { throw null; }
NewRowArray(int size)1041         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]protected internal System.Data.DataRow[] NewRowArray(int size) { throw null; }
NewRowFromBuilder(System.Data.DataRowBuilder builder)1042         protected virtual System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) { throw null; }
OnColumnChanged(System.Data.DataColumnChangeEventArgs e)1043         protected internal virtual void OnColumnChanged(System.Data.DataColumnChangeEventArgs e) { }
OnColumnChanging(System.Data.DataColumnChangeEventArgs e)1044         protected internal virtual void OnColumnChanging(System.Data.DataColumnChangeEventArgs e) { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)1045         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
OnRemoveColumn(System.Data.DataColumn column)1046         protected virtual void OnRemoveColumn(System.Data.DataColumn column) { }
OnRowChanged(System.Data.DataRowChangeEventArgs e)1047         protected virtual void OnRowChanged(System.Data.DataRowChangeEventArgs e) { }
OnRowChanging(System.Data.DataRowChangeEventArgs e)1048         protected virtual void OnRowChanging(System.Data.DataRowChangeEventArgs e) { }
OnRowDeleted(System.Data.DataRowChangeEventArgs e)1049         protected virtual void OnRowDeleted(System.Data.DataRowChangeEventArgs e) { }
OnRowDeleting(System.Data.DataRowChangeEventArgs e)1050         protected virtual void OnRowDeleting(System.Data.DataRowChangeEventArgs e) { }
OnTableCleared(System.Data.DataTableClearEventArgs e)1051         protected virtual void OnTableCleared(System.Data.DataTableClearEventArgs e) { }
OnTableClearing(System.Data.DataTableClearEventArgs e)1052         protected virtual void OnTableClearing(System.Data.DataTableClearEventArgs e) { }
OnTableNewRow(System.Data.DataTableNewRowEventArgs e)1053         protected virtual void OnTableNewRow(System.Data.DataTableNewRowEventArgs e) { }
ReadXml(System.IO.Stream stream)1054         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream) { throw null; }
ReadXml(System.IO.TextReader reader)1055         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader) { throw null; }
ReadXml(string fileName)1056         public System.Data.XmlReadMode ReadXml(string fileName) { throw null; }
ReadXml(System.Xml.XmlReader reader)1057         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader) { throw null; }
ReadXmlSchema(System.IO.Stream stream)1058         public void ReadXmlSchema(System.IO.Stream stream) { }
ReadXmlSchema(System.IO.TextReader reader)1059         public void ReadXmlSchema(System.IO.TextReader reader) { }
ReadXmlSchema(string fileName)1060         public void ReadXmlSchema(string fileName) { }
ReadXmlSchema(System.Xml.XmlReader reader)1061         public void ReadXmlSchema(System.Xml.XmlReader reader) { }
ReadXmlSerializable(System.Xml.XmlReader reader)1062         protected virtual void ReadXmlSerializable(System.Xml.XmlReader reader) { }
RejectChanges()1063         public void RejectChanges() { }
Reset()1064         public virtual void Reset() { }
Select()1065         public System.Data.DataRow[] Select() { throw null; }
Select(string filterExpression)1066         public System.Data.DataRow[] Select(string filterExpression) { throw null; }
Select(string filterExpression, string sort)1067         public System.Data.DataRow[] Select(string filterExpression, string sort) { throw null; }
Select(string filterExpression, string sort, System.Data.DataViewRowState recordStates)1068         public System.Data.DataRow[] Select(string filterExpression, string sort, System.Data.DataViewRowState recordStates) { throw null; }
System.ComponentModel.IListSource.GetList()1069         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()1070         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader)1071         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)1072         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToString()1073         public override string ToString() { throw null; }
WriteXml(System.IO.Stream stream)1074         public void WriteXml(System.IO.Stream stream) { }
WriteXml(System.IO.Stream stream, bool writeHierarchy)1075         public void WriteXml(System.IO.Stream stream, bool writeHierarchy) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode)1076         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy)1077         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(System.IO.TextWriter writer)1078         public void WriteXml(System.IO.TextWriter writer) { }
WriteXml(System.IO.TextWriter writer, bool writeHierarchy)1079         public void WriteXml(System.IO.TextWriter writer, bool writeHierarchy) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode)1080         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy)1081         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(string fileName)1082         public void WriteXml(string fileName) { }
WriteXml(string fileName, bool writeHierarchy)1083         public void WriteXml(string fileName, bool writeHierarchy) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode)1084         public void WriteXml(string fileName, System.Data.XmlWriteMode mode) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy)1085         public void WriteXml(string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(System.Xml.XmlWriter writer)1086         public void WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.Xml.XmlWriter writer, bool writeHierarchy)1087         public void WriteXml(System.Xml.XmlWriter writer, bool writeHierarchy) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode)1088         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy)1089         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXmlSchema(System.IO.Stream stream)1090         public void WriteXmlSchema(System.IO.Stream stream) { }
WriteXmlSchema(System.IO.Stream stream, bool writeHierarchy)1091         public void WriteXmlSchema(System.IO.Stream stream, bool writeHierarchy) { }
WriteXmlSchema(System.IO.TextWriter writer)1092         public void WriteXmlSchema(System.IO.TextWriter writer) { }
WriteXmlSchema(System.IO.TextWriter writer, bool writeHierarchy)1093         public void WriteXmlSchema(System.IO.TextWriter writer, bool writeHierarchy) { }
WriteXmlSchema(string fileName)1094         public void WriteXmlSchema(string fileName) { }
WriteXmlSchema(string fileName, bool writeHierarchy)1095         public void WriteXmlSchema(string fileName, bool writeHierarchy) { }
WriteXmlSchema(System.Xml.XmlWriter writer)1096         public void WriteXmlSchema(System.Xml.XmlWriter writer) { }
WriteXmlSchema(System.Xml.XmlWriter writer, bool writeHierarchy)1097         public void WriteXmlSchema(System.Xml.XmlWriter writer, bool writeHierarchy) { }
1098     }
1099     public sealed partial class DataTableClearEventArgs : System.EventArgs
1100     {
DataTableClearEventArgs(System.Data.DataTable dataTable)1101         public DataTableClearEventArgs(System.Data.DataTable dataTable) { }
1102         public System.Data.DataTable Table { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1103         public string TableName { get { throw null; } }
1104         public string TableNamespace { get { throw null; } }
1105     }
DataTableClearEventHandler(object sender, System.Data.DataTableClearEventArgs e)1106     public delegate void DataTableClearEventHandler(object sender, System.Data.DataTableClearEventArgs e);
1107     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
1108     [System.ComponentModel.ListBindableAttribute(false)]
1109     public sealed partial class DataTableCollection : System.Data.InternalDataCollectionBase
1110     {
DataTableCollection()1111         internal DataTableCollection() { }
1112         public System.Data.DataTable this[int index] { get { throw null; } }
1113         public System.Data.DataTable this[string name] { get { throw null; } }
1114         public System.Data.DataTable this[string name, string tableNamespace] { get { throw null; } }
1115         protected override System.Collections.ArrayList List { get { throw null; } }
1116         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
1117         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanging { add { } remove { } }
Add()1118         public System.Data.DataTable Add() { throw null; }
Add(System.Data.DataTable table)1119         public void Add(System.Data.DataTable table) { }
Add(string name)1120         public System.Data.DataTable Add(string name) { throw null; }
Add(string name, string tableNamespace)1121         public System.Data.DataTable Add(string name, string tableNamespace) { throw null; }
AddRange(System.Data.DataTable[] tables)1122         public void AddRange(System.Data.DataTable[] tables) { }
CanRemove(System.Data.DataTable table)1123         public bool CanRemove(System.Data.DataTable table) { throw null; }
Clear()1124         public void Clear() { }
Contains(string name)1125         public bool Contains(string name) { throw null; }
Contains(string name, string tableNamespace)1126         public bool Contains(string name, string tableNamespace) { throw null; }
CopyTo(System.Data.DataTable[] array, int index)1127         public void CopyTo(System.Data.DataTable[] array, int index) { }
IndexOf(System.Data.DataTable table)1128         public int IndexOf(System.Data.DataTable table) { throw null; }
IndexOf(string tableName)1129         public int IndexOf(string tableName) { throw null; }
IndexOf(string tableName, string tableNamespace)1130         public int IndexOf(string tableName, string tableNamespace) { throw null; }
Remove(System.Data.DataTable table)1131         public void Remove(System.Data.DataTable table) { }
Remove(string name)1132         public void Remove(string name) { }
Remove(string name, string tableNamespace)1133         public void Remove(string name, string tableNamespace) { }
RemoveAt(int index)1134         public void RemoveAt(int index) { }
1135     }
1136     public sealed partial class DataTableNewRowEventArgs : System.EventArgs
1137     {
DataTableNewRowEventArgs(System.Data.DataRow dataRow)1138         public DataTableNewRowEventArgs(System.Data.DataRow dataRow) { }
1139         public System.Data.DataRow Row { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1140     }
DataTableNewRowEventHandler(object sender, System.Data.DataTableNewRowEventArgs e)1141     public delegate void DataTableNewRowEventHandler(object sender, System.Data.DataTableNewRowEventArgs e);
1142     public sealed partial class DataTableReader : System.Data.Common.DbDataReader
1143     {
DataTableReader(System.Data.DataTable dataTable)1144         public DataTableReader(System.Data.DataTable dataTable) { }
DataTableReader(System.Data.DataTable[] dataTables)1145         public DataTableReader(System.Data.DataTable[] dataTables) { }
1146         public override int Depth { get { throw null; } }
1147         public override int FieldCount { get { throw null; } }
1148         public override bool HasRows { get { throw null; } }
1149         public override bool IsClosed { get { throw null; } }
1150         public override object this[int ordinal] { get { throw null; } }
1151         public override object this[string name] { get { throw null; } }
1152         public override int RecordsAffected { get { throw null; } }
Close()1153         public override void Close() { }
GetBoolean(int ordinal)1154         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)1155         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)1156         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int ordinal)1157         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)1158         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int ordinal)1159         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)1160         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDecimal(int ordinal)1161         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)1162         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()1163         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int ordinal)1164         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)1165         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)1166         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)1167         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)1168         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)1169         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)1170         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)1171         public override int GetOrdinal(string name) { throw null; }
GetProviderSpecificFieldType(int ordinal)1172         public override System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
GetProviderSpecificValue(int ordinal)1173         public override object GetProviderSpecificValue(int ordinal) { throw null; }
GetProviderSpecificValues(object[] values)1174         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()1175         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)1176         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)1177         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)1178         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)1179         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()1180         public override bool NextResult() { throw null; }
Read()1181         public override bool Read() { throw null; }
1182     }
1183     [System.ComponentModel.DefaultEventAttribute("PositionChanged")]
1184     [System.ComponentModel.DefaultPropertyAttribute("Table")]
1185     public partial class DataView : System.ComponentModel.MarshalByValueComponent, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList, System.ComponentModel.IBindingListView, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.ComponentModel.ITypedList
1186     {
DataView()1187         public DataView() { }
DataView(System.Data.DataTable table)1188         public DataView(System.Data.DataTable table) { }
DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState)1189         public DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState) { }
1190         [System.ComponentModel.DefaultValueAttribute(true)]
1191         public bool AllowDelete { get { throw null; } set { } }
1192         [System.ComponentModel.DefaultValueAttribute(true)]
1193         public bool AllowEdit { get { throw null; } set { } }
1194         [System.ComponentModel.DefaultValueAttribute(true)]
1195         public bool AllowNew { get { throw null; } set { } }
1196         [System.ComponentModel.DefaultValueAttribute(false)]
1197         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1198         public bool ApplyDefaultSort { get { throw null; } set { } }
1199         [System.ComponentModel.BrowsableAttribute(false)]
1200         public int Count { get { throw null; } }
1201         [System.ComponentModel.BrowsableAttribute(false)]
1202         public System.Data.DataViewManager DataViewManager { get { throw null; } }
1203         [System.ComponentModel.BrowsableAttribute(false)]
1204         public bool IsInitialized { get { throw null; } }
1205         [System.ComponentModel.BrowsableAttribute(false)]
1206         protected bool IsOpen { get { throw null; } }
1207         public System.Data.DataRowView this[int recordIndex] { get { throw null; } }
1208         [System.ComponentModel.DefaultValueAttribute("")]
1209         public virtual string RowFilter { get { throw null; } set { } }
1210         [System.ComponentModel.DefaultValueAttribute((System.Data.DataViewRowState)(22))]
1211         public System.Data.DataViewRowState RowStateFilter { get { throw null; } set { } }
1212         [System.ComponentModel.DefaultValueAttribute("")]
1213         public string Sort { get { throw null; } set { } }
1214         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1215         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1216         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1217         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1218         object System.Collections.IList.this[int recordIndex] { get { throw null; } set { } }
1219         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1220         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1221         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1222         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1223         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1224         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1225         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1226         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1227         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1228         string System.ComponentModel.IBindingListView.Filter { get { throw null; } set { } }
1229         System.ComponentModel.ListSortDescriptionCollection System.ComponentModel.IBindingListView.SortDescriptions { get { throw null; } }
1230         bool System.ComponentModel.IBindingListView.SupportsAdvancedSorting { get { throw null; } }
1231         bool System.ComponentModel.IBindingListView.SupportsFiltering { get { throw null; } }
1232         [System.ComponentModel.DefaultValueAttribute(null)]
1233         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1234         [System.ComponentModel.TypeConverterAttribute("System.Data.DataTableTypeConverter")]
1235         public System.Data.DataTable Table { get { throw null; } set { } }
1236         public event System.EventHandler Initialized { add { } remove { } }
1237         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
AddNew()1238         public virtual System.Data.DataRowView AddNew() { throw null; }
BeginInit()1239         public void BeginInit() { }
Close()1240         protected void Close() { }
ColumnCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1241         protected virtual void ColumnCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
CopyTo(System.Array array, int index)1242         public void CopyTo(System.Array array, int index) { }
Delete(int index)1243         public void Delete(int index) { }
Dispose(bool disposing)1244         protected override void Dispose(bool disposing) { }
EndInit()1245         public void EndInit() { }
Equals(System.Data.DataView view)1246         public virtual bool Equals(System.Data.DataView view) { throw null; }
Find(object key)1247         public int Find(object key) { throw null; }
Find(object[] key)1248         public int Find(object[] key) { throw null; }
FindRows(object key)1249         public System.Data.DataRowView[] FindRows(object key) { throw null; }
FindRows(object[] key)1250         public System.Data.DataRowView[] FindRows(object[] key) { throw null; }
GetEnumerator()1251         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexListChanged(object sender, System.ComponentModel.ListChangedEventArgs e)1252         protected virtual void IndexListChanged(object sender, System.ComponentModel.ListChangedEventArgs e) { }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1253         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
Open()1254         protected void Open() { }
Reset()1255         protected void Reset() { }
System.Collections.IList.Add(object value)1256         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1257         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1258         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1259         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1260         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1261         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1262         void System.Collections.IList.RemoveAt(int index) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property)1263         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.AddNew()1264         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1265         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key)1266         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property)1267         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.RemoveSort()1268         void System.ComponentModel.IBindingList.RemoveSort() { }
System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts)1269         void System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts) { }
System.ComponentModel.IBindingListView.RemoveFilter()1270         void System.ComponentModel.IBindingListView.RemoveFilter() { }
System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)1271         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)1272         string System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
ToTable()1273         public System.Data.DataTable ToTable() { throw null; }
ToTable(bool distinct, params string[] columnNames)1274         public System.Data.DataTable ToTable(bool distinct, params string[] columnNames) { throw null; }
ToTable(string tableName)1275         public System.Data.DataTable ToTable(string tableName) { throw null; }
ToTable(string tableName, bool distinct, params string[] columnNames)1276         public System.Data.DataTable ToTable(string tableName, bool distinct, params string[] columnNames) { throw null; }
UpdateIndex()1277         protected void UpdateIndex() { }
UpdateIndex(bool force)1278         protected virtual void UpdateIndex(bool force) { }
1279     }
1280     public partial class DataViewManager : System.ComponentModel.MarshalByValueComponent, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList, System.ComponentModel.ITypedList
1281     {
DataViewManager()1282         public DataViewManager() { }
DataViewManager(System.Data.DataSet dataSet)1283         public DataViewManager(System.Data.DataSet dataSet) { }
1284         [System.ComponentModel.DefaultValueAttribute(null)]
1285         public System.Data.DataSet DataSet { get { throw null; } set { } }
1286         public string DataViewSettingCollectionString { get { throw null; } set { } }
1287         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1288         public System.Data.DataViewSettingCollection DataViewSettings { get { throw null; } }
1289         int System.Collections.ICollection.Count { get { throw null; } }
1290         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1291         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1292         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1293         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1294         object System.Collections.IList.this[int index] { get { throw null; } set { } }
1295         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1296         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1297         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1298         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1299         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1300         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1301         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1302         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1303         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1304         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
CreateDataView(System.Data.DataTable table)1305         public System.Data.DataView CreateDataView(System.Data.DataTable table) { throw null; }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1306         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
RelationCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1307         protected virtual void RelationCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)1308         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1309         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1310         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1311         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1312         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1313         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1314         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1315         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1316         void System.Collections.IList.RemoveAt(int index) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property)1317         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.AddNew()1318         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1319         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key)1320         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property)1321         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.RemoveSort()1322         void System.ComponentModel.IBindingList.RemoveSort() { }
System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)1323         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)1324         string System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
TableCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1325         protected virtual void TableCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
1326     }
1327     [System.FlagsAttribute]
1328     public enum DataViewRowState
1329     {
1330         Added = 4,
1331         CurrentRows = 22,
1332         Deleted = 8,
1333         ModifiedCurrent = 16,
1334         ModifiedOriginal = 32,
1335         None = 0,
1336         OriginalRows = 42,
1337         Unchanged = 2,
1338     }
1339     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
1340     public partial class DataViewSetting
1341     {
DataViewSetting()1342         internal DataViewSetting() { }
1343         public bool ApplyDefaultSort { get { throw null; } set { } }
1344         [System.ComponentModel.BrowsableAttribute(false)]
1345         public System.Data.DataViewManager DataViewManager { get { throw null; } }
1346         public string RowFilter { get { throw null; } set { } }
1347         public System.Data.DataViewRowState RowStateFilter { get { throw null; } set { } }
1348         public string Sort { get { throw null; } set { } }
1349         [System.ComponentModel.BrowsableAttribute(false)]
1350         public System.Data.DataTable Table { get { throw null; } }
1351     }
1352     public partial class DataViewSettingCollection : System.Collections.ICollection, System.Collections.IEnumerable
1353     {
DataViewSettingCollection()1354         internal DataViewSettingCollection() { }
1355         [System.ComponentModel.BrowsableAttribute(false)]
1356         public virtual int Count { get { throw null; } }
1357         [System.ComponentModel.BrowsableAttribute(false)]
1358         public bool IsReadOnly { get { throw null; } }
1359         [System.ComponentModel.BrowsableAttribute(false)]
1360         public bool IsSynchronized { get { throw null; } }
1361         public virtual System.Data.DataViewSetting this[System.Data.DataTable table] { get { throw null; } set { } }
1362         public virtual System.Data.DataViewSetting this[int index] { get { throw null; } set { } }
1363         public virtual System.Data.DataViewSetting this[string tableName] { get { throw null; } }
1364         [System.ComponentModel.BrowsableAttribute(false)]
1365         public object SyncRoot { get { throw null; } }
CopyTo(System.Array ar, int index)1366         public void CopyTo(System.Array ar, int index) { }
CopyTo(System.Data.DataViewSetting[] ar, int index)1367         public void CopyTo(System.Data.DataViewSetting[] ar, int index) { }
GetEnumerator()1368         public System.Collections.IEnumerator GetEnumerator() { throw null; }
1369     }
1370     [System.SerializableAttribute]
1371     public sealed partial class DBConcurrencyException : System.SystemException
1372     {
DBConcurrencyException()1373         public DBConcurrencyException() { }
DBConcurrencyException(string message)1374         public DBConcurrencyException(string message) { }
DBConcurrencyException(string message, System.Exception inner)1375         public DBConcurrencyException(string message, System.Exception inner) { }
DBConcurrencyException(string message, System.Exception inner, System.Data.DataRow[] dataRows)1376         public DBConcurrencyException(string message, System.Exception inner, System.Data.DataRow[] dataRows) { }
1377         public System.Data.DataRow Row { get { throw null; } set { } }
1378         public int RowCount { get { throw null; } }
CopyToRows(System.Data.DataRow[] array)1379         public void CopyToRows(System.Data.DataRow[] array) { }
CopyToRows(System.Data.DataRow[] array, int arrayIndex)1380         public void CopyToRows(System.Data.DataRow[] array, int arrayIndex) { }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1381         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1382     }
1383     public enum DbType
1384     {
1385         AnsiString = 0,
1386         AnsiStringFixedLength = 22,
1387         Binary = 1,
1388         Boolean = 3,
1389         Byte = 2,
1390         Currency = 4,
1391         Date = 5,
1392         DateTime = 6,
1393         DateTime2 = 26,
1394         DateTimeOffset = 27,
1395         Decimal = 7,
1396         Double = 8,
1397         Guid = 9,
1398         Int16 = 10,
1399         Int32 = 11,
1400         Int64 = 12,
1401         Object = 13,
1402         SByte = 14,
1403         Single = 15,
1404         String = 16,
1405         StringFixedLength = 23,
1406         Time = 17,
1407         UInt16 = 18,
1408         UInt32 = 19,
1409         UInt64 = 20,
1410         VarNumeric = 21,
1411         Xml = 25,
1412     }
1413     [System.SerializableAttribute]
1414     public partial class DeletedRowInaccessibleException : System.Data.DataException
1415     {
DeletedRowInaccessibleException()1416         public DeletedRowInaccessibleException() { }
DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1417         protected DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DeletedRowInaccessibleException(string s)1418         public DeletedRowInaccessibleException(string s) { }
DeletedRowInaccessibleException(string message, System.Exception innerException)1419         public DeletedRowInaccessibleException(string message, System.Exception innerException) { }
1420     }
1421     [System.SerializableAttribute]
1422     public partial class DuplicateNameException : System.Data.DataException
1423     {
DuplicateNameException()1424         public DuplicateNameException() { }
DuplicateNameException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1425         protected DuplicateNameException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DuplicateNameException(string s)1426         public DuplicateNameException(string s) { }
DuplicateNameException(string message, System.Exception innerException)1427         public DuplicateNameException(string message, System.Exception innerException) { }
1428     }
1429     [System.SerializableAttribute]
1430     public partial class EvaluateException : System.Data.InvalidExpressionException
1431     {
EvaluateException()1432         public EvaluateException() { }
EvaluateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1433         protected EvaluateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
EvaluateException(string s)1434         public EvaluateException(string s) { }
EvaluateException(string message, System.Exception innerException)1435         public EvaluateException(string message, System.Exception innerException) { }
1436     }
1437     public partial class FillErrorEventArgs : System.EventArgs
1438     {
FillErrorEventArgs(System.Data.DataTable dataTable, object[] values)1439         public FillErrorEventArgs(System.Data.DataTable dataTable, object[] values) { }
1440         public bool Continue { get { throw null; } set { } }
1441         public System.Data.DataTable DataTable { get { throw null; } }
1442         public System.Exception Errors { get { throw null; } set { } }
1443         public object[] Values { get { throw null; } }
1444     }
FillErrorEventHandler(object sender, System.Data.FillErrorEventArgs e)1445     public delegate void FillErrorEventHandler(object sender, System.Data.FillErrorEventArgs e);
1446     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
1447     public partial class ForeignKeyConstraint : System.Data.Constraint
1448     {
ForeignKeyConstraint(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)1449         public ForeignKeyConstraint(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
ForeignKeyConstraint(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)1450         public ForeignKeyConstraint(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
ForeignKeyConstraint(string constraintName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)1451         public ForeignKeyConstraint(string constraintName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
ForeignKeyConstraint(string constraintName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)1452         public ForeignKeyConstraint(string constraintName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
1453         [System.ComponentModel.BrowsableAttribute(false)]
ForeignKeyConstraint(string constraintName, string parentTableName, string parentTableNamespace, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule)1454         public ForeignKeyConstraint(string constraintName, string parentTableName, string parentTableNamespace, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule) { }
1455         [System.ComponentModel.BrowsableAttribute(false)]
ForeignKeyConstraint(string constraintName, string parentTableName, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule)1456         public ForeignKeyConstraint(string constraintName, string parentTableName, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule) { }
1457         [System.ComponentModel.DefaultValueAttribute((System.Data.AcceptRejectRule)(0))]
1458         public virtual System.Data.AcceptRejectRule AcceptRejectRule { get { throw null; } set { } }
1459         [System.ComponentModel.ReadOnlyAttribute(true)]
1460         public virtual System.Data.DataColumn[] Columns { get { throw null; } }
1461         [System.ComponentModel.DefaultValueAttribute((System.Data.Rule)(1))]
1462         public virtual System.Data.Rule DeleteRule { get { throw null; } set { } }
1463         [System.ComponentModel.ReadOnlyAttribute(true)]
1464         public virtual System.Data.DataColumn[] RelatedColumns { get { throw null; } }
1465         [System.ComponentModel.ReadOnlyAttribute(true)]
1466         public virtual System.Data.DataTable RelatedTable { get { throw null; } }
1467         [System.ComponentModel.ReadOnlyAttribute(true)]
1468         public override System.Data.DataTable Table { get { throw null; } }
1469         [System.ComponentModel.DefaultValueAttribute((System.Data.Rule)(1))]
1470         public virtual System.Data.Rule UpdateRule { get { throw null; } set { } }
Equals(object key)1471         public override bool Equals(object key) { throw null; }
GetHashCode()1472         public override int GetHashCode() { throw null; }
1473     }
1474     public partial interface IColumnMapping
1475     {
1476         string DataSetColumn { get; set; }
1477         string SourceColumn { get; set; }
1478     }
1479     public partial interface IColumnMappingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1480     {
1481         object this[string index] { get; set; }
Add(string sourceColumnName, string dataSetColumnName)1482         System.Data.IColumnMapping Add(string sourceColumnName, string dataSetColumnName);
Contains(string sourceColumnName)1483         bool Contains(string sourceColumnName);
GetByDataSetColumn(string dataSetColumnName)1484         System.Data.IColumnMapping GetByDataSetColumn(string dataSetColumnName);
IndexOf(string sourceColumnName)1485         int IndexOf(string sourceColumnName);
RemoveAt(string sourceColumnName)1486         void RemoveAt(string sourceColumnName);
1487     }
1488     public partial interface IDataAdapter
1489     {
1490         System.Data.MissingMappingAction MissingMappingAction { get; set; }
1491         System.Data.MissingSchemaAction MissingSchemaAction { get; set; }
1492         System.Data.ITableMappingCollection TableMappings { get; }
Fill(System.Data.DataSet dataSet)1493         int Fill(System.Data.DataSet dataSet);
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)1494         System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType);
GetFillParameters()1495         System.Data.IDataParameter[] GetFillParameters();
Update(System.Data.DataSet dataSet)1496         int Update(System.Data.DataSet dataSet);
1497     }
1498     public partial interface IDataParameter
1499     {
1500         System.Data.DbType DbType { get; set; }
1501         System.Data.ParameterDirection Direction { get; set; }
1502         bool IsNullable { get; }
1503         string ParameterName { get; set; }
1504         string SourceColumn { get; set; }
1505         System.Data.DataRowVersion SourceVersion { get; set; }
1506         object Value { get; set; }
1507     }
1508     public partial interface IDataParameterCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1509     {
1510         object this[string parameterName] { get; set; }
Contains(string parameterName)1511         bool Contains(string parameterName);
IndexOf(string parameterName)1512         int IndexOf(string parameterName);
RemoveAt(string parameterName)1513         void RemoveAt(string parameterName);
1514     }
1515     public partial interface IDataReader : System.Data.IDataRecord, System.IDisposable
1516     {
1517         int Depth { get; }
1518         bool IsClosed { get; }
1519         int RecordsAffected { get; }
Close()1520         void Close();
GetSchemaTable()1521         System.Data.DataTable GetSchemaTable();
NextResult()1522         bool NextResult();
Read()1523         bool Read();
1524     }
1525     public partial interface IDataRecord
1526     {
1527         int FieldCount { get; }
1528         object this[int i] { get; }
1529         object this[string name] { get; }
GetBoolean(int i)1530         bool GetBoolean(int i);
GetByte(int i)1531         byte GetByte(int i);
GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length)1532         long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length);
GetChar(int i)1533         char GetChar(int i);
GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length)1534         long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length);
GetData(int i)1535         System.Data.IDataReader GetData(int i);
GetDataTypeName(int i)1536         string GetDataTypeName(int i);
GetDateTime(int i)1537         System.DateTime GetDateTime(int i);
GetDecimal(int i)1538         decimal GetDecimal(int i);
GetDouble(int i)1539         double GetDouble(int i);
GetFieldType(int i)1540         System.Type GetFieldType(int i);
GetFloat(int i)1541         float GetFloat(int i);
GetGuid(int i)1542         System.Guid GetGuid(int i);
GetInt16(int i)1543         short GetInt16(int i);
GetInt32(int i)1544         int GetInt32(int i);
GetInt64(int i)1545         long GetInt64(int i);
GetName(int i)1546         string GetName(int i);
GetOrdinal(string name)1547         int GetOrdinal(string name);
GetString(int i)1548         string GetString(int i);
GetValue(int i)1549         object GetValue(int i);
GetValues(object[] values)1550         int GetValues(object[] values);
IsDBNull(int i)1551         bool IsDBNull(int i);
1552     }
1553     public partial interface IDbCommand : System.IDisposable
1554     {
1555         string CommandText { get; set; }
1556         int CommandTimeout { get; set; }
1557         System.Data.CommandType CommandType { get; set; }
1558         System.Data.IDbConnection Connection { get; set; }
1559         System.Data.IDataParameterCollection Parameters { get; }
1560         System.Data.IDbTransaction Transaction { get; set; }
1561         System.Data.UpdateRowSource UpdatedRowSource { get; set; }
Cancel()1562         void Cancel();
CreateParameter()1563         System.Data.IDbDataParameter CreateParameter();
ExecuteNonQuery()1564         int ExecuteNonQuery();
ExecuteReader()1565         System.Data.IDataReader ExecuteReader();
ExecuteReader(System.Data.CommandBehavior behavior)1566         System.Data.IDataReader ExecuteReader(System.Data.CommandBehavior behavior);
ExecuteScalar()1567         object ExecuteScalar();
Prepare()1568         void Prepare();
1569     }
1570     public partial interface IDbConnection : System.IDisposable
1571     {
1572         string ConnectionString { get; set; }
1573         int ConnectionTimeout { get; }
1574         string Database { get; }
1575         System.Data.ConnectionState State { get; }
BeginTransaction()1576         System.Data.IDbTransaction BeginTransaction();
BeginTransaction(System.Data.IsolationLevel il)1577         System.Data.IDbTransaction BeginTransaction(System.Data.IsolationLevel il);
ChangeDatabase(string databaseName)1578         void ChangeDatabase(string databaseName);
Close()1579         void Close();
CreateCommand()1580         System.Data.IDbCommand CreateCommand();
Open()1581         void Open();
1582     }
1583     public partial interface IDbDataAdapter : System.Data.IDataAdapter
1584     {
1585         System.Data.IDbCommand DeleteCommand { get; set; }
1586         System.Data.IDbCommand InsertCommand { get; set; }
1587         System.Data.IDbCommand SelectCommand { get; set; }
1588         System.Data.IDbCommand UpdateCommand { get; set; }
1589     }
1590     public partial interface IDbDataParameter : System.Data.IDataParameter
1591     {
1592         byte Precision { get; set; }
1593         byte Scale { get; set; }
1594         int Size { get; set; }
1595     }
1596     public partial interface IDbTransaction : System.IDisposable
1597     {
1598         System.Data.IDbConnection Connection { get; }
1599         System.Data.IsolationLevel IsolationLevel { get; }
Commit()1600         void Commit();
Rollback()1601         void Rollback();
1602     }
1603     [System.SerializableAttribute]
1604     public partial class InRowChangingEventException : System.Data.DataException
1605     {
InRowChangingEventException()1606         public InRowChangingEventException() { }
InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1607         protected InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InRowChangingEventException(string s)1608         public InRowChangingEventException(string s) { }
InRowChangingEventException(string message, System.Exception innerException)1609         public InRowChangingEventException(string message, System.Exception innerException) { }
1610     }
1611     public partial class InternalDataCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable
1612     {
InternalDataCollectionBase()1613         public InternalDataCollectionBase() { }
1614         [System.ComponentModel.BrowsableAttribute(false)]
1615         public virtual int Count { get { throw null; } }
1616         [System.ComponentModel.BrowsableAttribute(false)]
1617         public bool IsReadOnly { get { throw null; } }
1618         [System.ComponentModel.BrowsableAttribute(false)]
1619         public bool IsSynchronized { get { throw null; } }
1620         protected virtual System.Collections.ArrayList List { get { throw null; } }
1621         [System.ComponentModel.BrowsableAttribute(false)]
1622         public object SyncRoot { get { throw null; } }
CopyTo(System.Array ar, int index)1623         public virtual void CopyTo(System.Array ar, int index) { }
GetEnumerator()1624         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
1625     }
1626     [System.SerializableAttribute]
1627     public partial class InvalidConstraintException : System.Data.DataException
1628     {
InvalidConstraintException()1629         public InvalidConstraintException() { }
InvalidConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1630         protected InvalidConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidConstraintException(string s)1631         public InvalidConstraintException(string s) { }
InvalidConstraintException(string message, System.Exception innerException)1632         public InvalidConstraintException(string message, System.Exception innerException) { }
1633     }
1634     [System.SerializableAttribute]
1635     public partial class InvalidExpressionException : System.Data.DataException
1636     {
InvalidExpressionException()1637         public InvalidExpressionException() { }
InvalidExpressionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1638         protected InvalidExpressionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidExpressionException(string s)1639         public InvalidExpressionException(string s) { }
InvalidExpressionException(string message, System.Exception innerException)1640         public InvalidExpressionException(string message, System.Exception innerException) { }
1641     }
1642     public enum IsolationLevel
1643     {
1644         Chaos = 16,
1645         ReadCommitted = 4096,
1646         ReadUncommitted = 256,
1647         RepeatableRead = 65536,
1648         Serializable = 1048576,
1649         Snapshot = 16777216,
1650         Unspecified = -1,
1651     }
1652     public partial interface ITableMapping
1653     {
1654         System.Data.IColumnMappingCollection ColumnMappings { get; }
1655         string DataSetTable { get; set; }
1656         string SourceTable { get; set; }
1657     }
1658     public partial interface ITableMappingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1659     {
1660         object this[string index] { get; set; }
Add(string sourceTableName, string dataSetTableName)1661         System.Data.ITableMapping Add(string sourceTableName, string dataSetTableName);
Contains(string sourceTableName)1662         bool Contains(string sourceTableName);
GetByDataSetTable(string dataSetTableName)1663         System.Data.ITableMapping GetByDataSetTable(string dataSetTableName);
IndexOf(string sourceTableName)1664         int IndexOf(string sourceTableName);
RemoveAt(string sourceTableName)1665         void RemoveAt(string sourceTableName);
1666     }
1667     public enum KeyRestrictionBehavior
1668     {
1669         AllowOnly = 0,
1670         PreventUsage = 1,
1671     }
1672     public enum LoadOption
1673     {
1674         OverwriteChanges = 1,
1675         PreserveChanges = 2,
1676         Upsert = 3,
1677     }
1678     public enum MappingType
1679     {
1680         Attribute = 2,
1681         Element = 1,
1682         Hidden = 4,
1683         SimpleContent = 3,
1684     }
1685     public partial class MergeFailedEventArgs : System.EventArgs
1686     {
MergeFailedEventArgs(System.Data.DataTable table, string conflict)1687         public MergeFailedEventArgs(System.Data.DataTable table, string conflict) { }
1688         public string Conflict { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1689         public System.Data.DataTable Table { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1690     }
MergeFailedEventHandler(object sender, System.Data.MergeFailedEventArgs e)1691     public delegate void MergeFailedEventHandler(object sender, System.Data.MergeFailedEventArgs e);
1692     public enum MissingMappingAction
1693     {
1694         Error = 3,
1695         Ignore = 2,
1696         Passthrough = 1,
1697     }
1698     [System.SerializableAttribute]
1699     public partial class MissingPrimaryKeyException : System.Data.DataException
1700     {
MissingPrimaryKeyException()1701         public MissingPrimaryKeyException() { }
MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1702         protected MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
MissingPrimaryKeyException(string s)1703         public MissingPrimaryKeyException(string s) { }
MissingPrimaryKeyException(string message, System.Exception innerException)1704         public MissingPrimaryKeyException(string message, System.Exception innerException) { }
1705     }
1706     public enum MissingSchemaAction
1707     {
1708         Add = 1,
1709         AddWithKey = 4,
1710         Error = 3,
1711         Ignore = 2,
1712     }
1713     [System.SerializableAttribute]
1714     public partial class NoNullAllowedException : System.Data.DataException
1715     {
NoNullAllowedException()1716         public NoNullAllowedException() { }
NoNullAllowedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1717         protected NoNullAllowedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
NoNullAllowedException(string s)1718         public NoNullAllowedException(string s) { }
NoNullAllowedException(string message, System.Exception innerException)1719         public NoNullAllowedException(string message, System.Exception innerException) { }
1720     }
1721     [System.SerializableAttribute]
1722     public sealed partial class OperationAbortedException : System.SystemException
1723     {
OperationAbortedException()1724         internal OperationAbortedException() { }
1725     }
1726     public enum ParameterDirection
1727     {
1728         Input = 1,
1729         InputOutput = 3,
1730         Output = 2,
1731         ReturnValue = 6,
1732     }
1733     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1734     [System.FlagsAttribute]
1735     [System.ObsoleteAttribute("PropertyAttributes has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202")]
1736     public enum PropertyAttributes
1737     {
1738         NotSupported = 0,
1739         Optional = 2,
1740         Read = 512,
1741         Required = 1,
1742         Write = 1024,
1743     }
1744     [System.SerializableAttribute]
1745     public partial class PropertyCollection : System.Collections.Hashtable, System.ICloneable
1746     {
PropertyCollection()1747         public PropertyCollection() { }
PropertyCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1748         protected PropertyCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Clone()1749         public override object Clone() { throw null; }
1750     }
1751     [System.SerializableAttribute]
1752     public partial class ReadOnlyException : System.Data.DataException
1753     {
ReadOnlyException()1754         public ReadOnlyException() { }
ReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1755         protected ReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ReadOnlyException(string s)1756         public ReadOnlyException(string s) { }
ReadOnlyException(string message, System.Exception innerException)1757         public ReadOnlyException(string message, System.Exception innerException) { }
1758     }
1759     [System.SerializableAttribute]
1760     public partial class RowNotInTableException : System.Data.DataException
1761     {
RowNotInTableException()1762         public RowNotInTableException() { }
RowNotInTableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1763         protected RowNotInTableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
RowNotInTableException(string s)1764         public RowNotInTableException(string s) { }
RowNotInTableException(string message, System.Exception innerException)1765         public RowNotInTableException(string message, System.Exception innerException) { }
1766     }
1767     public enum Rule
1768     {
1769         Cascade = 1,
1770         None = 0,
1771         SetDefault = 3,
1772         SetNull = 2,
1773     }
1774     public enum SchemaSerializationMode
1775     {
1776         ExcludeSchema = 2,
1777         IncludeSchema = 1,
1778     }
1779     public enum SchemaType
1780     {
1781         Mapped = 2,
1782         Source = 1,
1783     }
1784     public enum SerializationFormat
1785     {
1786         Binary = 1,
1787         Xml = 0,
1788     }
1789     public enum SqlDbType
1790     {
1791         BigInt = 0,
1792         Binary = 1,
1793         Bit = 2,
1794         Char = 3,
1795         Date = 31,
1796         DateTime = 4,
1797         DateTime2 = 33,
1798         DateTimeOffset = 34,
1799         Decimal = 5,
1800         Float = 6,
1801         Image = 7,
1802         Int = 8,
1803         Money = 9,
1804         NChar = 10,
1805         NText = 11,
1806         NVarChar = 12,
1807         Real = 13,
1808         SmallDateTime = 15,
1809         SmallInt = 16,
1810         SmallMoney = 17,
1811         Structured = 30,
1812         Text = 18,
1813         Time = 32,
1814         Timestamp = 19,
1815         TinyInt = 20,
1816         Udt = 29,
1817         UniqueIdentifier = 14,
1818         VarBinary = 21,
1819         VarChar = 22,
1820         Variant = 23,
1821         Xml = 25,
1822     }
1823     public sealed partial class StateChangeEventArgs : System.EventArgs
1824     {
StateChangeEventArgs(System.Data.ConnectionState originalState, System.Data.ConnectionState currentState)1825         public StateChangeEventArgs(System.Data.ConnectionState originalState, System.Data.ConnectionState currentState) { }
1826         public System.Data.ConnectionState CurrentState { get { throw null; } }
1827         public System.Data.ConnectionState OriginalState { get { throw null; } }
1828     }
StateChangeEventHandler(object sender, System.Data.StateChangeEventArgs e)1829     public delegate void StateChangeEventHandler(object sender, System.Data.StateChangeEventArgs e);
1830     public sealed partial class StatementCompletedEventArgs : System.EventArgs
1831     {
StatementCompletedEventArgs(int recordCount)1832         public StatementCompletedEventArgs(int recordCount) { }
1833         public int RecordCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1834     }
StatementCompletedEventHandler(object sender, System.Data.StatementCompletedEventArgs e)1835     public delegate void StatementCompletedEventHandler(object sender, System.Data.StatementCompletedEventArgs e);
1836     public enum StatementType
1837     {
1838         Batch = 4,
1839         Delete = 3,
1840         Insert = 1,
1841         Select = 0,
1842         Update = 2,
1843     }
1844     [System.SerializableAttribute]
1845     public partial class StrongTypingException : System.Data.DataException
1846     {
StrongTypingException()1847         public StrongTypingException() { }
StrongTypingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1848         protected StrongTypingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
StrongTypingException(string message)1849         public StrongTypingException(string message) { }
StrongTypingException(string s, System.Exception innerException)1850         public StrongTypingException(string s, System.Exception innerException) { }
1851     }
1852     [System.SerializableAttribute]
1853     public partial class SyntaxErrorException : System.Data.InvalidExpressionException
1854     {
SyntaxErrorException()1855         public SyntaxErrorException() { }
SyntaxErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1856         protected SyntaxErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SyntaxErrorException(string s)1857         public SyntaxErrorException(string s) { }
SyntaxErrorException(string message, System.Exception innerException)1858         public SyntaxErrorException(string message, System.Exception innerException) { }
1859     }
1860     [System.SerializableAttribute]
1861     public partial class TypedDataSetGeneratorException : System.Data.DataException
1862     {
TypedDataSetGeneratorException()1863         public TypedDataSetGeneratorException() { }
TypedDataSetGeneratorException(System.Collections.ArrayList list)1864         public TypedDataSetGeneratorException(System.Collections.ArrayList list) { }
TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1865         protected TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
TypedDataSetGeneratorException(string message)1866         public TypedDataSetGeneratorException(string message) { }
TypedDataSetGeneratorException(string message, System.Exception innerException)1867         public TypedDataSetGeneratorException(string message, System.Exception innerException) { }
1868         public System.Collections.ArrayList ErrorList { get { throw null; } }
1869         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1870         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1871     }
1872     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
1873     public partial class UniqueConstraint : System.Data.Constraint
1874     {
UniqueConstraint(System.Data.DataColumn column)1875         public UniqueConstraint(System.Data.DataColumn column) { }
UniqueConstraint(System.Data.DataColumn column, bool isPrimaryKey)1876         public UniqueConstraint(System.Data.DataColumn column, bool isPrimaryKey) { }
UniqueConstraint(System.Data.DataColumn[] columns)1877         public UniqueConstraint(System.Data.DataColumn[] columns) { }
UniqueConstraint(System.Data.DataColumn[] columns, bool isPrimaryKey)1878         public UniqueConstraint(System.Data.DataColumn[] columns, bool isPrimaryKey) { }
UniqueConstraint(string name, System.Data.DataColumn column)1879         public UniqueConstraint(string name, System.Data.DataColumn column) { }
UniqueConstraint(string name, System.Data.DataColumn column, bool isPrimaryKey)1880         public UniqueConstraint(string name, System.Data.DataColumn column, bool isPrimaryKey) { }
UniqueConstraint(string name, System.Data.DataColumn[] columns)1881         public UniqueConstraint(string name, System.Data.DataColumn[] columns) { }
UniqueConstraint(string name, System.Data.DataColumn[] columns, bool isPrimaryKey)1882         public UniqueConstraint(string name, System.Data.DataColumn[] columns, bool isPrimaryKey) { }
1883         [System.ComponentModel.BrowsableAttribute(false)]
UniqueConstraint(string name, string[] columnNames, bool isPrimaryKey)1884         public UniqueConstraint(string name, string[] columnNames, bool isPrimaryKey) { }
1885         [System.ComponentModel.ReadOnlyAttribute(true)]
1886         public virtual System.Data.DataColumn[] Columns { get { throw null; } }
1887         public bool IsPrimaryKey { get { throw null; } }
1888         [System.ComponentModel.ReadOnlyAttribute(true)]
1889         public override System.Data.DataTable Table { get { throw null; } }
Equals(object key2)1890         public override bool Equals(object key2) { throw null; }
GetHashCode()1891         public override int GetHashCode() { throw null; }
1892     }
1893     public enum UpdateRowSource
1894     {
1895         Both = 3,
1896         FirstReturnedRecord = 2,
1897         None = 0,
1898         OutputParameters = 1,
1899     }
1900     public enum UpdateStatus
1901     {
1902         Continue = 0,
1903         ErrorsOccurred = 1,
1904         SkipAllRemainingRows = 3,
1905         SkipCurrentRow = 2,
1906     }
1907     [System.SerializableAttribute]
1908     public partial class VersionNotFoundException : System.Data.DataException
1909     {
VersionNotFoundException()1910         public VersionNotFoundException() { }
VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1911         protected VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
VersionNotFoundException(string s)1912         public VersionNotFoundException(string s) { }
VersionNotFoundException(string message, System.Exception innerException)1913         public VersionNotFoundException(string message, System.Exception innerException) { }
1914     }
1915     public enum XmlReadMode
1916     {
1917         Auto = 0,
1918         DiffGram = 4,
1919         Fragment = 5,
1920         IgnoreSchema = 2,
1921         InferSchema = 3,
1922         InferTypedSchema = 6,
1923         ReadSchema = 1,
1924     }
1925     public enum XmlWriteMode
1926     {
1927         DiffGram = 2,
1928         IgnoreSchema = 1,
1929         WriteSchema = 0,
1930     }
1931 }
1932 namespace System.Data.Common
1933 {
1934     public enum CatalogLocation
1935     {
1936         End = 2,
1937         Start = 1,
1938     }
1939     public partial class DataAdapter : System.ComponentModel.Component, System.Data.IDataAdapter
1940     {
DataAdapter()1941         protected DataAdapter() { }
DataAdapter(System.Data.Common.DataAdapter from)1942         protected DataAdapter(System.Data.Common.DataAdapter from) { }
1943         [System.ComponentModel.DefaultValueAttribute(true)]
1944         public bool AcceptChangesDuringFill { get { throw null; } set { } }
1945         [System.ComponentModel.DefaultValueAttribute(true)]
1946         public bool AcceptChangesDuringUpdate { get { throw null; } set { } }
1947         [System.ComponentModel.DefaultValueAttribute(false)]
1948         public bool ContinueUpdateOnError { get { throw null; } set { } }
1949         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1950         public System.Data.LoadOption FillLoadOption { get { throw null; } set { } }
1951         [System.ComponentModel.DefaultValueAttribute((System.Data.MissingMappingAction)(1))]
1952         public System.Data.MissingMappingAction MissingMappingAction { get { throw null; } set { } }
1953         [System.ComponentModel.DefaultValueAttribute((System.Data.MissingSchemaAction)(1))]
1954         public System.Data.MissingSchemaAction MissingSchemaAction { get { throw null; } set { } }
1955         [System.ComponentModel.DefaultValueAttribute(false)]
1956         public virtual bool ReturnProviderSpecificTypes { get { throw null; } set { } }
1957         System.Data.ITableMappingCollection System.Data.IDataAdapter.TableMappings { get { throw null; } }
1958         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1959         public System.Data.Common.DataTableMappingCollection TableMappings { get { throw null; } }
1960         public event System.Data.FillErrorEventHandler FillError { add { } remove { } }
1961         [System.ObsoleteAttribute("CloneInternals() has been deprecated.  Use the DataAdapter(DataAdapter from) constructor.  http://go.microsoft.com/fwlink/?linkid=14202")]
CloneInternals()1962         protected virtual System.Data.Common.DataAdapter CloneInternals() { throw null; }
CreateTableMappings()1963         protected virtual System.Data.Common.DataTableMappingCollection CreateTableMappings() { throw null; }
Dispose(bool disposing)1964         protected override void Dispose(bool disposing) { }
Fill(System.Data.DataSet dataSet)1965         public virtual int Fill(System.Data.DataSet dataSet) { throw null; }
Fill(System.Data.DataSet dataSet, string srcTable, System.Data.IDataReader dataReader, int startRecord, int maxRecords)1966         protected virtual int Fill(System.Data.DataSet dataSet, string srcTable, System.Data.IDataReader dataReader, int startRecord, int maxRecords) { throw null; }
Fill(System.Data.DataTable dataTable, System.Data.IDataReader dataReader)1967         protected virtual int Fill(System.Data.DataTable dataTable, System.Data.IDataReader dataReader) { throw null; }
Fill(System.Data.DataTable[] dataTables, System.Data.IDataReader dataReader, int startRecord, int maxRecords)1968         protected virtual int Fill(System.Data.DataTable[] dataTables, System.Data.IDataReader dataReader, int startRecord, int maxRecords) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)1969         public virtual System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType, string srcTable, System.Data.IDataReader dataReader)1970         protected virtual System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType, string srcTable, System.Data.IDataReader dataReader) { throw null; }
FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType, System.Data.IDataReader dataReader)1971         protected virtual System.Data.DataTable FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType, System.Data.IDataReader dataReader) { throw null; }
1972         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetFillParameters()1973         public virtual System.Data.IDataParameter[] GetFillParameters() { throw null; }
HasTableMappings()1974         protected bool HasTableMappings() { throw null; }
OnFillError(System.Data.FillErrorEventArgs value)1975         protected virtual void OnFillError(System.Data.FillErrorEventArgs value) { }
1976         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ResetFillLoadOption()1977         public void ResetFillLoadOption() { }
1978         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeAcceptChangesDuringFill()1979         public virtual bool ShouldSerializeAcceptChangesDuringFill() { throw null; }
1980         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeFillLoadOption()1981         public virtual bool ShouldSerializeFillLoadOption() { throw null; }
ShouldSerializeTableMappings()1982         protected virtual bool ShouldSerializeTableMappings() { throw null; }
Update(System.Data.DataSet dataSet)1983         public virtual int Update(System.Data.DataSet dataSet) { throw null; }
1984     }
1985     [System.ComponentModel.TypeConverterAttribute("System.Data.Common.DataColumnMapping.DataColumnMappingConverter")]
1986     public sealed partial class DataColumnMapping : System.MarshalByRefObject, System.Data.IColumnMapping, System.ICloneable
1987     {
DataColumnMapping()1988         public DataColumnMapping() { }
DataColumnMapping(string sourceColumn, string dataSetColumn)1989         public DataColumnMapping(string sourceColumn, string dataSetColumn) { }
1990         [System.ComponentModel.DefaultValueAttribute("")]
1991         public string DataSetColumn { get { throw null; } set { } }
1992         [System.ComponentModel.DefaultValueAttribute("")]
1993         public string SourceColumn { get { throw null; } set { } }
1994         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumnBySchemaAction(System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction)1995         public System.Data.DataColumn GetDataColumnBySchemaAction(System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction) { throw null; }
1996         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumnBySchemaAction(string sourceColumn, string dataSetColumn, System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction)1997         public static System.Data.DataColumn GetDataColumnBySchemaAction(string sourceColumn, string dataSetColumn, System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction) { throw null; }
System.ICloneable.Clone()1998         object System.ICloneable.Clone() { throw null; }
ToString()1999         public override string ToString() { throw null; }
2000     }
2001     public sealed partial class DataColumnMappingCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IColumnMappingCollection
2002     {
DataColumnMappingCollection()2003         public DataColumnMappingCollection() { }
2004         [System.ComponentModel.BrowsableAttribute(false)]
2005         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2006         public int Count { get { throw null; } }
2007         [System.ComponentModel.BrowsableAttribute(false)]
2008         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2009         public System.Data.Common.DataColumnMapping this[int index] { get { throw null; } set { } }
2010         [System.ComponentModel.BrowsableAttribute(false)]
2011         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2012         public System.Data.Common.DataColumnMapping this[string sourceColumn] { get { throw null; } set { } }
2013         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2014         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2015         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2016         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2017         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2018         object System.Data.IColumnMappingCollection.this[string index] { get { throw null; } set { } }
Add(object value)2019         public int Add(object value) { throw null; }
Add(string sourceColumn, string dataSetColumn)2020         public System.Data.Common.DataColumnMapping Add(string sourceColumn, string dataSetColumn) { throw null; }
AddRange(System.Array values)2021         public void AddRange(System.Array values) { }
AddRange(System.Data.Common.DataColumnMapping[] values)2022         public void AddRange(System.Data.Common.DataColumnMapping[] values) { }
Clear()2023         public void Clear() { }
Contains(object value)2024         public bool Contains(object value) { throw null; }
Contains(string value)2025         public bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)2026         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Common.DataColumnMapping[] array, int index)2027         public void CopyTo(System.Data.Common.DataColumnMapping[] array, int index) { }
GetByDataSetColumn(string value)2028         public System.Data.Common.DataColumnMapping GetByDataSetColumn(string value) { throw null; }
2029         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Data.MissingMappingAction mappingAction)2030         public static System.Data.Common.DataColumnMapping GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Data.MissingMappingAction mappingAction) { throw null; }
2031         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumn(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Type dataType, System.Data.DataTable dataTable, System.Data.MissingMappingAction mappingAction, System.Data.MissingSchemaAction schemaAction)2032         public static System.Data.DataColumn GetDataColumn(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Type dataType, System.Data.DataTable dataTable, System.Data.MissingMappingAction mappingAction, System.Data.MissingSchemaAction schemaAction) { throw null; }
GetEnumerator()2033         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(object value)2034         public int IndexOf(object value) { throw null; }
IndexOf(string sourceColumn)2035         public int IndexOf(string sourceColumn) { throw null; }
IndexOfDataSetColumn(string dataSetColumn)2036         public int IndexOfDataSetColumn(string dataSetColumn) { throw null; }
Insert(int index, System.Data.Common.DataColumnMapping value)2037         public void Insert(int index, System.Data.Common.DataColumnMapping value) { }
Insert(int index, object value)2038         public void Insert(int index, object value) { }
Remove(System.Data.Common.DataColumnMapping value)2039         public void Remove(System.Data.Common.DataColumnMapping value) { }
Remove(object value)2040         public void Remove(object value) { }
RemoveAt(int index)2041         public void RemoveAt(int index) { }
RemoveAt(string sourceColumn)2042         public void RemoveAt(string sourceColumn) { }
System.Data.IColumnMappingCollection.Add(string sourceColumnName, string dataSetColumnName)2043         System.Data.IColumnMapping System.Data.IColumnMappingCollection.Add(string sourceColumnName, string dataSetColumnName) { throw null; }
System.Data.IColumnMappingCollection.GetByDataSetColumn(string dataSetColumnName)2044         System.Data.IColumnMapping System.Data.IColumnMappingCollection.GetByDataSetColumn(string dataSetColumnName) { throw null; }
2045     }
2046     [System.ComponentModel.TypeConverterAttribute("System.Data.Common.DataTableMapping.DataTableMappingConverter")]
2047     public sealed partial class DataTableMapping : System.MarshalByRefObject, System.Data.ITableMapping, System.ICloneable
2048     {
DataTableMapping()2049         public DataTableMapping() { }
DataTableMapping(string sourceTable, string dataSetTable)2050         public DataTableMapping(string sourceTable, string dataSetTable) { }
DataTableMapping(string sourceTable, string dataSetTable, System.Data.Common.DataColumnMapping[] columnMappings)2051         public DataTableMapping(string sourceTable, string dataSetTable, System.Data.Common.DataColumnMapping[] columnMappings) { }
2052         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
2053         public System.Data.Common.DataColumnMappingCollection ColumnMappings { get { throw null; } }
2054         [System.ComponentModel.DefaultValueAttribute("")]
2055         public string DataSetTable { get { throw null; } set { } }
2056         [System.ComponentModel.DefaultValueAttribute("")]
2057         public string SourceTable { get { throw null; } set { } }
2058         System.Data.IColumnMappingCollection System.Data.ITableMapping.ColumnMappings { get { throw null; } }
2059         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetColumnMappingBySchemaAction(string sourceColumn, System.Data.MissingMappingAction mappingAction)2060         public System.Data.Common.DataColumnMapping GetColumnMappingBySchemaAction(string sourceColumn, System.Data.MissingMappingAction mappingAction) { throw null; }
2061         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumn(string sourceColumn, System.Type dataType, System.Data.DataTable dataTable, System.Data.MissingMappingAction mappingAction, System.Data.MissingSchemaAction schemaAction)2062         public System.Data.DataColumn GetDataColumn(string sourceColumn, System.Type dataType, System.Data.DataTable dataTable, System.Data.MissingMappingAction mappingAction, System.Data.MissingSchemaAction schemaAction) { throw null; }
2063         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataTableBySchemaAction(System.Data.DataSet dataSet, System.Data.MissingSchemaAction schemaAction)2064         public System.Data.DataTable GetDataTableBySchemaAction(System.Data.DataSet dataSet, System.Data.MissingSchemaAction schemaAction) { throw null; }
System.ICloneable.Clone()2065         object System.ICloneable.Clone() { throw null; }
ToString()2066         public override string ToString() { throw null; }
2067     }
2068     [System.ComponentModel.ListBindableAttribute(false)]
2069     public sealed partial class DataTableMappingCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.ITableMappingCollection
2070     {
DataTableMappingCollection()2071         public DataTableMappingCollection() { }
2072         [System.ComponentModel.BrowsableAttribute(false)]
2073         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2074         public int Count { get { throw null; } }
2075         [System.ComponentModel.BrowsableAttribute(false)]
2076         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2077         public System.Data.Common.DataTableMapping this[int index] { get { throw null; } set { } }
2078         [System.ComponentModel.BrowsableAttribute(false)]
2079         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2080         public System.Data.Common.DataTableMapping this[string sourceTable] { get { throw null; } set { } }
2081         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2082         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2083         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2084         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2085         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2086         object System.Data.ITableMappingCollection.this[string index] { get { throw null; } set { } }
Add(object value)2087         public int Add(object value) { throw null; }
Add(string sourceTable, string dataSetTable)2088         public System.Data.Common.DataTableMapping Add(string sourceTable, string dataSetTable) { throw null; }
AddRange(System.Array values)2089         public void AddRange(System.Array values) { }
AddRange(System.Data.Common.DataTableMapping[] values)2090         public void AddRange(System.Data.Common.DataTableMapping[] values) { }
Clear()2091         public void Clear() { }
Contains(object value)2092         public bool Contains(object value) { throw null; }
Contains(string value)2093         public bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)2094         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Common.DataTableMapping[] array, int index)2095         public void CopyTo(System.Data.Common.DataTableMapping[] array, int index) { }
GetByDataSetTable(string dataSetTable)2096         public System.Data.Common.DataTableMapping GetByDataSetTable(string dataSetTable) { throw null; }
GetEnumerator()2097         public System.Collections.IEnumerator GetEnumerator() { throw null; }
2098         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection tableMappings, string sourceTable, string dataSetTable, System.Data.MissingMappingAction mappingAction)2099         public static System.Data.Common.DataTableMapping GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection tableMappings, string sourceTable, string dataSetTable, System.Data.MissingMappingAction mappingAction) { throw null; }
IndexOf(object value)2100         public int IndexOf(object value) { throw null; }
IndexOf(string sourceTable)2101         public int IndexOf(string sourceTable) { throw null; }
IndexOfDataSetTable(string dataSetTable)2102         public int IndexOfDataSetTable(string dataSetTable) { throw null; }
Insert(int index, System.Data.Common.DataTableMapping value)2103         public void Insert(int index, System.Data.Common.DataTableMapping value) { }
Insert(int index, object value)2104         public void Insert(int index, object value) { }
Remove(System.Data.Common.DataTableMapping value)2105         public void Remove(System.Data.Common.DataTableMapping value) { }
Remove(object value)2106         public void Remove(object value) { }
RemoveAt(int index)2107         public void RemoveAt(int index) { }
RemoveAt(string sourceTable)2108         public void RemoveAt(string sourceTable) { }
System.Data.ITableMappingCollection.Add(string sourceTableName, string dataSetTableName)2109         System.Data.ITableMapping System.Data.ITableMappingCollection.Add(string sourceTableName, string dataSetTableName) { throw null; }
System.Data.ITableMappingCollection.GetByDataSetTable(string dataSetTableName)2110         System.Data.ITableMapping System.Data.ITableMappingCollection.GetByDataSetTable(string dataSetTableName) { throw null; }
2111     }
2112     public abstract partial class DbColumn
2113     {
DbColumn()2114         protected DbColumn() { }
2115         public System.Nullable<bool> AllowDBNull { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2116         public string BaseCatalogName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2117         public string BaseColumnName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2118         public string BaseSchemaName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2119         public string BaseServerName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2120         public string BaseTableName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2121         public string ColumnName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2122         public System.Nullable<int> ColumnOrdinal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2123         public System.Nullable<int> ColumnSize { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2124         public System.Type DataType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2125         public string DataTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2126         public System.Nullable<bool> IsAliased { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2127         public System.Nullable<bool> IsAutoIncrement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2128         public System.Nullable<bool> IsExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2129         public System.Nullable<bool> IsHidden { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2130         public System.Nullable<bool> IsIdentity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2131         public System.Nullable<bool> IsKey { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2132         public System.Nullable<bool> IsLong { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2133         public System.Nullable<bool> IsReadOnly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2134         public System.Nullable<bool> IsUnique { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2135         public virtual object this[string property] { get { throw null; } }
2136         public System.Nullable<int> NumericPrecision { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2137         public System.Nullable<int> NumericScale { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2138         public string UdtAssemblyQualifiedName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2139     }
2140     public abstract partial class DbCommand : System.ComponentModel.Component, System.Data.IDbCommand, System.IDisposable
2141     {
DbCommand()2142         protected DbCommand() { }
2143         [System.ComponentModel.DefaultValueAttribute("")]
2144         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2145         public abstract string CommandText { get; set; }
2146         public abstract int CommandTimeout { get; set; }
2147         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
2148         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2149         public abstract System.Data.CommandType CommandType { get; set; }
2150         [System.ComponentModel.BrowsableAttribute(false)]
2151         [System.ComponentModel.DefaultValueAttribute(null)]
2152         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2153         public System.Data.Common.DbConnection Connection { get { throw null; } set { } }
2154         protected abstract System.Data.Common.DbConnection DbConnection { get; set; }
2155         protected abstract System.Data.Common.DbParameterCollection DbParameterCollection { get; }
2156         protected abstract System.Data.Common.DbTransaction DbTransaction { get; set; }
2157         [System.ComponentModel.BrowsableAttribute(false)]
2158         [System.ComponentModel.DefaultValueAttribute(true)]
2159         [System.ComponentModel.DesignOnlyAttribute(true)]
2160         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2161         public abstract bool DesignTimeVisible { get; set; }
2162         [System.ComponentModel.BrowsableAttribute(false)]
2163         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2164         public System.Data.Common.DbParameterCollection Parameters { get { throw null; } }
2165         System.Data.IDbConnection System.Data.IDbCommand.Connection { get { throw null; } set { } }
2166         System.Data.IDataParameterCollection System.Data.IDbCommand.Parameters { get { throw null; } }
2167         System.Data.IDbTransaction System.Data.IDbCommand.Transaction { get { throw null; } set { } }
2168         [System.ComponentModel.BrowsableAttribute(false)]
2169         [System.ComponentModel.DefaultValueAttribute(null)]
2170         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2171         public System.Data.Common.DbTransaction Transaction { get { throw null; } set { } }
2172         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
2173         public abstract System.Data.UpdateRowSource UpdatedRowSource { get; set; }
Cancel()2174         public abstract void Cancel();
CreateDbParameter()2175         protected abstract System.Data.Common.DbParameter CreateDbParameter();
CreateParameter()2176         public System.Data.Common.DbParameter CreateParameter() { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2177         protected abstract System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior);
ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)2178         protected virtual System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteNonQuery()2179         public abstract int ExecuteNonQuery();
ExecuteNonQueryAsync()2180         public System.Threading.Tasks.Task<int> ExecuteNonQueryAsync() { throw null; }
ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken)2181         public virtual System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReader()2182         public System.Data.Common.DbDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2183         public System.Data.Common.DbDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync()2184         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync() { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior)2185         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)2186         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken)2187         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteScalar()2188         public abstract object ExecuteScalar();
ExecuteScalarAsync()2189         public System.Threading.Tasks.Task<object> ExecuteScalarAsync() { throw null; }
ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken)2190         public virtual System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Prepare()2191         public abstract void Prepare();
System.Data.IDbCommand.CreateParameter()2192         System.Data.IDbDataParameter System.Data.IDbCommand.CreateParameter() { throw null; }
System.Data.IDbCommand.ExecuteReader()2193         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader() { throw null; }
System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior)2194         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
2195     }
2196     public abstract partial class DbCommandBuilder : System.ComponentModel.Component
2197     {
DbCommandBuilder()2198         protected DbCommandBuilder() { }
2199         [System.ComponentModel.DefaultValueAttribute((System.Data.Common.CatalogLocation)(1))]
2200         public virtual System.Data.Common.CatalogLocation CatalogLocation { get { throw null; } set { } }
2201         [System.ComponentModel.DefaultValueAttribute(".")]
2202         public virtual string CatalogSeparator { get { throw null; } set { } }
2203         [System.ComponentModel.DefaultValueAttribute((System.Data.ConflictOption)(1))]
2204         public virtual System.Data.ConflictOption ConflictOption { get { throw null; } set { } }
2205         [System.ComponentModel.BrowsableAttribute(false)]
2206         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2207         public System.Data.Common.DbDataAdapter DataAdapter { get { throw null; } set { } }
2208         [System.ComponentModel.DefaultValueAttribute("")]
2209         public virtual string QuotePrefix { get { throw null; } set { } }
2210         [System.ComponentModel.DefaultValueAttribute("")]
2211         public virtual string QuoteSuffix { get { throw null; } set { } }
2212         [System.ComponentModel.DefaultValueAttribute(".")]
2213         public virtual string SchemaSeparator { get { throw null; } set { } }
2214         [System.ComponentModel.DefaultValueAttribute(false)]
2215         public bool SetAllValues { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow row, System.Data.StatementType statementType, bool whereClause)2216         protected abstract void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow row, System.Data.StatementType statementType, bool whereClause);
Dispose(bool disposing)2217         protected override void Dispose(bool disposing) { }
GetDeleteCommand()2218         public System.Data.Common.DbCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)2219         public System.Data.Common.DbCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()2220         public System.Data.Common.DbCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)2221         public System.Data.Common.DbCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)2222         protected abstract string GetParameterName(int parameterOrdinal);
GetParameterName(string parameterName)2223         protected abstract string GetParameterName(string parameterName);
GetParameterPlaceholder(int parameterOrdinal)2224         protected abstract string GetParameterPlaceholder(int parameterOrdinal);
GetSchemaTable(System.Data.Common.DbCommand sourceCommand)2225         protected virtual System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand sourceCommand) { throw null; }
GetUpdateCommand()2226         public System.Data.Common.DbCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)2227         public System.Data.Common.DbCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
InitializeCommand(System.Data.Common.DbCommand command)2228         protected virtual System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw null; }
QuoteIdentifier(string unquotedIdentifier)2229         public virtual string QuoteIdentifier(string unquotedIdentifier) { throw null; }
RefreshSchema()2230         public virtual void RefreshSchema() { }
RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs rowUpdatingEvent)2231         protected void RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs rowUpdatingEvent) { }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)2232         protected abstract void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter);
UnquoteIdentifier(string quotedIdentifier)2233         public virtual string UnquoteIdentifier(string quotedIdentifier) { throw null; }
2234     }
2235     public abstract partial class DbConnection : System.ComponentModel.Component, System.Data.IDbConnection, System.IDisposable
2236     {
DbConnection()2237         protected DbConnection() { }
2238         [System.ComponentModel.DefaultValueAttribute("")]
2239         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
2240         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2241         [System.ComponentModel.SettingsBindableAttribute(true)]
2242         public abstract string ConnectionString { get; set; }
2243         public virtual int ConnectionTimeout { get { throw null; } }
2244         public abstract string Database { get; }
2245         public abstract string DataSource { get; }
2246         protected virtual System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
2247         [System.ComponentModel.BrowsableAttribute(false)]
2248         public abstract string ServerVersion { get; }
2249         [System.ComponentModel.BrowsableAttribute(false)]
2250         public abstract System.Data.ConnectionState State { get; }
2251         public virtual event System.Data.StateChangeEventHandler StateChange { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2252         protected abstract System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel);
BeginTransaction()2253         public System.Data.Common.DbTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)2254         public System.Data.Common.DbTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string databaseName)2255         public abstract void ChangeDatabase(string databaseName);
Close()2256         public abstract void Close();
CreateCommand()2257         public System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateDbCommand()2258         protected abstract System.Data.Common.DbCommand CreateDbCommand();
EnlistTransaction(System.Transactions.Transaction transaction)2259         public virtual void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()2260         public virtual System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)2261         public virtual System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)2262         public virtual System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
OnStateChange(System.Data.StateChangeEventArgs stateChange)2263         protected virtual void OnStateChange(System.Data.StateChangeEventArgs stateChange) { }
Open()2264         public abstract void Open();
OpenAsync()2265         public System.Threading.Tasks.Task OpenAsync() { throw null; }
OpenAsync(System.Threading.CancellationToken cancellationToken)2266         public virtual System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDbConnection.BeginTransaction()2267         System.Data.IDbTransaction System.Data.IDbConnection.BeginTransaction() { throw null; }
System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel isolationLevel)2268         System.Data.IDbTransaction System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
System.Data.IDbConnection.CreateCommand()2269         System.Data.IDbCommand System.Data.IDbConnection.CreateCommand() { throw null; }
2270     }
2271     public partial class DbConnectionStringBuilder : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.ComponentModel.ICustomTypeDescriptor
2272     {
DbConnectionStringBuilder()2273         public DbConnectionStringBuilder() { }
DbConnectionStringBuilder(bool useOdbcRules)2274         public DbConnectionStringBuilder(bool useOdbcRules) { }
2275         [System.ComponentModel.BrowsableAttribute(false)]
2276         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2277         [System.ComponentModel.DesignOnlyAttribute(true)]
2278         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2279         public bool BrowsableConnectionString { get { throw null; } set { } }
2280         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2281         public string ConnectionString { get { throw null; } set { } }
2282         [System.ComponentModel.BrowsableAttribute(false)]
2283         public virtual int Count { get { throw null; } }
2284         [System.ComponentModel.BrowsableAttribute(false)]
2285         public virtual bool IsFixedSize { get { throw null; } }
2286         [System.ComponentModel.BrowsableAttribute(false)]
2287         public bool IsReadOnly { get { throw null; } }
2288         [System.ComponentModel.BrowsableAttribute(false)]
2289         public virtual object this[string keyword] { get { throw null; } set { } }
2290         [System.ComponentModel.BrowsableAttribute(false)]
2291         public virtual System.Collections.ICollection Keys { get { throw null; } }
2292         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2293         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2294         object System.Collections.IDictionary.this[object keyword] { get { throw null; } set { } }
2295         [System.ComponentModel.BrowsableAttribute(false)]
2296         public virtual System.Collections.ICollection Values { get { throw null; } }
Add(string keyword, object value)2297         public void Add(string keyword, object value) { }
AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value)2298         public static void AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value) { }
AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules)2299         public static void AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules) { }
Clear()2300         public virtual void Clear() { }
ClearPropertyDescriptors()2301         protected internal void ClearPropertyDescriptors() { }
ContainsKey(string keyword)2302         public virtual bool ContainsKey(string keyword) { throw null; }
EquivalentTo(System.Data.Common.DbConnectionStringBuilder connectionStringBuilder)2303         public virtual bool EquivalentTo(System.Data.Common.DbConnectionStringBuilder connectionStringBuilder) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)2304         protected virtual void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)2305         public virtual bool Remove(string keyword) { throw null; }
ShouldSerialize(string keyword)2306         public virtual bool ShouldSerialize(string keyword) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2307         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object keyword, object value)2308         void System.Collections.IDictionary.Add(object keyword, object value) { }
System.Collections.IDictionary.Contains(object keyword)2309         bool System.Collections.IDictionary.Contains(object keyword) { throw null; }
System.Collections.IDictionary.GetEnumerator()2310         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object keyword)2311         void System.Collections.IDictionary.Remove(object keyword) { }
System.Collections.IEnumerable.GetEnumerator()2312         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()2313         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()2314         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()2315         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()2316         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()2317         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()2318         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)2319         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()2320         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)2321         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()2322         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)2323         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2324         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
ToString()2325         public override string ToString() { throw null; }
TryGetValue(string keyword, out object value)2326         public virtual bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2327     }
2328     public abstract partial class DbDataAdapter : System.Data.Common.DataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
2329     {
2330         public const string DefaultSourceTableName = "Table";
DbDataAdapter()2331         protected DbDataAdapter() { }
DbDataAdapter(System.Data.Common.DbDataAdapter adapter)2332         protected DbDataAdapter(System.Data.Common.DbDataAdapter adapter) { }
2333         [System.ComponentModel.BrowsableAttribute(false)]
2334         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2335         public System.Data.Common.DbCommand DeleteCommand { get { throw null; } set { } }
2336         protected internal System.Data.CommandBehavior FillCommandBehavior { get { throw null; } set { } }
2337         [System.ComponentModel.BrowsableAttribute(false)]
2338         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2339         public System.Data.Common.DbCommand InsertCommand { get { throw null; } set { } }
2340         [System.ComponentModel.BrowsableAttribute(false)]
2341         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2342         public System.Data.Common.DbCommand SelectCommand { get { throw null; } set { } }
2343         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
2344         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
2345         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
2346         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
2347         [System.ComponentModel.DefaultValueAttribute(1)]
2348         public virtual int UpdateBatchSize { get { throw null; } set { } }
2349         [System.ComponentModel.BrowsableAttribute(false)]
2350         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2351         public System.Data.Common.DbCommand UpdateCommand { get { throw null; } set { } }
AddToBatch(System.Data.IDbCommand command)2352         protected virtual int AddToBatch(System.Data.IDbCommand command) { throw null; }
ClearBatch()2353         protected virtual void ClearBatch() { }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2354         protected virtual System.Data.Common.RowUpdatedEventArgs CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw null; }
CreateRowUpdatingEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2355         protected virtual System.Data.Common.RowUpdatingEventArgs CreateRowUpdatingEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw null; }
Dispose(bool disposing)2356         protected override void Dispose(bool disposing) { }
ExecuteBatch()2357         protected virtual int ExecuteBatch() { throw null; }
Fill(System.Data.DataSet dataSet)2358         public override int Fill(System.Data.DataSet dataSet) { throw null; }
Fill(System.Data.DataSet dataSet, int startRecord, int maxRecords, string srcTable)2359         public int Fill(System.Data.DataSet dataSet, int startRecord, int maxRecords, string srcTable) { throw null; }
Fill(System.Data.DataSet dataSet, int startRecord, int maxRecords, string srcTable, System.Data.IDbCommand command, System.Data.CommandBehavior behavior)2360         protected virtual int Fill(System.Data.DataSet dataSet, int startRecord, int maxRecords, string srcTable, System.Data.IDbCommand command, System.Data.CommandBehavior behavior) { throw null; }
Fill(System.Data.DataSet dataSet, string srcTable)2361         public int Fill(System.Data.DataSet dataSet, string srcTable) { throw null; }
Fill(System.Data.DataTable dataTable)2362         public int Fill(System.Data.DataTable dataTable) { throw null; }
Fill(System.Data.DataTable dataTable, System.Data.IDbCommand command, System.Data.CommandBehavior behavior)2363         protected virtual int Fill(System.Data.DataTable dataTable, System.Data.IDbCommand command, System.Data.CommandBehavior behavior) { throw null; }
Fill(System.Data.DataTable[] dataTables, int startRecord, int maxRecords, System.Data.IDbCommand command, System.Data.CommandBehavior behavior)2364         protected virtual int Fill(System.Data.DataTable[] dataTables, int startRecord, int maxRecords, System.Data.IDbCommand command, System.Data.CommandBehavior behavior) { throw null; }
Fill(int startRecord, int maxRecords, params System.Data.DataTable[] dataTables)2365         public int Fill(int startRecord, int maxRecords, params System.Data.DataTable[] dataTables) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)2366         public override System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType, System.Data.IDbCommand command, string srcTable, System.Data.CommandBehavior behavior)2367         protected virtual System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType, System.Data.IDbCommand command, string srcTable, System.Data.CommandBehavior behavior) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType, string srcTable)2368         public System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType, string srcTable) { throw null; }
FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType)2369         public System.Data.DataTable FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType) { throw null; }
FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType, System.Data.IDbCommand command, System.Data.CommandBehavior behavior)2370         protected virtual System.Data.DataTable FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType, System.Data.IDbCommand command, System.Data.CommandBehavior behavior) { throw null; }
GetBatchedParameter(int commandIdentifier, int parameterIndex)2371         protected virtual System.Data.IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex) { throw null; }
GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error)2372         protected virtual bool GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error) { recordsAffected = default(int); error = default(System.Exception); throw null; }
2373         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetFillParameters()2374         public override System.Data.IDataParameter[] GetFillParameters() { throw null; }
InitializeBatching()2375         protected virtual void InitializeBatching() { }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)2376         protected virtual void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)2377         protected virtual void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()2378         object System.ICloneable.Clone() { throw null; }
TerminateBatching()2379         protected virtual void TerminateBatching() { }
Update(System.Data.DataRow[] dataRows)2380         public int Update(System.Data.DataRow[] dataRows) { throw null; }
Update(System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping)2381         protected virtual int Update(System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping) { throw null; }
Update(System.Data.DataSet dataSet)2382         public override int Update(System.Data.DataSet dataSet) { throw null; }
Update(System.Data.DataSet dataSet, string srcTable)2383         public int Update(System.Data.DataSet dataSet, string srcTable) { throw null; }
Update(System.Data.DataTable dataTable)2384         public int Update(System.Data.DataTable dataTable) { throw null; }
2385     }
2386     [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, ControlEvidence=true, ControlPolicy=true)]
2387     [System.SerializableAttribute]
2388     public abstract partial class DBDataPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
2389     {
2390         [System.ObsoleteAttribute("DBDataPermission() has been deprecated.  Use the DBDataPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
DBDataPermission()2391         protected DBDataPermission() { }
DBDataPermission(System.Data.Common.DBDataPermission permission)2392         protected DBDataPermission(System.Data.Common.DBDataPermission permission) { }
DBDataPermission(System.Data.Common.DBDataPermissionAttribute permissionAttribute)2393         protected DBDataPermission(System.Data.Common.DBDataPermissionAttribute permissionAttribute) { }
DBDataPermission(System.Security.Permissions.PermissionState state)2394         protected DBDataPermission(System.Security.Permissions.PermissionState state) { }
2395         [System.ObsoleteAttribute("DBDataPermission(PermissionState state,Boolean allowBlankPassword) has been deprecated.  Use the DBDataPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
DBDataPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword)2396         protected DBDataPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) { }
2397         public bool AllowBlankPassword { get { throw null; } set { } }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)2398         public virtual void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Clear()2399         protected void Clear() { }
Copy()2400         public override System.Security.IPermission Copy() { throw null; }
2401         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
CreateInstance()2402         protected virtual System.Data.Common.DBDataPermission CreateInstance() { throw null; }
FromXml(System.Security.SecurityElement securityElement)2403         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)2404         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)2405         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()2406         public bool IsUnrestricted() { throw null; }
ToXml()2407         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)2408         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
2409     }
2410     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
2411     [System.SerializableAttribute]
2412     public abstract partial class DBDataPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
2413     {
DBDataPermissionAttribute(System.Security.Permissions.SecurityAction action)2414         protected DBDataPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
2415         public bool AllowBlankPassword { get { throw null; } set { } }
2416         public string ConnectionString { get { throw null; } set { } }
2417         public System.Data.KeyRestrictionBehavior KeyRestrictionBehavior { get { throw null; } set { } }
2418         public string KeyRestrictions { get { throw null; } set { } }
2419         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeConnectionString()2420         public bool ShouldSerializeConnectionString() { throw null; }
2421         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeKeyRestrictions()2422         public bool ShouldSerializeKeyRestrictions() { throw null; }
2423     }
2424     public abstract partial class DbDataReader : System.MarshalByRefObject, System.Collections.IEnumerable, System.Data.IDataReader, System.Data.IDataRecord, System.IDisposable
2425     {
DbDataReader()2426         protected DbDataReader() { }
2427         public abstract int Depth { get; }
2428         public abstract int FieldCount { get; }
2429         public abstract bool HasRows { get; }
2430         public abstract bool IsClosed { get; }
2431         public abstract object this[int ordinal] { get; }
2432         public abstract object this[string name] { get; }
2433         public abstract int RecordsAffected { get; }
2434         public virtual int VisibleFieldCount { get { throw null; } }
Close()2435         public virtual void Close() { }
2436         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Dispose()2437         public void Dispose() { }
Dispose(bool disposing)2438         protected virtual void Dispose(bool disposing) { }
GetBoolean(int ordinal)2439         public abstract bool GetBoolean(int ordinal);
GetByte(int ordinal)2440         public abstract byte GetByte(int ordinal);
GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)2441         public abstract long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length);
GetChar(int ordinal)2442         public abstract char GetChar(int ordinal);
GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)2443         public abstract long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length);
2444         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetData(int ordinal)2445         public System.Data.Common.DbDataReader GetData(int ordinal) { throw null; }
GetDataTypeName(int ordinal)2446         public abstract string GetDataTypeName(int ordinal);
GetDateTime(int ordinal)2447         public abstract System.DateTime GetDateTime(int ordinal);
GetDbDataReader(int ordinal)2448         protected virtual System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)2449         public abstract decimal GetDecimal(int ordinal);
GetDouble(int ordinal)2450         public abstract double GetDouble(int ordinal);
2451         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEnumerator()2452         public abstract System.Collections.IEnumerator GetEnumerator();
GetFieldType(int ordinal)2453         public abstract System.Type GetFieldType(int ordinal);
GetFieldValueAsync(int ordinal)2454         public System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int ordinal) { throw null; }
GetFieldValueAsync(int ordinal, System.Threading.CancellationToken cancellationToken)2455         public virtual System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int ordinal, System.Threading.CancellationToken cancellationToken) { throw null; }
GetFieldValue(int ordinal)2456         public virtual T GetFieldValue<T>(int ordinal) { throw null; }
GetFloat(int ordinal)2457         public abstract float GetFloat(int ordinal);
GetGuid(int ordinal)2458         public abstract System.Guid GetGuid(int ordinal);
GetInt16(int ordinal)2459         public abstract short GetInt16(int ordinal);
GetInt32(int ordinal)2460         public abstract int GetInt32(int ordinal);
GetInt64(int ordinal)2461         public abstract long GetInt64(int ordinal);
GetName(int ordinal)2462         public abstract string GetName(int ordinal);
GetOrdinal(string name)2463         public abstract int GetOrdinal(string name);
2464         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificFieldType(int ordinal)2465         public virtual System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
2466         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValue(int ordinal)2467         public virtual object GetProviderSpecificValue(int ordinal) { throw null; }
2468         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValues(object[] values)2469         public virtual int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()2470         public virtual System.Data.DataTable GetSchemaTable() { throw null; }
GetStream(int ordinal)2471         public virtual System.IO.Stream GetStream(int ordinal) { throw null; }
GetString(int ordinal)2472         public abstract string GetString(int ordinal);
GetTextReader(int ordinal)2473         public virtual System.IO.TextReader GetTextReader(int ordinal) { throw null; }
GetValue(int ordinal)2474         public abstract object GetValue(int ordinal);
GetValues(object[] values)2475         public abstract int GetValues(object[] values);
IsDBNull(int ordinal)2476         public abstract bool IsDBNull(int ordinal);
IsDBNullAsync(int ordinal)2477         public System.Threading.Tasks.Task<bool> IsDBNullAsync(int ordinal) { throw null; }
IsDBNullAsync(int ordinal, System.Threading.CancellationToken cancellationToken)2478         public virtual System.Threading.Tasks.Task<bool> IsDBNullAsync(int ordinal, System.Threading.CancellationToken cancellationToken) { throw null; }
NextResult()2479         public abstract bool NextResult();
NextResultAsync()2480         public System.Threading.Tasks.Task<bool> NextResultAsync() { throw null; }
NextResultAsync(System.Threading.CancellationToken cancellationToken)2481         public virtual System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read()2482         public abstract bool Read();
ReadAsync()2483         public System.Threading.Tasks.Task<bool> ReadAsync() { throw null; }
ReadAsync(System.Threading.CancellationToken cancellationToken)2484         public virtual System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)2485         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
2486     }
2487     public static partial class DbDataReaderExtensions
2488     {
CanGetColumnSchema(this System.Data.Common.DbDataReader reader)2489         public static bool CanGetColumnSchema(this System.Data.Common.DbDataReader reader) { throw null; }
GetColumnSchema(this System.Data.Common.DbDataReader reader)2490         public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.DbColumn> GetColumnSchema(this System.Data.Common.DbDataReader reader) { throw null; }
2491     }
2492     public abstract partial class DbDataRecord : System.ComponentModel.ICustomTypeDescriptor, System.Data.IDataRecord
2493     {
DbDataRecord()2494         protected DbDataRecord() { }
2495         public abstract int FieldCount { get; }
2496         public abstract object this[int i] { get; }
2497         public abstract object this[string name] { get; }
GetBoolean(int i)2498         public abstract bool GetBoolean(int i);
GetByte(int i)2499         public abstract byte GetByte(int i);
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)2500         public abstract long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
GetChar(int i)2501         public abstract char GetChar(int i);
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)2502         public abstract long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length);
GetData(int i)2503         public System.Data.IDataReader GetData(int i) { throw null; }
GetDataTypeName(int i)2504         public abstract string GetDataTypeName(int i);
GetDateTime(int i)2505         public abstract System.DateTime GetDateTime(int i);
GetDbDataReader(int i)2506         protected virtual System.Data.Common.DbDataReader GetDbDataReader(int i) { throw null; }
GetDecimal(int i)2507         public abstract decimal GetDecimal(int i);
GetDouble(int i)2508         public abstract double GetDouble(int i);
GetFieldType(int i)2509         public abstract System.Type GetFieldType(int i);
GetFloat(int i)2510         public abstract float GetFloat(int i);
GetGuid(int i)2511         public abstract System.Guid GetGuid(int i);
GetInt16(int i)2512         public abstract short GetInt16(int i);
GetInt32(int i)2513         public abstract int GetInt32(int i);
GetInt64(int i)2514         public abstract long GetInt64(int i);
GetName(int i)2515         public abstract string GetName(int i);
GetOrdinal(string name)2516         public abstract int GetOrdinal(string name);
GetString(int i)2517         public abstract string GetString(int i);
GetValue(int i)2518         public abstract object GetValue(int i);
GetValues(object[] values)2519         public abstract int GetValues(object[] values);
IsDBNull(int i)2520         public abstract bool IsDBNull(int i);
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()2521         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()2522         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()2523         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()2524         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()2525         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()2526         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)2527         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()2528         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)2529         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()2530         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)2531         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2532         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
2533     }
2534     public abstract partial class DbDataSourceEnumerator
2535     {
DbDataSourceEnumerator()2536         protected DbDataSourceEnumerator() { }
GetDataSources()2537         public abstract System.Data.DataTable GetDataSources();
2538     }
2539     public partial class DbEnumerator : System.Collections.IEnumerator
2540     {
DbEnumerator(System.Data.Common.DbDataReader reader)2541         public DbEnumerator(System.Data.Common.DbDataReader reader) { }
DbEnumerator(System.Data.Common.DbDataReader reader, bool closeReader)2542         public DbEnumerator(System.Data.Common.DbDataReader reader, bool closeReader) { }
DbEnumerator(System.Data.IDataReader reader)2543         public DbEnumerator(System.Data.IDataReader reader) { }
DbEnumerator(System.Data.IDataReader reader, bool closeReader)2544         public DbEnumerator(System.Data.IDataReader reader, bool closeReader) { }
2545         public object Current { get { throw null; } }
MoveNext()2546         public bool MoveNext() { throw null; }
2547         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Reset()2548         public void Reset() { }
2549     }
2550     [System.SerializableAttribute]
2551     public abstract partial class DbException : System.Runtime.InteropServices.ExternalException
2552     {
DbException()2553         protected DbException() { }
DbException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2554         protected DbException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DbException(string message)2555         protected DbException(string message) { }
DbException(string message, System.Exception innerException)2556         protected DbException(string message, System.Exception innerException) { }
DbException(string message, int errorCode)2557         protected DbException(string message, int errorCode) { }
2558     }
2559     public static partial class DbMetaDataCollectionNames
2560     {
2561         public static readonly string DataSourceInformation;
2562         public static readonly string DataTypes;
2563         public static readonly string MetaDataCollections;
2564         public static readonly string ReservedWords;
2565         public static readonly string Restrictions;
2566     }
2567     public static partial class DbMetaDataColumnNames
2568     {
2569         public static readonly string CollectionName;
2570         public static readonly string ColumnSize;
2571         public static readonly string CompositeIdentifierSeparatorPattern;
2572         public static readonly string CreateFormat;
2573         public static readonly string CreateParameters;
2574         public static readonly string DataSourceProductName;
2575         public static readonly string DataSourceProductVersion;
2576         public static readonly string DataSourceProductVersionNormalized;
2577         public static readonly string DataType;
2578         public static readonly string GroupByBehavior;
2579         public static readonly string IdentifierCase;
2580         public static readonly string IdentifierPattern;
2581         public static readonly string IsAutoIncrementable;
2582         public static readonly string IsBestMatch;
2583         public static readonly string IsCaseSensitive;
2584         public static readonly string IsConcurrencyType;
2585         public static readonly string IsFixedLength;
2586         public static readonly string IsFixedPrecisionScale;
2587         public static readonly string IsLiteralSupported;
2588         public static readonly string IsLong;
2589         public static readonly string IsNullable;
2590         public static readonly string IsSearchable;
2591         public static readonly string IsSearchableWithLike;
2592         public static readonly string IsUnsigned;
2593         public static readonly string LiteralPrefix;
2594         public static readonly string LiteralSuffix;
2595         public static readonly string MaximumScale;
2596         public static readonly string MinimumScale;
2597         public static readonly string NumberOfIdentifierParts;
2598         public static readonly string NumberOfRestrictions;
2599         public static readonly string OrderByColumnsInSelect;
2600         public static readonly string ParameterMarkerFormat;
2601         public static readonly string ParameterMarkerPattern;
2602         public static readonly string ParameterNameMaxLength;
2603         public static readonly string ParameterNamePattern;
2604         public static readonly string ProviderDbType;
2605         public static readonly string QuotedIdentifierCase;
2606         public static readonly string QuotedIdentifierPattern;
2607         public static readonly string ReservedWord;
2608         public static readonly string StatementSeparatorPattern;
2609         public static readonly string StringLiteralPattern;
2610         public static readonly string SupportedJoinOperators;
2611         public static readonly string TypeName;
2612     }
2613     public abstract partial class DbParameter : System.MarshalByRefObject, System.Data.IDataParameter, System.Data.IDbDataParameter
2614     {
DbParameter()2615         protected DbParameter() { }
2616         [System.ComponentModel.BrowsableAttribute(false)]
2617         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2618         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2619         public abstract System.Data.DbType DbType { get; set; }
2620         [System.ComponentModel.DefaultValueAttribute((System.Data.ParameterDirection)(1))]
2621         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2622         public abstract System.Data.ParameterDirection Direction { get; set; }
2623         [System.ComponentModel.BrowsableAttribute(false)]
2624         [System.ComponentModel.DesignOnlyAttribute(true)]
2625         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2626         public abstract bool IsNullable { get; set; }
2627         [System.ComponentModel.DefaultValueAttribute("")]
2628         public abstract string ParameterName { get; set; }
2629         public virtual byte Precision { get { throw null; } set { } }
2630         public virtual byte Scale { get { throw null; } set { } }
2631         public abstract int Size { get; set; }
2632         [System.ComponentModel.DefaultValueAttribute("")]
2633         public abstract string SourceColumn { get; set; }
2634         [System.ComponentModel.DefaultValueAttribute(false)]
2635         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
2636         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2637         public abstract bool SourceColumnNullMapping { get; set; }
2638         [System.ComponentModel.DefaultValueAttribute((System.Data.DataRowVersion)(512))]
2639         public virtual System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
2640         byte System.Data.IDbDataParameter.Precision { get { throw null; } set { } }
2641         byte System.Data.IDbDataParameter.Scale { get { throw null; } set { } }
2642         [System.ComponentModel.DefaultValueAttribute(null)]
2643         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2644         public abstract object Value { get; set; }
2645         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ResetDbType()2646         public abstract void ResetDbType();
2647     }
2648     public abstract partial class DbParameterCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IDataParameterCollection
2649     {
DbParameterCollection()2650         protected DbParameterCollection() { }
2651         [System.ComponentModel.BrowsableAttribute(false)]
2652         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2653         public abstract int Count { get; }
2654         [System.ComponentModel.BrowsableAttribute(false)]
2655         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2656         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2657         public virtual bool IsFixedSize { get { throw null; } }
2658         [System.ComponentModel.BrowsableAttribute(false)]
2659         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2660         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2661         public virtual bool IsReadOnly { get { throw null; } }
2662         [System.ComponentModel.BrowsableAttribute(false)]
2663         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2664         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2665         public virtual bool IsSynchronized { get { throw null; } }
2666         public System.Data.Common.DbParameter this[int index] { get { throw null; } set { } }
2667         public System.Data.Common.DbParameter this[string parameterName] { get { throw null; } set { } }
2668         [System.ComponentModel.BrowsableAttribute(false)]
2669         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2670         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2671         public abstract object SyncRoot { get; }
2672         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2673         object System.Data.IDataParameterCollection.this[string parameterName] { get { throw null; } set { } }
Add(object value)2674         public abstract int Add(object value);
AddRange(System.Array values)2675         public abstract void AddRange(System.Array values);
Clear()2676         public abstract void Clear();
Contains(object value)2677         public abstract bool Contains(object value);
Contains(string value)2678         public abstract bool Contains(string value);
CopyTo(System.Array array, int index)2679         public abstract void CopyTo(System.Array array, int index);
2680         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEnumerator()2681         public abstract System.Collections.IEnumerator GetEnumerator();
GetParameter(int index)2682         protected abstract System.Data.Common.DbParameter GetParameter(int index);
GetParameter(string parameterName)2683         protected abstract System.Data.Common.DbParameter GetParameter(string parameterName);
IndexOf(object value)2684         public abstract int IndexOf(object value);
IndexOf(string parameterName)2685         public abstract int IndexOf(string parameterName);
Insert(int index, object value)2686         public abstract void Insert(int index, object value);
Remove(object value)2687         public abstract void Remove(object value);
RemoveAt(int index)2688         public abstract void RemoveAt(int index);
RemoveAt(string parameterName)2689         public abstract void RemoveAt(string parameterName);
SetParameter(int index, System.Data.Common.DbParameter value)2690         protected abstract void SetParameter(int index, System.Data.Common.DbParameter value);
SetParameter(string parameterName, System.Data.Common.DbParameter value)2691         protected abstract void SetParameter(string parameterName, System.Data.Common.DbParameter value);
2692     }
2693     public abstract partial class DbProviderFactory
2694     {
DbProviderFactory()2695         protected DbProviderFactory() { }
2696         public virtual bool CanCreateDataSourceEnumerator { get { throw null; } }
CreateCommand()2697         public virtual System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()2698         public virtual System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()2699         public virtual System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()2700         public virtual System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()2701         public virtual System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateDataSourceEnumerator()2702         public virtual System.Data.Common.DbDataSourceEnumerator CreateDataSourceEnumerator() { throw null; }
CreateParameter()2703         public virtual System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)2704         public virtual System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
2705     }
2706     [System.AttributeUsageAttribute((System.AttributeTargets)(128), AllowMultiple=false, Inherited=true)]
2707     [System.SerializableAttribute]
2708     public sealed partial class DbProviderSpecificTypePropertyAttribute : System.Attribute
2709     {
DbProviderSpecificTypePropertyAttribute(bool isProviderSpecificTypeProperty)2710         public DbProviderSpecificTypePropertyAttribute(bool isProviderSpecificTypeProperty) { }
2711         public bool IsProviderSpecificTypeProperty { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2712     }
2713     public abstract partial class DbTransaction : System.MarshalByRefObject, System.Data.IDbTransaction, System.IDisposable
2714     {
DbTransaction()2715         protected DbTransaction() { }
2716         public System.Data.Common.DbConnection Connection { get { throw null; } }
2717         protected abstract System.Data.Common.DbConnection DbConnection { get; }
2718         public abstract System.Data.IsolationLevel IsolationLevel { get; }
2719         System.Data.IDbConnection System.Data.IDbTransaction.Connection { get { throw null; } }
Commit()2720         public abstract void Commit();
Dispose()2721         public void Dispose() { }
Dispose(bool disposing)2722         protected virtual void Dispose(bool disposing) { }
Rollback()2723         public abstract void Rollback();
2724     }
2725     public enum GroupByBehavior
2726     {
2727         ExactMatch = 4,
2728         MustContainAll = 3,
2729         NotSupported = 1,
2730         Unknown = 0,
2731         Unrelated = 2,
2732     }
2733     public partial interface IDbColumnSchemaGenerator
2734     {
GetColumnSchema()2735         System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.DbColumn> GetColumnSchema();
2736     }
2737     public enum IdentifierCase
2738     {
2739         Insensitive = 1,
2740         Sensitive = 2,
2741         Unknown = 0,
2742     }
2743     public partial class RowUpdatedEventArgs : System.EventArgs
2744     {
RowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2745         public RowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { }
2746         public System.Data.IDbCommand Command { get { throw null; } }
2747         public System.Exception Errors { get { throw null; } set { } }
2748         public int RecordsAffected { get { throw null; } }
2749         public System.Data.DataRow Row { get { throw null; } }
2750         public int RowCount { get { throw null; } }
2751         public System.Data.StatementType StatementType { get { throw null; } }
2752         public System.Data.UpdateStatus Status { get { throw null; } set { } }
2753         public System.Data.Common.DataTableMapping TableMapping { get { throw null; } }
CopyToRows(System.Data.DataRow[] array)2754         public void CopyToRows(System.Data.DataRow[] array) { }
CopyToRows(System.Data.DataRow[] array, int arrayIndex)2755         public void CopyToRows(System.Data.DataRow[] array, int arrayIndex) { }
2756     }
2757     public partial class RowUpdatingEventArgs : System.EventArgs
2758     {
RowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2759         public RowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { }
2760         protected virtual System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
2761         public System.Data.IDbCommand Command { get { throw null; } set { } }
2762         public System.Exception Errors { get { throw null; } set { } }
2763         public System.Data.DataRow Row { get { throw null; } }
2764         public System.Data.StatementType StatementType { get { throw null; } }
2765         public System.Data.UpdateStatus Status { get { throw null; } set { } }
2766         public System.Data.Common.DataTableMapping TableMapping { get { throw null; } }
2767     }
2768     public static partial class SchemaTableColumn
2769     {
2770         public static readonly string AllowDBNull;
2771         public static readonly string BaseColumnName;
2772         public static readonly string BaseSchemaName;
2773         public static readonly string BaseTableName;
2774         public static readonly string ColumnName;
2775         public static readonly string ColumnOrdinal;
2776         public static readonly string ColumnSize;
2777         public static readonly string DataType;
2778         public static readonly string IsAliased;
2779         public static readonly string IsExpression;
2780         public static readonly string IsKey;
2781         public static readonly string IsLong;
2782         public static readonly string IsUnique;
2783         public static readonly string NonVersionedProviderType;
2784         public static readonly string NumericPrecision;
2785         public static readonly string NumericScale;
2786         public static readonly string ProviderType;
2787     }
2788     public static partial class SchemaTableOptionalColumn
2789     {
2790         public static readonly string AutoIncrementSeed;
2791         public static readonly string AutoIncrementStep;
2792         public static readonly string BaseCatalogName;
2793         public static readonly string BaseColumnNamespace;
2794         public static readonly string BaseServerName;
2795         public static readonly string BaseTableNamespace;
2796         public static readonly string ColumnMapping;
2797         public static readonly string DefaultValue;
2798         public static readonly string Expression;
2799         public static readonly string IsAutoIncrement;
2800         public static readonly string IsHidden;
2801         public static readonly string IsReadOnly;
2802         public static readonly string IsRowVersion;
2803         public static readonly string ProviderSpecificDataType;
2804     }
2805     [System.FlagsAttribute]
2806     public enum SupportedJoinOperators
2807     {
2808         FullOuter = 8,
2809         Inner = 1,
2810         LeftOuter = 2,
2811         None = 0,
2812         RightOuter = 4,
2813     }
2814 }
2815 namespace System.Data.OleDb
2816 {
2817     public enum OleDbType
2818     {
2819         BigInt = 20,
2820         Binary = 128,
2821         Boolean = 11,
2822         BSTR = 8,
2823         Char = 129,
2824         Currency = 6,
2825         Date = 7,
2826         DBDate = 133,
2827         DBTime = 134,
2828         DBTimeStamp = 135,
2829         Decimal = 14,
2830         Double = 5,
2831         Empty = 0,
2832         Error = 10,
2833         Filetime = 64,
2834         Guid = 72,
2835         IDispatch = 9,
2836         Integer = 3,
2837         IUnknown = 13,
2838         LongVarBinary = 205,
2839         LongVarChar = 201,
2840         LongVarWChar = 203,
2841         Numeric = 131,
2842         PropVariant = 138,
2843         Single = 4,
2844         SmallInt = 2,
2845         TinyInt = 16,
2846         UnsignedBigInt = 21,
2847         UnsignedInt = 19,
2848         UnsignedSmallInt = 18,
2849         UnsignedTinyInt = 17,
2850         VarBinary = 204,
2851         VarChar = 200,
2852         Variant = 12,
2853         VarNumeric = 139,
2854         VarWChar = 202,
2855         WChar = 130,
2856     }
2857 }
2858 namespace System.Data.Sql
2859 {
2860     public sealed partial class SqlDataSourceEnumerator : System.Data.Common.DbDataSourceEnumerator
2861     {
SqlDataSourceEnumerator()2862         internal SqlDataSourceEnumerator() { }
2863         public static System.Data.Sql.SqlDataSourceEnumerator Instance { get { throw null; } }
GetDataSources()2864         public override System.Data.DataTable GetDataSources() { throw null; }
2865     }
2866     public sealed partial class SqlNotificationRequest
2867     {
SqlNotificationRequest()2868         public SqlNotificationRequest() { }
SqlNotificationRequest(string userData, string options, int timeout)2869         public SqlNotificationRequest(string userData, string options, int timeout) { }
2870         public string Options { get { throw null; } set { } }
2871         public int Timeout { get { throw null; } set { } }
2872         public string UserData { get { throw null; } set { } }
2873     }
2874 }
2875 namespace System.Data.SqlClient
2876 {
2877     public enum ApplicationIntent
2878     {
2879         ReadOnly = 1,
2880         ReadWrite = 0,
2881     }
OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e)2882     public delegate void OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e);
2883     public enum PoolBlockingPeriod
2884     {
2885         AlwaysBlock = 1,
2886         Auto = 0,
2887         NeverBlock = 2,
2888     }
2889     public enum SortOrder
2890     {
2891         Ascending = 0,
2892         Descending = 1,
2893         Unspecified = -1,
2894     }
2895     public enum SqlAuthenticationMethod
2896     {
2897         ActiveDirectoryIntegrated = 3,
2898         ActiveDirectoryPassword = 2,
2899         NotSpecified = 0,
2900         SqlPassword = 1,
2901     }
2902     public sealed partial class SqlBulkCopy : System.IDisposable
2903     {
SqlBulkCopy(System.Data.SqlClient.SqlConnection connection)2904         public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection) { }
SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction)2905         public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction) { }
SqlBulkCopy(string connectionString)2906         public SqlBulkCopy(string connectionString) { }
SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions)2907         public SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions) { }
2908         public int BatchSize { get { throw null; } set { } }
2909         public int BulkCopyTimeout { get { throw null; } set { } }
2910         public System.Data.SqlClient.SqlBulkCopyColumnMappingCollection ColumnMappings { get { throw null; } }
2911         public string DestinationTableName { get { throw null; } set { } }
2912         public bool EnableStreaming { get { throw null; } set { } }
2913         public int NotifyAfter { get { throw null; } set { } }
2914         public event System.Data.SqlClient.SqlRowsCopiedEventHandler SqlRowsCopied { add { } remove { } }
Close()2915         public void Close() { }
System.IDisposable.Dispose()2916         void System.IDisposable.Dispose() { }
WriteToServer(System.Data.Common.DbDataReader reader)2917         public void WriteToServer(System.Data.Common.DbDataReader reader) { }
WriteToServer(System.Data.DataRow[] rows)2918         public void WriteToServer(System.Data.DataRow[] rows) { }
WriteToServer(System.Data.DataTable table)2919         public void WriteToServer(System.Data.DataTable table) { }
WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState)2920         public void WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState) { }
WriteToServer(System.Data.IDataReader reader)2921         public void WriteToServer(System.Data.IDataReader reader) { }
WriteToServerAsync(System.Data.Common.DbDataReader reader)2922         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader) { throw null; }
WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken)2923         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataRow[] rows)2924         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows) { throw null; }
WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken)2925         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataTable table)2926         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table) { throw null; }
WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState)2927         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState) { throw null; }
WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState, System.Threading.CancellationToken cancellationToken)2928         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataTable table, System.Threading.CancellationToken cancellationToken)2929         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.IDataReader reader)2930         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader) { throw null; }
WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken)2931         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken) { throw null; }
2932     }
2933     public sealed partial class SqlBulkCopyColumnMapping
2934     {
SqlBulkCopyColumnMapping()2935         public SqlBulkCopyColumnMapping() { }
SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal)2936         public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal) { }
SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn)2937         public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn) { }
SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal)2938         public SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal) { }
SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn)2939         public SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn) { }
2940         public string DestinationColumn { get { throw null; } set { } }
2941         public int DestinationOrdinal { get { throw null; } set { } }
2942         public string SourceColumn { get { throw null; } set { } }
2943         public int SourceOrdinal { get { throw null; } set { } }
2944     }
2945     public sealed partial class SqlBulkCopyColumnMappingCollection : System.Collections.CollectionBase
2946     {
SqlBulkCopyColumnMappingCollection()2947         internal SqlBulkCopyColumnMappingCollection() { }
2948         public System.Data.SqlClient.SqlBulkCopyColumnMapping this[int index] { get { throw null; } }
Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping)2949         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping) { throw null; }
Add(int sourceColumnIndex, int destinationColumnIndex)2950         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, int destinationColumnIndex) { throw null; }
Add(int sourceColumnIndex, string destinationColumn)2951         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, string destinationColumn) { throw null; }
Add(string sourceColumn, int destinationColumnIndex)2952         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, int destinationColumnIndex) { throw null; }
Add(string sourceColumn, string destinationColumn)2953         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, string destinationColumn) { throw null; }
Clear()2954         public new void Clear() { }
Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value)2955         public bool Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw null; }
CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index)2956         public void CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index) { }
IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value)2957         public int IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw null; }
Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value)2958         public void Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value) { }
Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value)2959         public void Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { }
RemoveAt(int index)2960         public new void RemoveAt(int index) { }
2961     }
2962     [System.FlagsAttribute]
2963     public enum SqlBulkCopyOptions
2964     {
2965         CheckConstraints = 2,
2966         Default = 0,
2967         FireTriggers = 16,
2968         KeepIdentity = 1,
2969         KeepNulls = 8,
2970         TableLock = 4,
2971         UseInternalTransaction = 32,
2972     }
2973     public sealed partial class SqlClientFactory : System.Data.Common.DbProviderFactory
2974     {
SqlClientFactory()2975         internal SqlClientFactory() { }
2976         public static readonly System.Data.SqlClient.SqlClientFactory Instance;
2977         public override bool CanCreateDataSourceEnumerator { get { throw null; } }
CreateCommand()2978         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()2979         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()2980         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()2981         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()2982         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateDataSourceEnumerator()2983         public override System.Data.Common.DbDataSourceEnumerator CreateDataSourceEnumerator() { throw null; }
CreateParameter()2984         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)2985         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
2986     }
2987     public static partial class SqlClientMetaDataCollectionNames
2988     {
2989         public static readonly string Columns;
2990         public static readonly string Databases;
2991         public static readonly string ForeignKeys;
2992         public static readonly string IndexColumns;
2993         public static readonly string Indexes;
2994         public static readonly string Parameters;
2995         public static readonly string ProcedureColumns;
2996         public static readonly string Procedures;
2997         public static readonly string Tables;
2998         public static readonly string UserDefinedTypes;
2999         public static readonly string Users;
3000         public static readonly string ViewColumns;
3001         public static readonly string Views;
3002     }
3003     [System.SerializableAttribute]
3004     public sealed partial class SqlClientPermission : System.Data.Common.DBDataPermission
3005     {
3006         [System.ObsoleteAttribute("SqlClientPermission() has been deprecated.  Use the SqlClientPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
SqlClientPermission()3007         public SqlClientPermission() : base (default(System.Security.Permissions.PermissionState)) { }
SqlClientPermission(System.Security.Permissions.PermissionState state)3008         public SqlClientPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
3009         [System.ObsoleteAttribute("SqlClientPermission(PermissionState state, Boolean allowBlankPassword) has been deprecated.  Use the SqlClientPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
SqlClientPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword)3010         public SqlClientPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)3011         public override void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Copy()3012         public override System.Security.IPermission Copy() { throw null; }
3013     }
3014     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
3015     [System.SerializableAttribute]
3016     public sealed partial class SqlClientPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
3017     {
SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction action)3018         public SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()3019         public override System.Security.IPermission CreatePermission() { throw null; }
3020     }
3021     public sealed partial class SqlCommand : System.Data.Common.DbCommand, System.Data.IDbCommand, System.ICloneable, System.IDisposable
3022     {
SqlCommand()3023         public SqlCommand() { }
SqlCommand(string cmdText)3024         public SqlCommand(string cmdText) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection)3025         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction)3026         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction) { }
3027         public override string CommandText { get { throw null; } set { } }
3028         public override int CommandTimeout { get { throw null; } set { } }
3029         public override System.Data.CommandType CommandType { get { throw null; } set { } }
3030         public new System.Data.SqlClient.SqlConnection Connection { get { throw null; } set { } }
3031         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
3032         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
3033         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
3034         public override bool DesignTimeVisible { get { throw null; } set { } }
3035         public System.Data.Sql.SqlNotificationRequest Notification { get { throw null; } set { } }
3036         [System.MonoTODOAttribute]
3037         public bool NotificationAutoEnlist { get { throw null; } set { } }
3038         public new System.Data.SqlClient.SqlParameterCollection Parameters { get { throw null; } }
3039         public new System.Data.SqlClient.SqlTransaction Transaction { get { throw null; } set { } }
3040         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
3041         public event System.Data.StatementCompletedEventHandler StatementCompleted { add { } remove { } }
BeginExecuteNonQuery()3042         public System.IAsyncResult BeginExecuteNonQuery() { throw null; }
BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject)3043         public System.IAsyncResult BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject) { throw null; }
3044         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader()3045         public System.IAsyncResult BeginExecuteReader() { throw null; }
3046         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader(System.AsyncCallback callback, object stateObject)3047         public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject) { throw null; }
3048         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior)3049         public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior) { throw null; }
3050         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader(System.Data.CommandBehavior behavior)3051         public System.IAsyncResult BeginExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
3052         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteXmlReader()3053         public System.IAsyncResult BeginExecuteXmlReader() { throw null; }
BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject)3054         public System.IAsyncResult BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject) { throw null; }
Cancel()3055         public override void Cancel() { }
Clone()3056         public System.Data.SqlClient.SqlCommand Clone() { throw null; }
CreateDbParameter()3057         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()3058         public new System.Data.SqlClient.SqlParameter CreateParameter() { throw null; }
Dispose(bool disposing)3059         protected override void Dispose(bool disposing) { }
EndExecuteNonQuery(System.IAsyncResult asyncResult)3060         public int EndExecuteNonQuery(System.IAsyncResult asyncResult) { throw null; }
EndExecuteReader(System.IAsyncResult asyncResult)3061         public System.Data.SqlClient.SqlDataReader EndExecuteReader(System.IAsyncResult asyncResult) { throw null; }
EndExecuteXmlReader(System.IAsyncResult asyncResult)3062         public System.Xml.XmlReader EndExecuteXmlReader(System.IAsyncResult asyncResult) { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)3063         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)3064         protected override System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteNonQuery()3065         public override int ExecuteNonQuery() { throw null; }
ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken)3066         public override System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReader()3067         public new System.Data.SqlClient.SqlDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)3068         public new System.Data.SqlClient.SqlDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync()3069         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync() { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior)3070         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)3071         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken)3072         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteScalar()3073         public override object ExecuteScalar() { throw null; }
ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken)3074         public override System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteXmlReader()3075         public System.Xml.XmlReader ExecuteXmlReader() { throw null; }
ExecuteXmlReaderAsync()3076         public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync() { throw null; }
ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken)3077         public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Prepare()3078         public override void Prepare() { }
ResetCommandTimeout()3079         public void ResetCommandTimeout() { }
System.ICloneable.Clone()3080         object System.ICloneable.Clone() { throw null; }
3081     }
3082     public sealed partial class SqlCommandBuilder : System.Data.Common.DbCommandBuilder
3083     {
SqlCommandBuilder()3084         public SqlCommandBuilder() { }
SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter)3085         public SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter) { }
3086         public override System.Data.Common.CatalogLocation CatalogLocation { get { throw null; } set { } }
3087         public override string CatalogSeparator { get { throw null; } set { } }
3088         public new System.Data.SqlClient.SqlDataAdapter DataAdapter { get { throw null; } set { } }
3089         public override string QuotePrefix { get { throw null; } set { } }
3090         public override string QuoteSuffix { get { throw null; } set { } }
3091         public override string SchemaSeparator { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause)3092         protected override void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause) { }
DeriveParameters(System.Data.SqlClient.SqlCommand command)3093         public static void DeriveParameters(System.Data.SqlClient.SqlCommand command) { }
GetDeleteCommand()3094         public new System.Data.SqlClient.SqlCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)3095         public new System.Data.SqlClient.SqlCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()3096         public new System.Data.SqlClient.SqlCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)3097         public new System.Data.SqlClient.SqlCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)3098         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)3099         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)3100         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetSchemaTable(System.Data.Common.DbCommand srcCommand)3101         protected override System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand srcCommand) { throw null; }
GetUpdateCommand()3102         public new System.Data.SqlClient.SqlCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)3103         public new System.Data.SqlClient.SqlCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
InitializeCommand(System.Data.Common.DbCommand command)3104         protected override System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw null; }
QuoteIdentifier(string unquotedIdentifier)3105         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)3106         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)3107         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
3108     }
3109     public enum SqlCommandColumnEncryptionSetting
3110     {
3111         Disabled = 3,
3112         Enabled = 1,
3113         ResultSetOnly = 2,
3114         UseConnectionSetting = 0,
3115     }
3116     public sealed partial class SqlConnection : System.Data.Common.DbConnection, System.Data.IDbConnection, System.ICloneable, System.IDisposable
3117     {
SqlConnection()3118         public SqlConnection() { }
SqlConnection(string connectionString)3119         public SqlConnection(string connectionString) { }
SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential)3120         public SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential) { }
3121         public System.Guid ClientConnectionId { get { throw null; } }
3122         public override string ConnectionString { get { throw null; } set { } }
3123         public override int ConnectionTimeout { get { throw null; } }
3124         [System.MonoTODOAttribute]
3125         public System.Data.SqlClient.SqlCredential Credentials { get { throw null; } set { } }
3126         public override string Database { get { throw null; } }
3127         public override string DataSource { get { throw null; } }
3128         protected override System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
3129         public bool FireInfoMessageEventOnUserErrors { get { throw null; } set { } }
3130         public int PacketSize { get { throw null; } }
3131         public override string ServerVersion { get { throw null; } }
3132         public override System.Data.ConnectionState State { get { throw null; } }
3133         public bool StatisticsEnabled { get { throw null; } set { } }
3134         public string WorkstationId { get { throw null; } }
3135         public event System.Data.SqlClient.SqlInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)3136         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()3137         public new System.Data.SqlClient.SqlTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel iso)3138         public new System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso) { throw null; }
BeginTransaction(System.Data.IsolationLevel iso, string transactionName)3139         public System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso, string transactionName) { throw null; }
BeginTransaction(string transactionName)3140         public System.Data.SqlClient.SqlTransaction BeginTransaction(string transactionName) { throw null; }
ChangeDatabase(string database)3141         public override void ChangeDatabase(string database) { }
3142         [System.MonoTODOAttribute]
ChangePassword(string connectionString, string newPassword)3143         public static void ChangePassword(string connectionString, string newPassword) { }
ClearAllPools()3144         public static void ClearAllPools() { }
ClearPool(System.Data.SqlClient.SqlConnection connection)3145         public static void ClearPool(System.Data.SqlClient.SqlConnection connection) { }
Close()3146         public override void Close() { }
CreateCommand()3147         public new System.Data.SqlClient.SqlCommand CreateCommand() { throw null; }
CreateDbCommand()3148         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)3149         protected override void Dispose(bool disposing) { }
EnlistTransaction(System.Transactions.Transaction transaction)3150         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()3151         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)3152         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)3153         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
OnStateChange(System.Data.StateChangeEventArgs stateChange)3154         protected override void OnStateChange(System.Data.StateChangeEventArgs stateChange) { }
Open()3155         public override void Open() { }
OpenAsync(System.Threading.CancellationToken cancellationToken)3156         public override System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ResetStatistics()3157         public void ResetStatistics() { }
RetrieveStatistics()3158         public System.Collections.IDictionary RetrieveStatistics() { throw null; }
System.ICloneable.Clone()3159         object System.ICloneable.Clone() { throw null; }
3160     }
3161     public enum SqlConnectionColumnEncryptionSetting
3162     {
3163         Disabled = 0,
3164         Enabled = 1,
3165     }
3166     public sealed partial class SqlConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
3167     {
SqlConnectionStringBuilder()3168         public SqlConnectionStringBuilder() { }
SqlConnectionStringBuilder(string connectionString)3169         public SqlConnectionStringBuilder(string connectionString) { }
3170         public System.Data.SqlClient.ApplicationIntent ApplicationIntent { get { throw null; } set { } }
3171         public string ApplicationName { get { throw null; } set { } }
3172         [System.ObsoleteAttribute("This property is ignored beginning in .NET Framework 4.5.For more information about SqlClient support for asynchronous programming, seehttps://docs.microsoft.com/en-us/dotnet/framework/data/adonet/asynchronous-programming")]
3173         public bool AsynchronousProcessing { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
3174         public string AttachDBFilename { get { throw null; } set { } }
3175         [System.MonoTODOAttribute("Not implemented in corefx: dotnet/corefx/issues/22474")]
3176         public System.Data.SqlClient.SqlAuthenticationMethod Authentication { get { throw null; } set { } }
3177         [System.MonoTODOAttribute("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
3178         public System.Data.SqlClient.SqlConnectionColumnEncryptionSetting ColumnEncryptionSetting { get { throw null; } set { } }
3179         [System.ObsoleteAttribute("ConnectionReset has been deprecated.  SqlConnection will ignore the 'connection reset'keyword and always reset the connection")]
3180         public bool ConnectionReset { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
3181         public int ConnectRetryCount { get { throw null; } set { } }
3182         public int ConnectRetryInterval { get { throw null; } set { } }
3183         public int ConnectTimeout { get { throw null; } set { } }
3184         [System.MonoTODOAttribute("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
3185         public bool ContextConnection { get { throw null; } set { } }
3186         public string CurrentLanguage { get { throw null; } set { } }
3187         public string DataSource { get { throw null; } set { } }
3188         public bool Encrypt { get { throw null; } set { } }
3189         public bool Enlist { get { throw null; } set { } }
3190         public string FailoverPartner { get { throw null; } set { } }
3191         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlInitialCatalogConverter")]
3192         public string InitialCatalog { get { throw null; } set { } }
3193         public bool IntegratedSecurity { get { throw null; } set { } }
3194         public override object this[string keyword] { get { throw null; } set { } }
3195         public override System.Collections.ICollection Keys { get { throw null; } }
3196         public int LoadBalanceTimeout { get { throw null; } set { } }
3197         public int MaxPoolSize { get { throw null; } set { } }
3198         public int MinPoolSize { get { throw null; } set { } }
3199         public bool MultipleActiveResultSets { get { throw null; } set { } }
3200         public bool MultiSubnetFailover { get { throw null; } set { } }
3201         [System.MonoTODOAttribute("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
3202         public string NetworkLibrary { get { throw null; } set { } }
3203         public int PacketSize { get { throw null; } set { } }
3204         public string Password { get { throw null; } set { } }
3205         public bool PersistSecurityInfo { get { throw null; } set { } }
3206         [System.MonoTODOAttribute("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
3207         public System.Data.SqlClient.PoolBlockingPeriod PoolBlockingPeriod { get { throw null; } set { } }
3208         public bool Pooling { get { throw null; } set { } }
3209         public bool Replication { get { throw null; } set { } }
3210         public string TransactionBinding { get { throw null; } set { } }
3211         [System.MonoTODOAttribute("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
3212         public bool TransparentNetworkIPResolution { get { throw null; } set { } }
3213         public bool TrustServerCertificate { get { throw null; } set { } }
3214         public string TypeSystemVersion { get { throw null; } set { } }
3215         public string UserID { get { throw null; } set { } }
3216         public bool UserInstance { get { throw null; } set { } }
3217         public override System.Collections.ICollection Values { get { throw null; } }
3218         public string WorkstationID { get { throw null; } set { } }
Clear()3219         public override void Clear() { }
ContainsKey(string keyword)3220         public override bool ContainsKey(string keyword) { throw null; }
Remove(string keyword)3221         public override bool Remove(string keyword) { throw null; }
ShouldSerialize(string keyword)3222         public override bool ShouldSerialize(string keyword) { throw null; }
TryGetValue(string keyword, out object value)3223         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
3224     }
3225     [System.SerializableAttribute]
3226     public sealed partial class SqlCredential
3227     {
SqlCredential(string userId, System.Security.SecureString password)3228         public SqlCredential(string userId, System.Security.SecureString password) { }
3229         public System.Security.SecureString Password { get { throw null; } }
3230         public string UserId { get { throw null; } }
3231     }
3232     public sealed partial class SqlDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
3233     {
SqlDataAdapter()3234         public SqlDataAdapter() { }
SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand)3235         public SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand) { }
SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection)3236         public SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection) { }
SqlDataAdapter(string selectCommandText, string selectConnectionString)3237         public SqlDataAdapter(string selectCommandText, string selectConnectionString) { }
3238         public new System.Data.SqlClient.SqlCommand DeleteCommand { get { throw null; } set { } }
3239         public new System.Data.SqlClient.SqlCommand InsertCommand { get { throw null; } set { } }
3240         public new System.Data.SqlClient.SqlCommand SelectCommand { get { throw null; } set { } }
3241         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
3242         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
3243         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
3244         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
3245         public override int UpdateBatchSize { get { throw null; } set { } }
3246         public new System.Data.SqlClient.SqlCommand UpdateCommand { get { throw null; } set { } }
3247         public event System.Data.SqlClient.SqlRowUpdatedEventHandler RowUpdated { add { } remove { } }
3248         public event System.Data.SqlClient.SqlRowUpdatingEventHandler RowUpdating { add { } remove { } }
AddToBatch(System.Data.IDbCommand command)3249         protected override int AddToBatch(System.Data.IDbCommand command) { throw null; }
ClearBatch()3250         protected override void ClearBatch() { }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3251         protected override System.Data.Common.RowUpdatedEventArgs CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw null; }
CreateRowUpdatingEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3252         protected override System.Data.Common.RowUpdatingEventArgs CreateRowUpdatingEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw null; }
ExecuteBatch()3253         protected override int ExecuteBatch() { throw null; }
GetBatchedParameter(int commandIdentifier, int parameterIndex)3254         protected override System.Data.IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex) { throw null; }
GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error)3255         protected override bool GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error) { recordsAffected = default(int); error = default(System.Exception); throw null; }
InitializeBatching()3256         protected override void InitializeBatching() { }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)3257         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)3258         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()3259         object System.ICloneable.Clone() { throw null; }
TerminateBatching()3260         protected override void TerminateBatching() { }
3261     }
3262     public partial class SqlDataReader : System.Data.Common.DbDataReader, System.Data.Common.IDbColumnSchemaGenerator, System.Data.IDataReader, System.Data.IDataRecord, System.IDisposable
3263     {
SqlDataReader()3264         internal SqlDataReader() { }
3265         protected System.Data.SqlClient.SqlConnection Connection { get { throw null; } }
3266         public override int Depth { get { throw null; } }
3267         public override int FieldCount { get { throw null; } }
3268         public override bool HasRows { get { throw null; } }
3269         public override bool IsClosed { get { throw null; } }
3270         public override object this[int i] { get { throw null; } }
3271         public override object this[string name] { get { throw null; } }
3272         public override int RecordsAffected { get { throw null; } }
3273         public override int VisibleFieldCount { get { throw null; } }
Close()3274         public override void Close() { }
Dispose(bool disposing)3275         protected override void Dispose(bool disposing) { }
GetBoolean(int i)3276         public override bool GetBoolean(int i) { throw null; }
GetByte(int i)3277         public override byte GetByte(int i) { throw null; }
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)3278         public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int i)3279         public override char GetChar(int i) { throw null; }
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)3280         public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetColumnSchema()3281         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.DbColumn> GetColumnSchema() { throw null; }
GetDataTypeName(int i)3282         public override string GetDataTypeName(int i) { throw null; }
GetDateTime(int i)3283         public override System.DateTime GetDateTime(int i) { throw null; }
GetDateTimeOffset(int i)3284         public virtual System.DateTimeOffset GetDateTimeOffset(int i) { throw null; }
GetDecimal(int i)3285         public override decimal GetDecimal(int i) { throw null; }
GetDouble(int i)3286         public override double GetDouble(int i) { throw null; }
GetEnumerator()3287         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int i)3288         public override System.Type GetFieldType(int i) { throw null; }
GetFieldValueAsync(int i, System.Threading.CancellationToken cancellationToken)3289         public override System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int i, System.Threading.CancellationToken cancellationToken) { throw null; }
GetFieldValue(int i)3290         public override T GetFieldValue<T>(int i) { throw null; }
GetFloat(int i)3291         public override float GetFloat(int i) { throw null; }
GetGuid(int i)3292         public override System.Guid GetGuid(int i) { throw null; }
GetInt16(int i)3293         public override short GetInt16(int i) { throw null; }
GetInt32(int i)3294         public override int GetInt32(int i) { throw null; }
GetInt64(int i)3295         public override long GetInt64(int i) { throw null; }
GetName(int i)3296         public override string GetName(int i) { throw null; }
GetOrdinal(string name)3297         public override int GetOrdinal(string name) { throw null; }
GetProviderSpecificFieldType(int i)3298         public override System.Type GetProviderSpecificFieldType(int i) { throw null; }
GetProviderSpecificValue(int i)3299         public override object GetProviderSpecificValue(int i) { throw null; }
GetProviderSpecificValues(object[] values)3300         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()3301         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetSqlBinary(int i)3302         public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int i) { throw null; }
GetSqlBoolean(int i)3303         public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int i) { throw null; }
GetSqlByte(int i)3304         public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int i) { throw null; }
GetSqlBytes(int i)3305         public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int i) { throw null; }
GetSqlChars(int i)3306         public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int i) { throw null; }
GetSqlDateTime(int i)3307         public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int i) { throw null; }
GetSqlDecimal(int i)3308         public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int i) { throw null; }
GetSqlDouble(int i)3309         public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int i) { throw null; }
GetSqlGuid(int i)3310         public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int i) { throw null; }
GetSqlInt16(int i)3311         public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int i) { throw null; }
GetSqlInt32(int i)3312         public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int i) { throw null; }
GetSqlInt64(int i)3313         public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int i) { throw null; }
GetSqlMoney(int i)3314         public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int i) { throw null; }
GetSqlSingle(int i)3315         public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int i) { throw null; }
GetSqlString(int i)3316         public virtual System.Data.SqlTypes.SqlString GetSqlString(int i) { throw null; }
GetSqlValue(int i)3317         public virtual object GetSqlValue(int i) { throw null; }
GetSqlValues(object[] values)3318         public virtual int GetSqlValues(object[] values) { throw null; }
GetSqlXml(int i)3319         public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int i) { throw null; }
GetStream(int i)3320         public override System.IO.Stream GetStream(int i) { throw null; }
GetString(int i)3321         public override string GetString(int i) { throw null; }
GetTextReader(int i)3322         public override System.IO.TextReader GetTextReader(int i) { throw null; }
GetTimeSpan(int i)3323         public virtual System.TimeSpan GetTimeSpan(int i) { throw null; }
GetValue(int i)3324         public override object GetValue(int i) { throw null; }
GetValues(object[] values)3325         public override int GetValues(object[] values) { throw null; }
GetXmlReader(int i)3326         public virtual System.Xml.XmlReader GetXmlReader(int i) { throw null; }
IsCommandBehavior(System.Data.CommandBehavior condition)3327         protected internal bool IsCommandBehavior(System.Data.CommandBehavior condition) { throw null; }
IsDBNull(int i)3328         public override bool IsDBNull(int i) { throw null; }
IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken)3329         public override System.Threading.Tasks.Task<bool> IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken) { throw null; }
NextResult()3330         public override bool NextResult() { throw null; }
NextResultAsync(System.Threading.CancellationToken cancellationToken)3331         public override System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read()3332         public override bool Read() { throw null; }
ReadAsync(System.Threading.CancellationToken cancellationToken)3333         public override System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
3334     }
3335     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(0))]
3336     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
3337     [System.Runtime.InteropServices.GuidAttribute("afef65ad-4577-447a-a148-83acadd3d4b9")]
3338     public sealed partial class SQLDebugging
3339     {
3340         [System.MonoTODOAttribute]
SQLDebugging()3341         public SQLDebugging() { }
3342     }
3343     public sealed partial class SqlDependency
3344     {
SqlDependency()3345         public SqlDependency() { }
SqlDependency(System.Data.SqlClient.SqlCommand command)3346         public SqlDependency(System.Data.SqlClient.SqlCommand command) { }
SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout)3347         public SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout) { }
3348         public bool HasChanges { get { throw null; } }
3349         public string Id { get { throw null; } }
3350         public event System.Data.SqlClient.OnChangeEventHandler OnChange { add { } remove { } }
AddCommandDependency(System.Data.SqlClient.SqlCommand command)3351         public void AddCommandDependency(System.Data.SqlClient.SqlCommand command) { }
Start(string connectionString)3352         public static bool Start(string connectionString) { throw null; }
Start(string connectionString, string queue)3353         public static bool Start(string connectionString, string queue) { throw null; }
Stop(string connectionString)3354         public static bool Stop(string connectionString) { throw null; }
Stop(string connectionString, string queue)3355         public static bool Stop(string connectionString, string queue) { throw null; }
3356     }
3357     [System.SerializableAttribute]
3358     public sealed partial class SqlError
3359     {
SqlError()3360         internal SqlError() { }
3361         public byte Class { get { throw null; } }
3362         public int LineNumber { get { throw null; } }
3363         public string Message { get { throw null; } }
3364         public int Number { get { throw null; } }
3365         public string Procedure { get { throw null; } }
3366         public string Server { get { throw null; } }
3367         public string Source { get { throw null; } }
3368         public byte State { get { throw null; } }
ToString()3369         public override string ToString() { throw null; }
3370     }
3371     [System.SerializableAttribute]
3372     public sealed partial class SqlErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
3373     {
SqlErrorCollection()3374         internal SqlErrorCollection() { }
3375         public int Count { get { throw null; } }
3376         public System.Data.SqlClient.SqlError this[int index] { get { throw null; } }
3377         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3378         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)3379         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.SqlClient.SqlError[] array, int index)3380         public void CopyTo(System.Data.SqlClient.SqlError[] array, int index) { }
GetEnumerator()3381         public System.Collections.IEnumerator GetEnumerator() { throw null; }
3382     }
3383     [System.SerializableAttribute]
3384     public sealed partial class SqlException : System.Data.Common.DbException
3385     {
SqlException()3386         internal SqlException() { }
3387         public byte Class { get { throw null; } }
3388         public System.Guid ClientConnectionId { get { throw null; } }
3389         public System.Data.SqlClient.SqlErrorCollection Errors { get { throw null; } }
3390         public int LineNumber { get { throw null; } }
3391         public override string Message { get { throw null; } }
3392         public int Number { get { throw null; } }
3393         public string Procedure { get { throw null; } }
3394         public string Server { get { throw null; } }
3395         public override string Source { get { throw null; } }
3396         public byte State { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)3397         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
ToString()3398         public override string ToString() { throw null; }
3399     }
3400     public sealed partial class SqlInfoMessageEventArgs : System.EventArgs
3401     {
SqlInfoMessageEventArgs()3402         internal SqlInfoMessageEventArgs() { }
3403         public System.Data.SqlClient.SqlErrorCollection Errors { get { throw null; } }
3404         public string Message { get { throw null; } }
3405         public string Source { get { throw null; } }
ToString()3406         public override string ToString() { throw null; }
3407     }
SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e)3408     public delegate void SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e);
3409     public partial class SqlNotificationEventArgs : System.EventArgs
3410     {
SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source)3411         public SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source) { }
3412         public System.Data.SqlClient.SqlNotificationInfo Info { get { throw null; } }
3413         public System.Data.SqlClient.SqlNotificationSource Source { get { throw null; } }
3414         public System.Data.SqlClient.SqlNotificationType Type { get { throw null; } }
3415     }
3416     public enum SqlNotificationInfo
3417     {
3418         AlreadyChanged = -2,
3419         Alter = 5,
3420         Delete = 3,
3421         Drop = 4,
3422         Error = 7,
3423         Expired = 12,
3424         Insert = 1,
3425         Invalid = 9,
3426         Isolation = 11,
3427         Merge = 16,
3428         Options = 10,
3429         PreviousFire = 14,
3430         Query = 8,
3431         Resource = 13,
3432         Restart = 6,
3433         TemplateLimit = 15,
3434         Truncate = 0,
3435         Unknown = -1,
3436         Update = 2,
3437     }
3438     public enum SqlNotificationSource
3439     {
3440         Client = -2,
3441         Data = 0,
3442         Database = 3,
3443         Environment = 6,
3444         Execution = 7,
3445         Object = 2,
3446         Owner = 8,
3447         Statement = 5,
3448         System = 4,
3449         Timeout = 1,
3450         Unknown = -1,
3451     }
3452     public enum SqlNotificationType
3453     {
3454         Change = 0,
3455         Subscribe = 1,
3456         Unknown = -1,
3457     }
3458     [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlParameter.SqlParameterConverter")]
3459     public sealed partial class SqlParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
3460     {
SqlParameter()3461         public SqlParameter() { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType)3462         public SqlParameter(string parameterName, System.Data.SqlDbType dbType) { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size)3463         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size) { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, object value)3464         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, object value) { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, System.Data.ParameterDirection direction, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value, string xmlSchemaCollectionDatabase, string xmlSchemaCollectionOwningSchema, string xmlSchemaCollectionName)3465         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, System.Data.ParameterDirection direction, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value, string xmlSchemaCollectionDatabase, string xmlSchemaCollectionOwningSchema, string xmlSchemaCollectionName) { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, string sourceColumn)3466         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, string sourceColumn) { }
SqlParameter(string parameterName, object value)3467         public SqlParameter(string parameterName, object value) { }
3468         public System.Data.SqlTypes.SqlCompareOptions CompareInfo { get { throw null; } set { } }
3469         public override System.Data.DbType DbType { get { throw null; } set { } }
3470         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
3471         public override bool IsNullable { get { throw null; } set { } }
3472         public int LocaleId { get { throw null; } set { } }
3473         public int Offset { get { throw null; } set { } }
3474         public override string ParameterName { get { throw null; } set { } }
3475         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3476         public new byte Precision { get { throw null; } set { } }
3477         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3478         public new byte Scale { get { throw null; } set { } }
3479         public override int Size { get { throw null; } set { } }
3480         public override string SourceColumn { get { throw null; } set { } }
3481         public override bool SourceColumnNullMapping { get { throw null; } set { } }
3482         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
3483         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
3484         public System.Data.SqlDbType SqlDbType { get { throw null; } set { } }
3485         public object SqlValue { get { throw null; } set { } }
3486         public string TypeName { get { throw null; } set { } }
3487         public string UdtTypeName { get { throw null; } set { } }
3488         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
3489         public override object Value { get { throw null; } set { } }
3490         public string XmlSchemaCollectionDatabase { get { throw null; } set { } }
3491         public string XmlSchemaCollectionName { get { throw null; } set { } }
3492         public string XmlSchemaCollectionOwningSchema { get { throw null; } set { } }
ResetDbType()3493         public override void ResetDbType() { }
ResetSqlDbType()3494         public void ResetSqlDbType() { }
System.ICloneable.Clone()3495         object System.ICloneable.Clone() { throw null; }
ToString()3496         public override string ToString() { throw null; }
3497     }
3498     public sealed partial class SqlParameterCollection : System.Data.Common.DbParameterCollection, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IDataParameterCollection
3499     {
SqlParameterCollection()3500         internal SqlParameterCollection() { }
3501         public override int Count { get { throw null; } }
3502         public new System.Data.SqlClient.SqlParameter this[int index] { get { throw null; } set { } }
3503         public new System.Data.SqlClient.SqlParameter this[string parameterName] { get { throw null; } set { } }
3504         public override object SyncRoot { get { throw null; } }
Add(System.Data.SqlClient.SqlParameter value)3505         public System.Data.SqlClient.SqlParameter Add(System.Data.SqlClient.SqlParameter value) { throw null; }
Add(object value)3506         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType)3507         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType, int size)3508         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType, int size) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType, int size, string sourceColumn)3509         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType, int size, string sourceColumn) { throw null; }
Add(string parameterName, object value)3510         public System.Data.SqlClient.SqlParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)3511         public override void AddRange(System.Array values) { }
AddRange(System.Data.SqlClient.SqlParameter[] values)3512         public void AddRange(System.Data.SqlClient.SqlParameter[] values) { }
AddWithValue(string parameterName, object value)3513         public System.Data.SqlClient.SqlParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()3514         public override void Clear() { }
Contains(System.Data.SqlClient.SqlParameter value)3515         public bool Contains(System.Data.SqlClient.SqlParameter value) { throw null; }
Contains(object value)3516         public override bool Contains(object value) { throw null; }
Contains(string value)3517         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)3518         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.SqlClient.SqlParameter[] array, int index)3519         public void CopyTo(System.Data.SqlClient.SqlParameter[] array, int index) { }
GetEnumerator()3520         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)3521         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)3522         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.SqlClient.SqlParameter value)3523         public int IndexOf(System.Data.SqlClient.SqlParameter value) { throw null; }
IndexOf(object value)3524         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)3525         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.SqlClient.SqlParameter value)3526         public void Insert(int index, System.Data.SqlClient.SqlParameter value) { }
Insert(int index, object value)3527         public override void Insert(int index, object value) { }
Remove(System.Data.SqlClient.SqlParameter value)3528         public void Remove(System.Data.SqlClient.SqlParameter value) { }
Remove(object value)3529         public override void Remove(object value) { }
RemoveAt(int index)3530         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)3531         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)3532         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)3533         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
3534     }
3535     public partial class SqlRowsCopiedEventArgs : System.EventArgs
3536     {
SqlRowsCopiedEventArgs(long rowsCopied)3537         public SqlRowsCopiedEventArgs(long rowsCopied) { }
3538         public bool Abort { get { throw null; } set { } }
3539         public long RowsCopied { get { throw null; } }
3540     }
SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e)3541     public delegate void SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e);
3542     public sealed partial class SqlRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
3543     {
SqlRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3544         public SqlRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) : base (default(System.Data.DataRow), default(System.Data.IDbCommand), default(System.Data.StatementType), default(System.Data.Common.DataTableMapping)) { }
3545         public new System.Data.SqlClient.SqlCommand Command { get { throw null; } }
3546     }
SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e)3547     public delegate void SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e);
3548     public sealed partial class SqlRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
3549     {
SqlRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3550         public SqlRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) : base (default(System.Data.DataRow), default(System.Data.IDbCommand), default(System.Data.StatementType), default(System.Data.Common.DataTableMapping)) { }
3551         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
3552         public new System.Data.SqlClient.SqlCommand Command { get { throw null; } set { } }
3553     }
SqlRowUpdatingEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatingEventArgs e)3554     public delegate void SqlRowUpdatingEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatingEventArgs e);
3555     public sealed partial class SqlTransaction : System.Data.Common.DbTransaction
3556     {
SqlTransaction()3557         internal SqlTransaction() { }
3558         public new System.Data.SqlClient.SqlConnection Connection { get { throw null; } }
3559         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
3560         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()3561         public override void Commit() { }
Dispose(bool disposing)3562         protected override void Dispose(bool disposing) { }
Rollback()3563         public override void Rollback() { }
Rollback(string transactionName)3564         public void Rollback(string transactionName) { }
Save(string savePointName)3565         public void Save(string savePointName) { }
3566     }
3567 }
3568 namespace System.Data.SqlTypes
3569 {
3570     public partial interface INullable
3571     {
3572         bool IsNull { get; }
3573     }
3574     [System.SerializableAttribute]
3575     public sealed partial class SqlAlreadyFilledException : System.Data.SqlTypes.SqlTypeException
3576     {
SqlAlreadyFilledException()3577         public SqlAlreadyFilledException() { }
SqlAlreadyFilledException(string message)3578         public SqlAlreadyFilledException(string message) { }
SqlAlreadyFilledException(string message, System.Exception e)3579         public SqlAlreadyFilledException(string message, System.Exception e) { }
3580     }
3581     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3582     [System.SerializableAttribute]
3583     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3584     public partial struct SqlBinary : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
3585     {
3586         public static readonly System.Data.SqlTypes.SqlBinary Null;
SqlBinarySystem.Data.SqlTypes.SqlBinary3587         public SqlBinary(byte[] value) { throw null;}
3588         public bool IsNull { get { throw null; } }
3589         public byte this[int index] { get { throw null; } }
3590         public int Length { get { throw null; } }
3591         public byte[] Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlBinary3592         public static System.Data.SqlTypes.SqlBinary Add(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBinary3593         public int CompareTo(System.Data.SqlTypes.SqlBinary value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBinary3594         public int CompareTo(object value) { throw null; }
ConcatSystem.Data.SqlTypes.SqlBinary3595         public static System.Data.SqlTypes.SqlBinary Concat(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBinary3596         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBinary3597         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlBinary3598         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlBinary3599         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlBinary3600         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlBinary3601         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlBinary3602         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlBinary3603         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlBinary3604         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator +System.Data.SqlTypes.SqlBinary3605         public static System.Data.SqlTypes.SqlBinary operator +(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator ==System.Data.SqlTypes.SqlBinary3606         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator byte[]System.Data.SqlTypes.SqlBinary3607         public static explicit operator byte[] (System.Data.SqlTypes.SqlBinary x) { throw null; }
operator System.Data.SqlTypes.SqlBinarySystem.Data.SqlTypes.SqlBinary3608         public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator >System.Data.SqlTypes.SqlBinary3609         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator >=System.Data.SqlTypes.SqlBinary3610         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator System.Data.SqlTypes.SqlBinarySystem.Data.SqlTypes.SqlBinary3611         public static implicit operator System.Data.SqlTypes.SqlBinary (byte[] x) { throw null; }
operator !=System.Data.SqlTypes.SqlBinary3612         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator <System.Data.SqlTypes.SqlBinary3613         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator <=System.Data.SqlTypes.SqlBinary3614         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlBinary3615         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlBinary3616         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlBinary3617         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlGuidSystem.Data.SqlTypes.SqlBinary3618         public System.Data.SqlTypes.SqlGuid ToSqlGuid() { throw null; }
ToStringSystem.Data.SqlTypes.SqlBinary3619         public override string ToString() { throw null; }
3620     }
3621     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3622     [System.SerializableAttribute]
3623     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3624     public partial struct SqlBoolean : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
3625     {
3626         public static readonly System.Data.SqlTypes.SqlBoolean False;
3627         public static readonly System.Data.SqlTypes.SqlBoolean Null;
3628         public static readonly System.Data.SqlTypes.SqlBoolean One;
3629         public static readonly System.Data.SqlTypes.SqlBoolean True;
3630         public static readonly System.Data.SqlTypes.SqlBoolean Zero;
SqlBooleanSystem.Data.SqlTypes.SqlBoolean3631         public SqlBoolean(bool value) { throw null;}
SqlBooleanSystem.Data.SqlTypes.SqlBoolean3632         public SqlBoolean(int value) { throw null;}
3633         public byte ByteValue { get { throw null; } }
3634         public bool IsFalse { get { throw null; } }
3635         public bool IsNull { get { throw null; } }
3636         public bool IsTrue { get { throw null; } }
3637         public bool Value { get { throw null; } }
AndSystem.Data.SqlTypes.SqlBoolean3638         public static System.Data.SqlTypes.SqlBoolean And(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBoolean3639         public int CompareTo(System.Data.SqlTypes.SqlBoolean value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBoolean3640         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBoolean3641         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBoolean3642         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlBoolean3643         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlBoolean3644         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlBoolean3645         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
GreaterThanOrEqualsSystem.Data.SqlTypes.SqlBoolean3646         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlBoolean3647         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
LessThanOrEqualsSystem.Data.SqlTypes.SqlBoolean3648         public static System.Data.SqlTypes.SqlBoolean LessThanOrEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlBoolean3649         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlBoolean3650         public static System.Data.SqlTypes.SqlBoolean OnesComplement(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator &System.Data.SqlTypes.SqlBoolean3651         public static System.Data.SqlTypes.SqlBoolean operator &(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator |System.Data.SqlTypes.SqlBoolean3652         public static System.Data.SqlTypes.SqlBoolean operator |(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator ==System.Data.SqlTypes.SqlBoolean3653         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator ^System.Data.SqlTypes.SqlBoolean3654         public static System.Data.SqlTypes.SqlBoolean operator ^(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator boolSystem.Data.SqlTypes.SqlBoolean3655         public static explicit operator bool (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3656         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3657         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3658         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3659         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3660         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3661         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3662         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3663         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3664         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlString x) { throw null; }
operator falseSystem.Data.SqlTypes.SqlBoolean3665         public static bool operator false(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator >System.Data.SqlTypes.SqlBoolean3666         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator >=System.Data.SqlTypes.SqlBoolean3667         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean3668         public static implicit operator System.Data.SqlTypes.SqlBoolean (bool x) { throw null; }
operator !=System.Data.SqlTypes.SqlBoolean3669         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator <System.Data.SqlTypes.SqlBoolean3670         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator <=System.Data.SqlTypes.SqlBoolean3671         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator !System.Data.SqlTypes.SqlBoolean3672         public static System.Data.SqlTypes.SqlBoolean operator !(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator ~System.Data.SqlTypes.SqlBoolean3673         public static System.Data.SqlTypes.SqlBoolean operator ~(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator trueSystem.Data.SqlTypes.SqlBoolean3674         public static bool operator true(System.Data.SqlTypes.SqlBoolean x) { throw null; }
OrSystem.Data.SqlTypes.SqlBoolean3675         public static System.Data.SqlTypes.SqlBoolean Or(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
ParseSystem.Data.SqlTypes.SqlBoolean3676         public static System.Data.SqlTypes.SqlBoolean Parse(string s) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlBoolean3677         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlBoolean3678         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlBoolean3679         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlByteSystem.Data.SqlTypes.SqlBoolean3680         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlBoolean3681         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlBoolean3682         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlBoolean3683         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlBoolean3684         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlBoolean3685         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlBoolean3686         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlBoolean3687         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlBoolean3688         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlBoolean3689         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlBoolean3690         public static System.Data.SqlTypes.SqlBoolean Xor(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
3691     }
3692     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3693     [System.SerializableAttribute]
3694     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3695     public partial struct SqlByte : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
3696     {
3697         public static readonly System.Data.SqlTypes.SqlByte MaxValue;
3698         public static readonly System.Data.SqlTypes.SqlByte MinValue;
3699         public static readonly System.Data.SqlTypes.SqlByte Null;
3700         public static readonly System.Data.SqlTypes.SqlByte Zero;
SqlByteSystem.Data.SqlTypes.SqlByte3701         public SqlByte(byte value) { throw null;}
3702         public bool IsNull { get { throw null; } }
3703         public byte Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlByte3704         public static System.Data.SqlTypes.SqlByte Add(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlByte3705         public static System.Data.SqlTypes.SqlByte BitwiseAnd(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlByte3706         public static System.Data.SqlTypes.SqlByte BitwiseOr(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlByte3707         public int CompareTo(System.Data.SqlTypes.SqlByte value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlByte3708         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlByte3709         public static System.Data.SqlTypes.SqlByte Divide(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlByte3710         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlByte3711         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlByte3712         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlByte3713         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlByte3714         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlByte3715         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlByte3716         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlByte3717         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ModSystem.Data.SqlTypes.SqlByte3718         public static System.Data.SqlTypes.SqlByte Mod(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlByte3719         public static System.Data.SqlTypes.SqlByte Modulus(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlByte3720         public static System.Data.SqlTypes.SqlByte Multiply(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlByte3721         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlByte3722         public static System.Data.SqlTypes.SqlByte OnesComplement(System.Data.SqlTypes.SqlByte x) { throw null; }
operator +System.Data.SqlTypes.SqlByte3723         public static System.Data.SqlTypes.SqlByte operator +(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator &System.Data.SqlTypes.SqlByte3724         public static System.Data.SqlTypes.SqlByte operator &(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator |System.Data.SqlTypes.SqlByte3725         public static System.Data.SqlTypes.SqlByte operator |(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator /System.Data.SqlTypes.SqlByte3726         public static System.Data.SqlTypes.SqlByte operator /(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ==System.Data.SqlTypes.SqlByte3727         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ^System.Data.SqlTypes.SqlByte3728         public static System.Data.SqlTypes.SqlByte operator ^(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3729         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator byteSystem.Data.SqlTypes.SqlByte3730         public static explicit operator byte (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3731         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3732         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3733         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3734         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3735         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3736         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3737         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3738         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlByte3739         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator >=System.Data.SqlTypes.SqlByte3740         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte3741         public static implicit operator System.Data.SqlTypes.SqlByte (byte x) { throw null; }
operator !=System.Data.SqlTypes.SqlByte3742         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator <System.Data.SqlTypes.SqlByte3743         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator <=System.Data.SqlTypes.SqlByte3744         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator %System.Data.SqlTypes.SqlByte3745         public static System.Data.SqlTypes.SqlByte operator %(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator *System.Data.SqlTypes.SqlByte3746         public static System.Data.SqlTypes.SqlByte operator *(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ~System.Data.SqlTypes.SqlByte3747         public static System.Data.SqlTypes.SqlByte operator ~(System.Data.SqlTypes.SqlByte x) { throw null; }
operator -System.Data.SqlTypes.SqlByte3748         public static System.Data.SqlTypes.SqlByte operator -(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ParseSystem.Data.SqlTypes.SqlByte3749         public static System.Data.SqlTypes.SqlByte Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlByte3750         public static System.Data.SqlTypes.SqlByte Subtract(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlByte3751         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlByte3752         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlByte3753         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlByte3754         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlByte3755         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlByte3756         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlByte3757         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlByte3758         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlByte3759         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlByte3760         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlByte3761         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlByte3762         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlByte3763         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlByte3764         public static System.Data.SqlTypes.SqlByte Xor(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
3765     }
3766     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3767     [System.SerializableAttribute]
3768     public sealed partial class SqlBytes : System.Data.SqlTypes.INullable, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
3769     {
SqlBytes()3770         public SqlBytes() { }
SqlBytes(byte[] buffer)3771         public SqlBytes(byte[] buffer) { }
SqlBytes(System.Data.SqlTypes.SqlBinary value)3772         public SqlBytes(System.Data.SqlTypes.SqlBinary value) { }
SqlBytes(System.IO.Stream s)3773         public SqlBytes(System.IO.Stream s) { }
3774         public byte[] Buffer { get { throw null; } }
3775         public bool IsNull { get { throw null; } }
3776         public byte this[long offset] { get { throw null; } set { } }
3777         public long Length { get { throw null; } }
3778         public long MaxLength { get { throw null; } }
3779         public static System.Data.SqlTypes.SqlBytes Null { get { throw null; } }
3780         public System.Data.SqlTypes.StorageState Storage { get { throw null; } }
3781         public System.IO.Stream Stream { get { throw null; } set { } }
3782         public byte[] Value { get { throw null; } }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)3783         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
operator System.Data.SqlTypes.SqlBytes(System.Data.SqlTypes.SqlBinary value)3784         public static explicit operator System.Data.SqlTypes.SqlBytes (System.Data.SqlTypes.SqlBinary value) { throw null; }
operator System.Data.SqlTypes.SqlBinary(System.Data.SqlTypes.SqlBytes value)3785         public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlBytes value) { throw null; }
Read(long offset, byte[] buffer, int offsetInBuffer, int count)3786         public long Read(long offset, byte[] buffer, int offsetInBuffer, int count) { throw null; }
SetLength(long value)3787         public void SetLength(long value) { }
SetNull()3788         public void SetNull() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3789         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
System.Xml.Serialization.IXmlSerializable.GetSchema()3790         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)3791         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)3792         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBinary()3793         public System.Data.SqlTypes.SqlBinary ToSqlBinary() { throw null; }
Write(long offset, byte[] buffer, int offsetInBuffer, int count)3794         public void Write(long offset, byte[] buffer, int offsetInBuffer, int count) { }
3795     }
3796     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3797     [System.SerializableAttribute]
3798     public sealed partial class SqlChars : System.Data.SqlTypes.INullable, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
3799     {
SqlChars()3800         public SqlChars() { }
SqlChars(char[] buffer)3801         public SqlChars(char[] buffer) { }
SqlChars(System.Data.SqlTypes.SqlString value)3802         public SqlChars(System.Data.SqlTypes.SqlString value) { }
3803         public char[] Buffer { get { throw null; } }
3804         public bool IsNull { get { throw null; } }
3805         public char this[long offset] { get { throw null; } set { } }
3806         public long Length { get { throw null; } }
3807         public long MaxLength { get { throw null; } }
3808         public static System.Data.SqlTypes.SqlChars Null { get { throw null; } }
3809         public System.Data.SqlTypes.StorageState Storage { get { throw null; } }
3810         public char[] Value { get { throw null; } }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)3811         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
operator System.Data.SqlTypes.SqlString(System.Data.SqlTypes.SqlChars value)3812         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlChars value) { throw null; }
operator System.Data.SqlTypes.SqlChars(System.Data.SqlTypes.SqlString value)3813         public static explicit operator System.Data.SqlTypes.SqlChars (System.Data.SqlTypes.SqlString value) { throw null; }
Read(long offset, char[] buffer, int offsetInBuffer, int count)3814         public long Read(long offset, char[] buffer, int offsetInBuffer, int count) { throw null; }
SetLength(long value)3815         public void SetLength(long value) { }
SetNull()3816         public void SetNull() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3817         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
System.Xml.Serialization.IXmlSerializable.GetSchema()3818         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)3819         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)3820         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlString()3821         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
Write(long offset, char[] buffer, int offsetInBuffer, int count)3822         public void Write(long offset, char[] buffer, int offsetInBuffer, int count) { }
3823     }
3824     [System.FlagsAttribute]
3825     public enum SqlCompareOptions
3826     {
3827         BinarySort = 32768,
3828         BinarySort2 = 16384,
3829         IgnoreCase = 1,
3830         IgnoreKanaType = 8,
3831         IgnoreNonSpace = 2,
3832         IgnoreWidth = 16,
3833         None = 0,
3834     }
3835     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3836     [System.SerializableAttribute]
3837     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3838     public partial struct SqlDateTime : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
3839     {
3840         public static readonly System.Data.SqlTypes.SqlDateTime MaxValue;
3841         public static readonly System.Data.SqlTypes.SqlDateTime MinValue;
3842         public static readonly System.Data.SqlTypes.SqlDateTime Null;
3843         public static readonly int SQLTicksPerHour;
3844         public static readonly int SQLTicksPerMinute;
3845         public static readonly int SQLTicksPerSecond;
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3846         public SqlDateTime(System.DateTime value) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3847         public SqlDateTime(int dayTicks, int timeTicks) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3848         public SqlDateTime(int year, int month, int day) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3849         public SqlDateTime(int year, int month, int day, int hour, int minute, int second) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3850         public SqlDateTime(int year, int month, int day, int hour, int minute, int second, double millisecond) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3851         public SqlDateTime(int year, int month, int day, int hour, int minute, int second, int bilisecond) { throw null;}
3852         public int DayTicks { get { throw null; } }
3853         public bool IsNull { get { throw null; } }
3854         public int TimeTicks { get { throw null; } }
3855         public System.DateTime Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlDateTime3856         public static System.Data.SqlTypes.SqlDateTime Add(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDateTime3857         public int CompareTo(System.Data.SqlTypes.SqlDateTime value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDateTime3858         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDateTime3859         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDateTime3860         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDateTime3861         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDateTime3862         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDateTime3863         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDateTime3864         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDateTime3865         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDateTime3866         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDateTime3867         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator +System.Data.SqlTypes.SqlDateTime3868         public static System.Data.SqlTypes.SqlDateTime operator +(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
operator ==System.Data.SqlTypes.SqlDateTime3869         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator System.DateTimeSystem.Data.SqlTypes.SqlDateTime3870         public static explicit operator System.DateTime (System.Data.SqlTypes.SqlDateTime x) { throw null; }
operator System.Data.SqlTypes.SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3871         public static explicit operator System.Data.SqlTypes.SqlDateTime (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlDateTime3872         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator >=System.Data.SqlTypes.SqlDateTime3873         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator System.Data.SqlTypes.SqlDateTimeSystem.Data.SqlTypes.SqlDateTime3874         public static implicit operator System.Data.SqlTypes.SqlDateTime (System.DateTime value) { throw null; }
operator !=System.Data.SqlTypes.SqlDateTime3875         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator <System.Data.SqlTypes.SqlDateTime3876         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator <=System.Data.SqlTypes.SqlDateTime3877         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator -System.Data.SqlTypes.SqlDateTime3878         public static System.Data.SqlTypes.SqlDateTime operator -(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
ParseSystem.Data.SqlTypes.SqlDateTime3879         public static System.Data.SqlTypes.SqlDateTime Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDateTime3880         public static System.Data.SqlTypes.SqlDateTime Subtract(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlDateTime3881         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDateTime3882         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDateTime3883         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlStringSystem.Data.SqlTypes.SqlDateTime3884         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDateTime3885         public override string ToString() { throw null; }
3886     }
3887     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3888     [System.SerializableAttribute]
3889     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3890     public partial struct SqlDecimal : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
3891     {
3892         public static readonly byte MaxPrecision;
3893         public static readonly byte MaxScale;
3894         public static readonly System.Data.SqlTypes.SqlDecimal MaxValue;
3895         public static readonly System.Data.SqlTypes.SqlDecimal MinValue;
3896         public static readonly System.Data.SqlTypes.SqlDecimal Null;
SqlDecimalSystem.Data.SqlTypes.SqlDecimal3897         public SqlDecimal(byte bPrecision, byte bScale, bool fPositive, int data1, int data2, int data3, int data4) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal3898         public SqlDecimal(byte bPrecision, byte bScale, bool fPositive, int[] bits) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal3899         public SqlDecimal(decimal value) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal3900         public SqlDecimal(double dVal) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal3901         public SqlDecimal(int value) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal3902         public SqlDecimal(long value) { throw null;}
3903         public byte[] BinData { get { throw null; } }
3904         public int[] Data { get { throw null; } }
3905         public bool IsNull { get { throw null; } }
3906         public bool IsPositive { get { throw null; } }
3907         public byte Precision { get { throw null; } }
3908         public byte Scale { get { throw null; } }
3909         public decimal Value { get { throw null; } }
AbsSystem.Data.SqlTypes.SqlDecimal3910         public static System.Data.SqlTypes.SqlDecimal Abs(System.Data.SqlTypes.SqlDecimal n) { throw null; }
AddSystem.Data.SqlTypes.SqlDecimal3911         public static System.Data.SqlTypes.SqlDecimal Add(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
AdjustScaleSystem.Data.SqlTypes.SqlDecimal3912         public static System.Data.SqlTypes.SqlDecimal AdjustScale(System.Data.SqlTypes.SqlDecimal n, int digits, bool fRound) { throw null; }
CeilingSystem.Data.SqlTypes.SqlDecimal3913         public static System.Data.SqlTypes.SqlDecimal Ceiling(System.Data.SqlTypes.SqlDecimal n) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDecimal3914         public int CompareTo(System.Data.SqlTypes.SqlDecimal value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDecimal3915         public int CompareTo(object value) { throw null; }
ConvertToPrecScaleSystem.Data.SqlTypes.SqlDecimal3916         public static System.Data.SqlTypes.SqlDecimal ConvertToPrecScale(System.Data.SqlTypes.SqlDecimal n, int precision, int scale) { throw null; }
DivideSystem.Data.SqlTypes.SqlDecimal3917         public static System.Data.SqlTypes.SqlDecimal Divide(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDecimal3918         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDecimal3919         public override bool Equals(object value) { throw null; }
FloorSystem.Data.SqlTypes.SqlDecimal3920         public static System.Data.SqlTypes.SqlDecimal Floor(System.Data.SqlTypes.SqlDecimal n) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDecimal3921         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDecimal3922         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDecimal3923         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDecimal3924         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDecimal3925         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDecimal3926         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlDecimal3927         public static System.Data.SqlTypes.SqlDecimal Multiply(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDecimal3928         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator +System.Data.SqlTypes.SqlDecimal3929         public static System.Data.SqlTypes.SqlDecimal operator +(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator /System.Data.SqlTypes.SqlDecimal3930         public static System.Data.SqlTypes.SqlDecimal operator /(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator ==System.Data.SqlTypes.SqlDecimal3931         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3932         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator decimalSystem.Data.SqlTypes.SqlDecimal3933         public static explicit operator decimal (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3934         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3935         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3936         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlString x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3937         public static explicit operator System.Data.SqlTypes.SqlDecimal (double x) { throw null; }
operator >System.Data.SqlTypes.SqlDecimal3938         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator >=System.Data.SqlTypes.SqlDecimal3939         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3940         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3941         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3942         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3943         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3944         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3945         public static implicit operator System.Data.SqlTypes.SqlDecimal (decimal x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal3946         public static implicit operator System.Data.SqlTypes.SqlDecimal (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlDecimal3947         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator <System.Data.SqlTypes.SqlDecimal3948         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator <=System.Data.SqlTypes.SqlDecimal3949         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator *System.Data.SqlTypes.SqlDecimal3950         public static System.Data.SqlTypes.SqlDecimal operator *(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator -System.Data.SqlTypes.SqlDecimal3951         public static System.Data.SqlTypes.SqlDecimal operator -(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator -System.Data.SqlTypes.SqlDecimal3952         public static System.Data.SqlTypes.SqlDecimal operator -(System.Data.SqlTypes.SqlDecimal x) { throw null; }
ParseSystem.Data.SqlTypes.SqlDecimal3953         public static System.Data.SqlTypes.SqlDecimal Parse(string s) { throw null; }
PowerSystem.Data.SqlTypes.SqlDecimal3954         public static System.Data.SqlTypes.SqlDecimal Power(System.Data.SqlTypes.SqlDecimal n, double exp) { throw null; }
RoundSystem.Data.SqlTypes.SqlDecimal3955         public static System.Data.SqlTypes.SqlDecimal Round(System.Data.SqlTypes.SqlDecimal n, int position) { throw null; }
SignSystem.Data.SqlTypes.SqlDecimal3956         public static System.Data.SqlTypes.SqlInt32 Sign(System.Data.SqlTypes.SqlDecimal n) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDecimal3957         public static System.Data.SqlTypes.SqlDecimal Subtract(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlDecimal3958         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDecimal3959         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDecimal3960         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToDoubleSystem.Data.SqlTypes.SqlDecimal3961         public double ToDouble() { throw null; }
ToSqlBooleanSystem.Data.SqlTypes.SqlDecimal3962         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlDecimal3963         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlDecimal3964         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlDecimal3965         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlDecimal3966         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlDecimal3967         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlDecimal3968         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlDecimal3969         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlDecimal3970         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDecimal3971         public override string ToString() { throw null; }
TruncateSystem.Data.SqlTypes.SqlDecimal3972         public static System.Data.SqlTypes.SqlDecimal Truncate(System.Data.SqlTypes.SqlDecimal n, int position) { throw null; }
3973     }
3974     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
3975     [System.SerializableAttribute]
3976     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3977     public partial struct SqlDouble : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
3978     {
3979         public static readonly System.Data.SqlTypes.SqlDouble MaxValue;
3980         public static readonly System.Data.SqlTypes.SqlDouble MinValue;
3981         public static readonly System.Data.SqlTypes.SqlDouble Null;
3982         public static readonly System.Data.SqlTypes.SqlDouble Zero;
SqlDoubleSystem.Data.SqlTypes.SqlDouble3983         public SqlDouble(double value) { throw null;}
3984         public bool IsNull { get { throw null; } }
3985         public double Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlDouble3986         public static System.Data.SqlTypes.SqlDouble Add(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDouble3987         public int CompareTo(System.Data.SqlTypes.SqlDouble value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDouble3988         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlDouble3989         public static System.Data.SqlTypes.SqlDouble Divide(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDouble3990         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDouble3991         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDouble3992         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDouble3993         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDouble3994         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDouble3995         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDouble3996         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDouble3997         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlDouble3998         public static System.Data.SqlTypes.SqlDouble Multiply(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDouble3999         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator +System.Data.SqlTypes.SqlDouble4000         public static System.Data.SqlTypes.SqlDouble operator +(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator /System.Data.SqlTypes.SqlDouble4001         public static System.Data.SqlTypes.SqlDouble operator /(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator ==System.Data.SqlTypes.SqlDouble4002         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4003         public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator doubleSystem.Data.SqlTypes.SqlDouble4004         public static explicit operator double (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4005         public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlDouble4006         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator >=System.Data.SqlTypes.SqlDouble4007         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4008         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4009         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4010         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4011         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4012         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4013         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4014         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble4015         public static implicit operator System.Data.SqlTypes.SqlDouble (double x) { throw null; }
operator !=System.Data.SqlTypes.SqlDouble4016         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator <System.Data.SqlTypes.SqlDouble4017         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator <=System.Data.SqlTypes.SqlDouble4018         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator *System.Data.SqlTypes.SqlDouble4019         public static System.Data.SqlTypes.SqlDouble operator *(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator -System.Data.SqlTypes.SqlDouble4020         public static System.Data.SqlTypes.SqlDouble operator -(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator -System.Data.SqlTypes.SqlDouble4021         public static System.Data.SqlTypes.SqlDouble operator -(System.Data.SqlTypes.SqlDouble x) { throw null; }
ParseSystem.Data.SqlTypes.SqlDouble4022         public static System.Data.SqlTypes.SqlDouble Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDouble4023         public static System.Data.SqlTypes.SqlDouble Subtract(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlDouble4024         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDouble4025         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDouble4026         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlDouble4027         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlDouble4028         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlDouble4029         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlDouble4030         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlDouble4031         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlDouble4032         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlDouble4033         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlDouble4034         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlDouble4035         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDouble4036         public override string ToString() { throw null; }
4037     }
4038     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4039     [System.SerializableAttribute]
4040     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4041     public partial struct SqlGuid : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4042     {
4043         public static readonly System.Data.SqlTypes.SqlGuid Null;
SqlGuidSystem.Data.SqlTypes.SqlGuid4044         public SqlGuid(byte[] value) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid4045         public SqlGuid(System.Guid g) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid4046         public SqlGuid(int a, short b, short c, byte d, byte e, byte f, byte g, byte h, byte i, byte j, byte k) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid4047         public SqlGuid(string s) { throw null;}
4048         public bool IsNull { get { throw null; } }
4049         public System.Guid Value { get { throw null; } }
CompareToSystem.Data.SqlTypes.SqlGuid4050         public int CompareTo(System.Data.SqlTypes.SqlGuid value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlGuid4051         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlGuid4052         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlGuid4053         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlGuid4054         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlGuid4055         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlGuid4056         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlGuid4057         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlGuid4058         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlGuid4059         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlGuid4060         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator ==System.Data.SqlTypes.SqlGuid4061         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator System.Data.SqlTypes.SqlGuidSystem.Data.SqlTypes.SqlGuid4062         public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlBinary x) { throw null; }
operator System.GuidSystem.Data.SqlTypes.SqlGuid4063         public static explicit operator System.Guid (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator System.Data.SqlTypes.SqlGuidSystem.Data.SqlTypes.SqlGuid4064         public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlGuid4065         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator >=System.Data.SqlTypes.SqlGuid4066         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator System.Data.SqlTypes.SqlGuidSystem.Data.SqlTypes.SqlGuid4067         public static implicit operator System.Data.SqlTypes.SqlGuid (System.Guid x) { throw null; }
operator !=System.Data.SqlTypes.SqlGuid4068         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator <System.Data.SqlTypes.SqlGuid4069         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator <=System.Data.SqlTypes.SqlGuid4070         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
ParseSystem.Data.SqlTypes.SqlGuid4071         public static System.Data.SqlTypes.SqlGuid Parse(string s) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlGuid4072         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlGuid4073         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlGuid4074         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToByteArraySystem.Data.SqlTypes.SqlGuid4075         public byte[] ToByteArray() { throw null; }
ToSqlBinarySystem.Data.SqlTypes.SqlGuid4076         public System.Data.SqlTypes.SqlBinary ToSqlBinary() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlGuid4077         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlGuid4078         public override string ToString() { throw null; }
4079     }
4080     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4081     [System.SerializableAttribute]
4082     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4083     public partial struct SqlInt16 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4084     {
4085         public static readonly System.Data.SqlTypes.SqlInt16 MaxValue;
4086         public static readonly System.Data.SqlTypes.SqlInt16 MinValue;
4087         public static readonly System.Data.SqlTypes.SqlInt16 Null;
4088         public static readonly System.Data.SqlTypes.SqlInt16 Zero;
SqlInt16System.Data.SqlTypes.SqlInt164089         public SqlInt16(short value) { throw null;}
4090         public bool IsNull { get { throw null; } }
4091         public short Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt164092         public static System.Data.SqlTypes.SqlInt16 Add(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt164093         public static System.Data.SqlTypes.SqlInt16 BitwiseAnd(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt164094         public static System.Data.SqlTypes.SqlInt16 BitwiseOr(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt164095         public int CompareTo(System.Data.SqlTypes.SqlInt16 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt164096         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt164097         public static System.Data.SqlTypes.SqlInt16 Divide(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt164098         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt164099         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt164100         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt164101         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt164102         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt164103         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt164104         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt164105         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt164106         public static System.Data.SqlTypes.SqlInt16 Mod(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt164107         public static System.Data.SqlTypes.SqlInt16 Modulus(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt164108         public static System.Data.SqlTypes.SqlInt16 Multiply(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt164109         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt164110         public static System.Data.SqlTypes.SqlInt16 OnesComplement(System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt164111         public static System.Data.SqlTypes.SqlInt16 operator +(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt164112         public static System.Data.SqlTypes.SqlInt16 operator &(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt164113         public static System.Data.SqlTypes.SqlInt16 operator |(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt164114         public static System.Data.SqlTypes.SqlInt16 operator /(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt164115         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt164116         public static System.Data.SqlTypes.SqlInt16 operator ^(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164117         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164118         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164119         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator shortSystem.Data.SqlTypes.SqlInt164120         public static explicit operator short (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164121         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164122         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164123         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164124         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164125         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt164126         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt164127         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164128         public static implicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt164129         public static implicit operator System.Data.SqlTypes.SqlInt16 (short x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt164130         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt164131         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt164132         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt164133         public static System.Data.SqlTypes.SqlInt16 operator %(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt164134         public static System.Data.SqlTypes.SqlInt16 operator *(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt164135         public static System.Data.SqlTypes.SqlInt16 operator ~(System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt164136         public static System.Data.SqlTypes.SqlInt16 operator -(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt164137         public static System.Data.SqlTypes.SqlInt16 operator -(System.Data.SqlTypes.SqlInt16 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt164138         public static System.Data.SqlTypes.SqlInt16 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt164139         public static System.Data.SqlTypes.SqlInt16 Subtract(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlInt164140         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt164141         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt164142         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt164143         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt164144         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt164145         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt164146         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlInt164147         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlInt164148         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt164149         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt164150         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt164151         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt164152         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt164153         public static System.Data.SqlTypes.SqlInt16 Xor(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
4154     }
4155     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4156     [System.SerializableAttribute]
4157     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4158     public partial struct SqlInt32 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4159     {
4160         public static readonly System.Data.SqlTypes.SqlInt32 MaxValue;
4161         public static readonly System.Data.SqlTypes.SqlInt32 MinValue;
4162         public static readonly System.Data.SqlTypes.SqlInt32 Null;
4163         public static readonly System.Data.SqlTypes.SqlInt32 Zero;
SqlInt32System.Data.SqlTypes.SqlInt324164         public SqlInt32(int value) { throw null;}
4165         public bool IsNull { get { throw null; } }
4166         public int Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt324167         public static System.Data.SqlTypes.SqlInt32 Add(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt324168         public static System.Data.SqlTypes.SqlInt32 BitwiseAnd(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt324169         public static System.Data.SqlTypes.SqlInt32 BitwiseOr(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt324170         public int CompareTo(System.Data.SqlTypes.SqlInt32 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt324171         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt324172         public static System.Data.SqlTypes.SqlInt32 Divide(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt324173         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt324174         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt324175         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt324176         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt324177         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt324178         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt324179         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt324180         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt324181         public static System.Data.SqlTypes.SqlInt32 Mod(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt324182         public static System.Data.SqlTypes.SqlInt32 Modulus(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt324183         public static System.Data.SqlTypes.SqlInt32 Multiply(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt324184         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt324185         public static System.Data.SqlTypes.SqlInt32 OnesComplement(System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt324186         public static System.Data.SqlTypes.SqlInt32 operator +(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt324187         public static System.Data.SqlTypes.SqlInt32 operator &(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt324188         public static System.Data.SqlTypes.SqlInt32 operator |(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt324189         public static System.Data.SqlTypes.SqlInt32 operator /(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt324190         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt324191         public static System.Data.SqlTypes.SqlInt32 operator ^(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324192         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324193         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324194         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator intSystem.Data.SqlTypes.SqlInt324195         public static explicit operator int (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324196         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324197         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324198         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324199         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt324200         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt324201         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324202         public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324203         public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt324204         public static implicit operator System.Data.SqlTypes.SqlInt32 (int x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt324205         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt324206         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt324207         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt324208         public static System.Data.SqlTypes.SqlInt32 operator %(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt324209         public static System.Data.SqlTypes.SqlInt32 operator *(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt324210         public static System.Data.SqlTypes.SqlInt32 operator ~(System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt324211         public static System.Data.SqlTypes.SqlInt32 operator -(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt324212         public static System.Data.SqlTypes.SqlInt32 operator -(System.Data.SqlTypes.SqlInt32 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt324213         public static System.Data.SqlTypes.SqlInt32 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt324214         public static System.Data.SqlTypes.SqlInt32 Subtract(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlInt324215         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt324216         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt324217         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt324218         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt324219         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt324220         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt324221         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlInt324222         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlInt324223         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt324224         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt324225         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt324226         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt324227         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt324228         public static System.Data.SqlTypes.SqlInt32 Xor(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
4229     }
4230     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4231     [System.SerializableAttribute]
4232     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4233     public partial struct SqlInt64 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4234     {
4235         public static readonly System.Data.SqlTypes.SqlInt64 MaxValue;
4236         public static readonly System.Data.SqlTypes.SqlInt64 MinValue;
4237         public static readonly System.Data.SqlTypes.SqlInt64 Null;
4238         public static readonly System.Data.SqlTypes.SqlInt64 Zero;
SqlInt64System.Data.SqlTypes.SqlInt644239         public SqlInt64(long value) { throw null;}
4240         public bool IsNull { get { throw null; } }
4241         public long Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt644242         public static System.Data.SqlTypes.SqlInt64 Add(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt644243         public static System.Data.SqlTypes.SqlInt64 BitwiseAnd(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt644244         public static System.Data.SqlTypes.SqlInt64 BitwiseOr(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt644245         public int CompareTo(System.Data.SqlTypes.SqlInt64 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt644246         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt644247         public static System.Data.SqlTypes.SqlInt64 Divide(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt644248         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt644249         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt644250         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt644251         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt644252         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt644253         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt644254         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt644255         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt644256         public static System.Data.SqlTypes.SqlInt64 Mod(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt644257         public static System.Data.SqlTypes.SqlInt64 Modulus(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt644258         public static System.Data.SqlTypes.SqlInt64 Multiply(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt644259         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt644260         public static System.Data.SqlTypes.SqlInt64 OnesComplement(System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt644261         public static System.Data.SqlTypes.SqlInt64 operator +(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt644262         public static System.Data.SqlTypes.SqlInt64 operator &(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt644263         public static System.Data.SqlTypes.SqlInt64 operator |(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt644264         public static System.Data.SqlTypes.SqlInt64 operator /(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt644265         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt644266         public static System.Data.SqlTypes.SqlInt64 operator ^(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644267         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644268         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644269         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator longSystem.Data.SqlTypes.SqlInt644270         public static explicit operator long (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644271         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644272         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644273         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt644274         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt644275         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644276         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644277         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644278         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt644279         public static implicit operator System.Data.SqlTypes.SqlInt64 (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt644280         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt644281         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt644282         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt644283         public static System.Data.SqlTypes.SqlInt64 operator %(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt644284         public static System.Data.SqlTypes.SqlInt64 operator *(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt644285         public static System.Data.SqlTypes.SqlInt64 operator ~(System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt644286         public static System.Data.SqlTypes.SqlInt64 operator -(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt644287         public static System.Data.SqlTypes.SqlInt64 operator -(System.Data.SqlTypes.SqlInt64 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt644288         public static System.Data.SqlTypes.SqlInt64 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt644289         public static System.Data.SqlTypes.SqlInt64 Subtract(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlInt644290         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt644291         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt644292         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt644293         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt644294         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt644295         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt644296         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlInt644297         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlInt644298         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt644299         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt644300         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt644301         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt644302         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt644303         public static System.Data.SqlTypes.SqlInt64 Xor(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
4304     }
4305     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4306     [System.SerializableAttribute]
4307     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4308     public partial struct SqlMoney : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4309     {
4310         public static readonly System.Data.SqlTypes.SqlMoney MaxValue;
4311         public static readonly System.Data.SqlTypes.SqlMoney MinValue;
4312         public static readonly System.Data.SqlTypes.SqlMoney Null;
4313         public static readonly System.Data.SqlTypes.SqlMoney Zero;
SqlMoneySystem.Data.SqlTypes.SqlMoney4314         public SqlMoney(decimal value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney4315         public SqlMoney(double value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney4316         public SqlMoney(int value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney4317         public SqlMoney(long value) { throw null;}
4318         public bool IsNull { get { throw null; } }
4319         public decimal Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlMoney4320         public static System.Data.SqlTypes.SqlMoney Add(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlMoney4321         public int CompareTo(System.Data.SqlTypes.SqlMoney value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlMoney4322         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlMoney4323         public static System.Data.SqlTypes.SqlMoney Divide(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlMoney4324         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlMoney4325         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlMoney4326         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlMoney4327         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlMoney4328         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlMoney4329         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlMoney4330         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlMoney4331         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlMoney4332         public static System.Data.SqlTypes.SqlMoney Multiply(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlMoney4333         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator +System.Data.SqlTypes.SqlMoney4334         public static System.Data.SqlTypes.SqlMoney operator +(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator /System.Data.SqlTypes.SqlMoney4335         public static System.Data.SqlTypes.SqlMoney operator /(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator ==System.Data.SqlTypes.SqlMoney4336         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4337         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4338         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4339         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator decimalSystem.Data.SqlTypes.SqlMoney4340         public static explicit operator decimal (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4341         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4342         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlString x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4343         public static explicit operator System.Data.SqlTypes.SqlMoney (double x) { throw null; }
operator >System.Data.SqlTypes.SqlMoney4344         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator >=System.Data.SqlTypes.SqlMoney4345         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4346         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4347         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4348         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4349         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4350         public static implicit operator System.Data.SqlTypes.SqlMoney (decimal x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney4351         public static implicit operator System.Data.SqlTypes.SqlMoney (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlMoney4352         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator <System.Data.SqlTypes.SqlMoney4353         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator <=System.Data.SqlTypes.SqlMoney4354         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator *System.Data.SqlTypes.SqlMoney4355         public static System.Data.SqlTypes.SqlMoney operator *(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator -System.Data.SqlTypes.SqlMoney4356         public static System.Data.SqlTypes.SqlMoney operator -(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator -System.Data.SqlTypes.SqlMoney4357         public static System.Data.SqlTypes.SqlMoney operator -(System.Data.SqlTypes.SqlMoney x) { throw null; }
ParseSystem.Data.SqlTypes.SqlMoney4358         public static System.Data.SqlTypes.SqlMoney Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlMoney4359         public static System.Data.SqlTypes.SqlMoney Subtract(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlMoney4360         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlMoney4361         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlMoney4362         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToDecimalSystem.Data.SqlTypes.SqlMoney4363         public decimal ToDecimal() { throw null; }
ToDoubleSystem.Data.SqlTypes.SqlMoney4364         public double ToDouble() { throw null; }
ToInt32System.Data.SqlTypes.SqlMoney4365         public int ToInt32() { throw null; }
ToInt64System.Data.SqlTypes.SqlMoney4366         public long ToInt64() { throw null; }
ToSqlBooleanSystem.Data.SqlTypes.SqlMoney4367         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlMoney4368         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlMoney4369         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlMoney4370         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlMoney4371         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlMoney4372         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlMoney4373         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlMoney4374         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlMoney4375         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlMoney4376         public override string ToString() { throw null; }
4377     }
4378     [System.SerializableAttribute]
4379     public sealed partial class SqlNotFilledException : System.Data.SqlTypes.SqlTypeException
4380     {
SqlNotFilledException()4381         public SqlNotFilledException() { }
SqlNotFilledException(string message)4382         public SqlNotFilledException(string message) { }
SqlNotFilledException(string message, System.Exception e)4383         public SqlNotFilledException(string message, System.Exception e) { }
4384     }
4385     [System.SerializableAttribute]
4386     public sealed partial class SqlNullValueException : System.Data.SqlTypes.SqlTypeException
4387     {
SqlNullValueException()4388         public SqlNullValueException() { }
SqlNullValueException(string message)4389         public SqlNullValueException(string message) { }
SqlNullValueException(string message, System.Exception e)4390         public SqlNullValueException(string message, System.Exception e) { }
4391     }
4392     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4393     [System.SerializableAttribute]
4394     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4395     public partial struct SqlSingle : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4396     {
4397         public static readonly System.Data.SqlTypes.SqlSingle MaxValue;
4398         public static readonly System.Data.SqlTypes.SqlSingle MinValue;
4399         public static readonly System.Data.SqlTypes.SqlSingle Null;
4400         public static readonly System.Data.SqlTypes.SqlSingle Zero;
SqlSingleSystem.Data.SqlTypes.SqlSingle4401         public SqlSingle(double value) { throw null;}
SqlSingleSystem.Data.SqlTypes.SqlSingle4402         public SqlSingle(float value) { throw null;}
4403         public bool IsNull { get { throw null; } }
4404         public float Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlSingle4405         public static System.Data.SqlTypes.SqlSingle Add(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlSingle4406         public int CompareTo(System.Data.SqlTypes.SqlSingle value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlSingle4407         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlSingle4408         public static System.Data.SqlTypes.SqlSingle Divide(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlSingle4409         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlSingle4410         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlSingle4411         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlSingle4412         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlSingle4413         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlSingle4414         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlSingle4415         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlSingle4416         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlSingle4417         public static System.Data.SqlTypes.SqlSingle Multiply(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlSingle4418         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator +System.Data.SqlTypes.SqlSingle4419         public static System.Data.SqlTypes.SqlSingle operator +(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator /System.Data.SqlTypes.SqlSingle4420         public static System.Data.SqlTypes.SqlSingle operator /(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator ==System.Data.SqlTypes.SqlSingle4421         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4422         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4423         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator floatSystem.Data.SqlTypes.SqlSingle4424         public static explicit operator float (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4425         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlSingle4426         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator >=System.Data.SqlTypes.SqlSingle4427         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4428         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4429         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4430         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4431         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4432         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4433         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle4434         public static implicit operator System.Data.SqlTypes.SqlSingle (float x) { throw null; }
operator !=System.Data.SqlTypes.SqlSingle4435         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator <System.Data.SqlTypes.SqlSingle4436         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator <=System.Data.SqlTypes.SqlSingle4437         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator *System.Data.SqlTypes.SqlSingle4438         public static System.Data.SqlTypes.SqlSingle operator *(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator -System.Data.SqlTypes.SqlSingle4439         public static System.Data.SqlTypes.SqlSingle operator -(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator -System.Data.SqlTypes.SqlSingle4440         public static System.Data.SqlTypes.SqlSingle operator -(System.Data.SqlTypes.SqlSingle x) { throw null; }
ParseSystem.Data.SqlTypes.SqlSingle4441         public static System.Data.SqlTypes.SqlSingle Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlSingle4442         public static System.Data.SqlTypes.SqlSingle Subtract(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlSingle4443         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlSingle4444         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlSingle4445         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlSingle4446         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlSingle4447         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlSingle4448         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlSingle4449         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlSingle4450         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlSingle4451         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlSingle4452         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlSingle4453         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlSingle4454         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlSingle4455         public override string ToString() { throw null; }
4456     }
4457     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4458     [System.SerializableAttribute]
4459     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4460     public partial struct SqlString : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4461     {
4462         public static readonly int BinarySort;
4463         public static readonly int BinarySort2;
4464         public static readonly int IgnoreCase;
4465         public static readonly int IgnoreKanaType;
4466         public static readonly int IgnoreNonSpace;
4467         public static readonly int IgnoreWidth;
4468         public static readonly System.Data.SqlTypes.SqlString Null;
SqlStringSystem.Data.SqlTypes.SqlString4469         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString4470         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, bool fUnicode) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString4471         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString4472         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count, bool fUnicode) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString4473         public SqlString(string data) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString4474         public SqlString(string data, int lcid) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString4475         public SqlString(string data, int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw null;}
4476         public System.Globalization.CompareInfo CompareInfo { get { throw null; } }
4477         public System.Globalization.CultureInfo CultureInfo { get { throw null; } }
4478         public bool IsNull { get { throw null; } }
4479         public int LCID { get { throw null; } }
4480         public System.Data.SqlTypes.SqlCompareOptions SqlCompareOptions { get { throw null; } }
4481         public string Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlString4482         public static System.Data.SqlTypes.SqlString Add(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
CloneSystem.Data.SqlTypes.SqlString4483         public System.Data.SqlTypes.SqlString Clone() { throw null; }
CompareOptionsFromSqlCompareOptionsSystem.Data.SqlTypes.SqlString4484         public static System.Globalization.CompareOptions CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw null; }
CompareToSystem.Data.SqlTypes.SqlString4485         public int CompareTo(System.Data.SqlTypes.SqlString value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlString4486         public int CompareTo(object value) { throw null; }
ConcatSystem.Data.SqlTypes.SqlString4487         public static System.Data.SqlTypes.SqlString Concat(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlString4488         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlString4489         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlString4490         public override int GetHashCode() { throw null; }
GetNonUnicodeBytesSystem.Data.SqlTypes.SqlString4491         public byte[] GetNonUnicodeBytes() { throw null; }
GetUnicodeBytesSystem.Data.SqlTypes.SqlString4492         public byte[] GetUnicodeBytes() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlString4493         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlString4494         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlString4495         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlString4496         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlString4497         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlString4498         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator +System.Data.SqlTypes.SqlString4499         public static System.Data.SqlTypes.SqlString operator +(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator ==System.Data.SqlTypes.SqlString4500         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4501         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4502         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4503         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDateTime x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4504         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4505         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4506         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4507         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4508         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4509         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4510         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4511         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator stringSystem.Data.SqlTypes.SqlString4512         public static explicit operator string (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlString4513         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator >=System.Data.SqlTypes.SqlString4514         public static System.Data.SqlTypes.SqlBoolean operator >=(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString4515         public static implicit operator System.Data.SqlTypes.SqlString (string x) { throw null; }
operator !=System.Data.SqlTypes.SqlString4516         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator <System.Data.SqlTypes.SqlString4517         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator <=System.Data.SqlTypes.SqlString4518         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlString4519         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlString4520         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlString4521         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlString4522         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlString4523         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDateTimeSystem.Data.SqlTypes.SqlString4524         public System.Data.SqlTypes.SqlDateTime ToSqlDateTime() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlString4525         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlString4526         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlGuidSystem.Data.SqlTypes.SqlString4527         public System.Data.SqlTypes.SqlGuid ToSqlGuid() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlString4528         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlString4529         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlString4530         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlString4531         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlString4532         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToStringSystem.Data.SqlTypes.SqlString4533         public override string ToString() { throw null; }
4534     }
4535     [System.SerializableAttribute]
4536     public sealed partial class SqlTruncateException : System.Data.SqlTypes.SqlTypeException
4537     {
SqlTruncateException()4538         public SqlTruncateException() { }
SqlTruncateException(string message)4539         public SqlTruncateException(string message) { }
SqlTruncateException(string message, System.Exception e)4540         public SqlTruncateException(string message, System.Exception e) { }
4541     }
4542     [System.SerializableAttribute]
4543     public partial class SqlTypeException : System.SystemException
4544     {
SqlTypeException()4545         public SqlTypeException() { }
SqlTypeException(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc)4546         protected SqlTypeException(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc) { }
SqlTypeException(string message)4547         public SqlTypeException(string message) { }
SqlTypeException(string message, System.Exception e)4548         public SqlTypeException(string message, System.Exception e) { }
4549     }
4550     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4551     [System.SerializableAttribute]
4552     public sealed partial class SqlXml : System.Data.SqlTypes.INullable, System.Xml.Serialization.IXmlSerializable
4553     {
SqlXml()4554         public SqlXml() { }
SqlXml(System.IO.Stream value)4555         public SqlXml(System.IO.Stream value) { }
SqlXml(System.Xml.XmlReader value)4556         public SqlXml(System.Xml.XmlReader value) { }
4557         public bool IsNull { get { throw null; } }
4558         public static System.Data.SqlTypes.SqlXml Null { get { throw null; } }
4559         public string Value { get { throw null; } }
CreateReader()4560         public System.Xml.XmlReader CreateReader() { throw null; }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)4561         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()4562         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)4563         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)4564         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
4565     }
4566     public enum StorageState
4567     {
4568         Buffer = 0,
4569         Stream = 1,
4570         UnmanagedBuffer = 2,
4571     }
4572 }
4573 namespace System.Xml
4574 {
4575     [System.ObsoleteAttribute("XmlDataDocument class will be removed in a future release.")]
4576     public partial class XmlDataDocument : System.Xml.XmlDocument
4577     {
XmlDataDocument()4578         public XmlDataDocument() { }
XmlDataDocument(System.Data.DataSet dataset)4579         public XmlDataDocument(System.Data.DataSet dataset) { }
4580         public System.Data.DataSet DataSet { get { throw null; } }
CloneNode(bool deep)4581         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
CreateElement(string prefix, string localName, string namespaceURI)4582         public override System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceURI) { throw null; }
CreateEntityReference(string name)4583         public override System.Xml.XmlEntityReference CreateEntityReference(string name) { throw null; }
CreateNavigator(System.Xml.XmlNode node)4584         protected override System.Xml.XPath.XPathNavigator CreateNavigator(System.Xml.XmlNode node) { throw null; }
GetElementById(string elemId)4585         public override System.Xml.XmlElement GetElementById(string elemId) { throw null; }
GetElementFromRow(System.Data.DataRow r)4586         public System.Xml.XmlElement GetElementFromRow(System.Data.DataRow r) { throw null; }
GetElementsByTagName(string name)4587         public override System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetRowFromElement(System.Xml.XmlElement e)4588         public System.Data.DataRow GetRowFromElement(System.Xml.XmlElement e) { throw null; }
Load(System.IO.Stream inStream)4589         public override void Load(System.IO.Stream inStream) { }
Load(System.IO.TextReader txtReader)4590         public override void Load(System.IO.TextReader txtReader) { }
Load(string filename)4591         public override void Load(string filename) { }
Load(System.Xml.XmlReader reader)4592         public override void Load(System.Xml.XmlReader reader) { }
4593     }
4594 }
4595