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("4.0.0.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.6.57.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.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("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Data.DataSetExtensions, PublicKey=00000000000000000400000000000000")]
20 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Design, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
21 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Web, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
22 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
23 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
24 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
25 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
26 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
27 namespace Microsoft.SqlServer.Server
28 {
29     [System.SerializableAttribute]
30     public enum DataAccessKind
31     {
32         None = 0,
33         Read = 1,
34     }
35     public enum Format
36     {
37         Native = 1,
38         Unknown = 0,
39         UserDefined = 2,
40     }
41     public partial interface IBinarySerialize
42     {
Read(System.IO.BinaryReader r)43         void Read(System.IO.BinaryReader r);
Write(System.IO.BinaryWriter w)44         void Write(System.IO.BinaryWriter w);
45     }
46     [System.SerializableAttribute]
47     public sealed partial class InvalidUdtException : System.SystemException
48     {
InvalidUdtException()49         internal InvalidUdtException() { }
50         [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)51         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
52     }
53     public sealed partial class SqlContext
54     {
SqlContext()55         internal SqlContext() { }
56         public static bool IsAvailable { get { throw null; } }
57         public static Microsoft.SqlServer.Server.SqlPipe Pipe { get { throw null; } }
58         public static Microsoft.SqlServer.Server.SqlTriggerContext TriggerContext { get { throw null; } }
59         public static System.Security.Principal.WindowsIdentity WindowsIdentity { get { throw null; } }
60     }
61     public partial class SqlDataRecord : System.Data.IDataRecord
62     {
SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData)63         public SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData) { }
64         public virtual int FieldCount { get { throw null; } }
65         public virtual object this[int ordinal] { get { throw null; } }
66         public virtual object this[string name] { get { throw null; } }
GetBoolean(int ordinal)67         public virtual bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)68         public virtual byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)69         public virtual long GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { throw null; }
GetChar(int ordinal)70         public virtual char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)71         public virtual long GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { throw null; }
GetDataTypeName(int ordinal)72         public virtual string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)73         public virtual System.DateTime GetDateTime(int ordinal) { throw null; }
GetDateTimeOffset(int ordinal)74         public virtual System.DateTimeOffset GetDateTimeOffset(int ordinal) { throw null; }
GetDecimal(int ordinal)75         public virtual decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)76         public virtual double GetDouble(int ordinal) { throw null; }
GetFieldType(int ordinal)77         public virtual System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)78         public virtual float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)79         public virtual System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)80         public virtual short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)81         public virtual int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)82         public virtual long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)83         public virtual string GetName(int ordinal) { throw null; }
GetOrdinal(string name)84         public virtual int GetOrdinal(string name) { throw null; }
GetSqlBinary(int ordinal)85         public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int ordinal) { throw null; }
GetSqlBoolean(int ordinal)86         public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int ordinal) { throw null; }
GetSqlByte(int ordinal)87         public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int ordinal) { throw null; }
GetSqlBytes(int ordinal)88         public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int ordinal) { throw null; }
GetSqlChars(int ordinal)89         public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int ordinal) { throw null; }
GetSqlDateTime(int ordinal)90         public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int ordinal) { throw null; }
GetSqlDecimal(int ordinal)91         public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int ordinal) { throw null; }
GetSqlDouble(int ordinal)92         public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int ordinal) { throw null; }
GetSqlFieldType(int ordinal)93         public virtual System.Type GetSqlFieldType(int ordinal) { throw null; }
GetSqlGuid(int ordinal)94         public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int ordinal) { throw null; }
GetSqlInt16(int ordinal)95         public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int ordinal) { throw null; }
GetSqlInt32(int ordinal)96         public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int ordinal) { throw null; }
GetSqlInt64(int ordinal)97         public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int ordinal) { throw null; }
GetSqlMetaData(int ordinal)98         public virtual Microsoft.SqlServer.Server.SqlMetaData GetSqlMetaData(int ordinal) { throw null; }
GetSqlMoney(int ordinal)99         public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int ordinal) { throw null; }
GetSqlSingle(int ordinal)100         public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int ordinal) { throw null; }
GetSqlString(int ordinal)101         public virtual System.Data.SqlTypes.SqlString GetSqlString(int ordinal) { throw null; }
GetSqlValue(int ordinal)102         public virtual object GetSqlValue(int ordinal) { throw null; }
GetSqlValues(object[] values)103         public virtual int GetSqlValues(object[] values) { throw null; }
GetSqlXml(int ordinal)104         public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int ordinal) { throw null; }
GetString(int ordinal)105         public virtual string GetString(int ordinal) { throw null; }
GetTimeSpan(int ordinal)106         public virtual System.TimeSpan GetTimeSpan(int ordinal) { throw null; }
GetValue(int ordinal)107         public virtual object GetValue(int ordinal) { throw null; }
GetValues(object[] values)108         public virtual int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)109         public virtual bool IsDBNull(int ordinal) { throw null; }
SetBoolean(int ordinal, bool value)110         public virtual void SetBoolean(int ordinal, bool value) { }
SetByte(int ordinal, byte value)111         public virtual void SetByte(int ordinal, byte value) { }
SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)112         public virtual void SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { }
SetChar(int ordinal, char value)113         public virtual void SetChar(int ordinal, char value) { }
SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)114         public virtual void SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { }
SetDateTime(int ordinal, System.DateTime value)115         public virtual void SetDateTime(int ordinal, System.DateTime value) { }
SetDateTimeOffset(int ordinal, System.DateTimeOffset value)116         public virtual void SetDateTimeOffset(int ordinal, System.DateTimeOffset value) { }
SetDBNull(int ordinal)117         public virtual void SetDBNull(int ordinal) { }
SetDecimal(int ordinal, decimal value)118         public virtual void SetDecimal(int ordinal, decimal value) { }
SetDouble(int ordinal, double value)119         public virtual void SetDouble(int ordinal, double value) { }
SetFloat(int ordinal, float value)120         public virtual void SetFloat(int ordinal, float value) { }
SetGuid(int ordinal, System.Guid value)121         public virtual void SetGuid(int ordinal, System.Guid value) { }
SetInt16(int ordinal, short value)122         public virtual void SetInt16(int ordinal, short value) { }
SetInt32(int ordinal, int value)123         public virtual void SetInt32(int ordinal, int value) { }
SetInt64(int ordinal, long value)124         public virtual void SetInt64(int ordinal, long value) { }
SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value)125         public virtual void SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value) { }
SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value)126         public virtual void SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value) { }
SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value)127         public virtual void SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value) { }
SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value)128         public virtual void SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value) { }
SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value)129         public virtual void SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value) { }
SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value)130         public virtual void SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value) { }
SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value)131         public virtual void SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value) { }
SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value)132         public virtual void SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value) { }
SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value)133         public virtual void SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value) { }
SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value)134         public virtual void SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value) { }
SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value)135         public virtual void SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value) { }
SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value)136         public virtual void SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value) { }
SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value)137         public virtual void SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value) { }
SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value)138         public virtual void SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value) { }
SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value)139         public virtual void SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value) { }
SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value)140         public virtual void SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value) { }
SetString(int ordinal, string value)141         public virtual void SetString(int ordinal, string value) { }
SetTimeSpan(int ordinal, System.TimeSpan value)142         public virtual void SetTimeSpan(int ordinal, System.TimeSpan value) { }
SetValue(int ordinal, object value)143         public virtual void SetValue(int ordinal, object value) { }
SetValues(params object[] values)144         public virtual int SetValues(params object[] values) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)145         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
146     }
147     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false, Inherited=false)]
148     public partial class SqlFacetAttribute : System.Attribute
149     {
SqlFacetAttribute()150         public SqlFacetAttribute() { }
151         public bool IsFixedLength { get { throw null; } set { } }
152         public bool IsNullable { get { throw null; } set { } }
153         public int MaxSize { get { throw null; } set { } }
154         public int Precision { get { throw null; } set { } }
155         public int Scale { get { throw null; } set { } }
156     }
157     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
158     [System.SerializableAttribute]
159     public partial class SqlFunctionAttribute : System.Attribute
160     {
SqlFunctionAttribute()161         public SqlFunctionAttribute() { }
162         public Microsoft.SqlServer.Server.DataAccessKind DataAccess { get { throw null; } set { } }
163         public string FillRowMethodName { get { throw null; } set { } }
164         public bool IsDeterministic { get { throw null; } set { } }
165         public bool IsPrecise { get { throw null; } set { } }
166         public string Name { get { throw null; } set { } }
167         public Microsoft.SqlServer.Server.SystemDataAccessKind SystemDataAccess { get { throw null; } set { } }
168         public string TableDefinition { get { throw null; } set { } }
169     }
170     public sealed partial class SqlMetaData
171     {
SqlMetaData(string name, System.Data.SqlDbType dbType)172         public SqlMetaData(string name, System.Data.SqlDbType dbType) { }
173         [System.MonoTODOAttribute]
SqlMetaData(string name, System.Data.SqlDbType dbType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)174         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)175         public SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale) { }
176         [System.MonoTODOAttribute]
SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)177         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)178         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength) { }
179         [System.MonoTODOAttribute]
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)180         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)181         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType) { }
182         [System.MonoTODOAttribute]
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)183         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)184         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions) { }
185         [System.MonoTODOAttribute]
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)186         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)187         public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName) { }
188         [System.MonoTODOAttribute]
SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)189         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) { }
190         [System.MonoTODOAttribute]
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType)191         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName)192         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)193         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
194         public System.Data.SqlTypes.SqlCompareOptions CompareOptions { get { throw null; } }
195         public System.Data.DbType DbType { get { throw null; } }
196         [System.MonoTODOAttribute]
197         public bool IsUniqueKey { get { throw null; } }
198         public long LocaleId { get { throw null; } }
199         public static long Max { get { throw null; } }
200         public long MaxLength { get { throw null; } }
201         public string Name { get { throw null; } }
202         public byte Precision { get { throw null; } }
203         public byte Scale { get { throw null; } }
204         [System.MonoTODOAttribute]
205         public System.Data.SqlClient.SortOrder SortOrder { get { throw null; } }
206         [System.MonoTODOAttribute]
207         public int SortOrdinal { get { throw null; } }
208         public System.Data.SqlDbType SqlDbType { get { throw null; } }
209         public System.Type Type { get { throw null; } }
210         [System.MonoTODOAttribute]
211         public string TypeName { get { throw null; } }
212         [System.MonoTODOAttribute]
213         public bool UseServerDefault { get { throw null; } }
214         public string XmlSchemaCollectionDatabase { get { throw null; } }
215         public string XmlSchemaCollectionName { get { throw null; } }
216         public string XmlSchemaCollectionOwningSchema { get { throw null; } }
Adjust(bool value)217         public bool Adjust(bool value) { throw null; }
Adjust(byte value)218         public byte Adjust(byte value) { throw null; }
Adjust(byte[] value)219         public byte[] Adjust(byte[] value) { throw null; }
Adjust(char value)220         public char Adjust(char value) { throw null; }
Adjust(char[] value)221         public char[] Adjust(char[] value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBinary value)222         public System.Data.SqlTypes.SqlBinary Adjust(System.Data.SqlTypes.SqlBinary value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBoolean value)223         public System.Data.SqlTypes.SqlBoolean Adjust(System.Data.SqlTypes.SqlBoolean value) { throw null; }
Adjust(System.Data.SqlTypes.SqlByte value)224         public System.Data.SqlTypes.SqlByte Adjust(System.Data.SqlTypes.SqlByte value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBytes value)225         public System.Data.SqlTypes.SqlBytes Adjust(System.Data.SqlTypes.SqlBytes value) { throw null; }
Adjust(System.Data.SqlTypes.SqlChars value)226         public System.Data.SqlTypes.SqlChars Adjust(System.Data.SqlTypes.SqlChars value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDateTime value)227         public System.Data.SqlTypes.SqlDateTime Adjust(System.Data.SqlTypes.SqlDateTime value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDecimal value)228         public System.Data.SqlTypes.SqlDecimal Adjust(System.Data.SqlTypes.SqlDecimal value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDouble value)229         public System.Data.SqlTypes.SqlDouble Adjust(System.Data.SqlTypes.SqlDouble value) { throw null; }
Adjust(System.Data.SqlTypes.SqlGuid value)230         public System.Data.SqlTypes.SqlGuid Adjust(System.Data.SqlTypes.SqlGuid value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt16 value)231         public System.Data.SqlTypes.SqlInt16 Adjust(System.Data.SqlTypes.SqlInt16 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt32 value)232         public System.Data.SqlTypes.SqlInt32 Adjust(System.Data.SqlTypes.SqlInt32 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt64 value)233         public System.Data.SqlTypes.SqlInt64 Adjust(System.Data.SqlTypes.SqlInt64 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlMoney value)234         public System.Data.SqlTypes.SqlMoney Adjust(System.Data.SqlTypes.SqlMoney value) { throw null; }
Adjust(System.Data.SqlTypes.SqlSingle value)235         public System.Data.SqlTypes.SqlSingle Adjust(System.Data.SqlTypes.SqlSingle value) { throw null; }
Adjust(System.Data.SqlTypes.SqlString value)236         public System.Data.SqlTypes.SqlString Adjust(System.Data.SqlTypes.SqlString value) { throw null; }
237         [System.MonoTODOAttribute]
Adjust(System.Data.SqlTypes.SqlXml value)238         public System.Data.SqlTypes.SqlXml Adjust(System.Data.SqlTypes.SqlXml value) { throw null; }
Adjust(System.DateTime value)239         public System.DateTime Adjust(System.DateTime value) { throw null; }
Adjust(System.DateTimeOffset value)240         public System.DateTimeOffset Adjust(System.DateTimeOffset value) { throw null; }
Adjust(decimal value)241         public decimal Adjust(decimal value) { throw null; }
Adjust(double value)242         public double Adjust(double value) { throw null; }
Adjust(System.Guid value)243         public System.Guid Adjust(System.Guid value) { throw null; }
Adjust(short value)244         public short Adjust(short value) { throw null; }
Adjust(int value)245         public int Adjust(int value) { throw null; }
Adjust(long value)246         public long Adjust(long value) { throw null; }
Adjust(object value)247         public object Adjust(object value) { throw null; }
Adjust(float value)248         public float Adjust(float value) { throw null; }
Adjust(string value)249         public string Adjust(string value) { throw null; }
Adjust(System.TimeSpan value)250         public System.TimeSpan Adjust(System.TimeSpan value) { throw null; }
InferFromValue(object value, string name)251         public static Microsoft.SqlServer.Server.SqlMetaData InferFromValue(object value, string name) { throw null; }
252     }
253     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
254     [System.SerializableAttribute]
255     public sealed partial class SqlMethodAttribute : Microsoft.SqlServer.Server.SqlFunctionAttribute
256     {
SqlMethodAttribute()257         public SqlMethodAttribute() { }
258         public bool InvokeIfReceiverIsNull { get { throw null; } set { } }
259         public bool IsMutator { get { throw null; } set { } }
260         public bool OnNullCall { get { throw null; } set { } }
261     }
262     public sealed partial class SqlPipe
263     {
SqlPipe()264         internal SqlPipe() { }
265         public bool IsSendingResults { get { throw null; } }
ExecuteAndSend(System.Data.SqlClient.SqlCommand command)266         public void ExecuteAndSend(System.Data.SqlClient.SqlCommand command) { }
Send(Microsoft.SqlServer.Server.SqlDataRecord record)267         public void Send(Microsoft.SqlServer.Server.SqlDataRecord record) { }
Send(System.Data.SqlClient.SqlDataReader reader)268         public void Send(System.Data.SqlClient.SqlDataReader reader) { }
Send(string message)269         public void Send(string message) { }
SendResultsEnd()270         public void SendResultsEnd() { }
SendResultsRow(Microsoft.SqlServer.Server.SqlDataRecord record)271         public void SendResultsRow(Microsoft.SqlServer.Server.SqlDataRecord record) { }
SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord record)272         public void SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord record) { }
273     }
274     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
275     [System.SerializableAttribute]
276     public sealed partial class SqlProcedureAttribute : System.Attribute
277     {
SqlProcedureAttribute()278         public SqlProcedureAttribute() { }
279         public string Name { get { throw null; } set { } }
280     }
281     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
282     [System.SerializableAttribute]
283     public sealed partial class SqlTriggerAttribute : System.Attribute
284     {
SqlTriggerAttribute()285         public SqlTriggerAttribute() { }
286         public string Event { get { throw null; } set { } }
287         public string Name { get { throw null; } set { } }
288         public string Target { get { throw null; } set { } }
289     }
290     public sealed partial class SqlTriggerContext
291     {
SqlTriggerContext()292         internal SqlTriggerContext() { }
293         public int ColumnCount { get { throw null; } }
294         public System.Data.SqlTypes.SqlXml EventData { get { throw null; } }
295         public Microsoft.SqlServer.Server.TriggerAction TriggerAction { get { throw null; } }
IsUpdatedColumn(int columnOrdinal)296         public bool IsUpdatedColumn(int columnOrdinal) { throw null; }
297     }
298     [System.AttributeUsageAttribute((System.AttributeTargets)(12), AllowMultiple=false, Inherited=false)]
299     public sealed partial class SqlUserDefinedAggregateAttribute : System.Attribute
300     {
301         public const int MaxByteSizeValue = 8000;
SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format)302         public SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format) { }
303         public Microsoft.SqlServer.Server.Format Format { get { throw null; } }
304         public bool IsInvariantToDuplicates { get { throw null; } set { } }
305         public bool IsInvariantToNulls { get { throw null; } set { } }
306         public bool IsInvariantToOrder { get { throw null; } set { } }
307         public bool IsNullIfEmpty { get { throw null; } set { } }
308         public int MaxByteSize { get { throw null; } set { } }
309         public string Name { get { throw null; } set { } }
310     }
311     [System.AttributeUsageAttribute((System.AttributeTargets)(12), AllowMultiple=false, Inherited=true)]
312     public sealed partial class SqlUserDefinedTypeAttribute : System.Attribute
313     {
SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format)314         public SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format) { }
315         public Microsoft.SqlServer.Server.Format Format { get { throw null; } }
316         public bool IsByteOrdered { get { throw null; } set { } }
317         public bool IsFixedLength { get { throw null; } set { } }
318         public int MaxByteSize { get { throw null; } set { } }
319         public string Name { get { throw null; } set { } }
320         public string ValidationMethodName { get { throw null; } set { } }
321     }
322     [System.SerializableAttribute]
323     public enum SystemDataAccessKind
324     {
325         None = 0,
326         Read = 1,
327     }
328     public enum TriggerAction
329     {
330         AlterAppRole = 138,
331         AlterAssembly = 102,
332         AlterBinding = 175,
333         AlterFunction = 62,
334         AlterIndex = 25,
335         AlterLogin = 145,
336         AlterPartitionFunction = 192,
337         AlterPartitionScheme = 195,
338         AlterProcedure = 52,
339         AlterQueue = 158,
340         AlterRole = 135,
341         AlterRoute = 165,
342         AlterSchema = 142,
343         AlterService = 162,
344         AlterTable = 22,
345         AlterTrigger = 72,
346         AlterUser = 132,
347         AlterView = 42,
348         CreateAppRole = 137,
349         CreateAssembly = 101,
350         CreateBinding = 174,
351         CreateContract = 154,
352         CreateEventNotification = 74,
353         CreateFunction = 61,
354         CreateIndex = 24,
355         CreateLogin = 144,
356         CreateMsgType = 151,
357         CreatePartitionFunction = 191,
358         CreatePartitionScheme = 194,
359         CreateProcedure = 51,
360         CreateQueue = 157,
361         CreateRole = 134,
362         CreateRoute = 164,
363         CreateSchema = 141,
364         CreateSecurityExpression = 31,
365         CreateService = 161,
366         CreateSynonym = 34,
367         CreateTable = 21,
368         CreateTrigger = 71,
369         CreateType = 91,
370         CreateUser = 131,
371         CreateView = 41,
372         Delete = 3,
373         DenyObject = 171,
374         DenyStatement = 168,
375         DropAppRole = 139,
376         DropAssembly = 103,
377         DropBinding = 176,
378         DropContract = 156,
379         DropEventNotification = 76,
380         DropFunction = 63,
381         DropIndex = 26,
382         DropLogin = 146,
383         DropMsgType = 153,
384         DropPartitionFunction = 193,
385         DropPartitionScheme = 196,
386         DropProcedure = 53,
387         DropQueue = 159,
388         DropRole = 136,
389         DropRoute = 166,
390         DropSchema = 143,
391         DropSecurityExpression = 33,
392         DropService = 163,
393         DropSynonym = 36,
394         DropTable = 23,
395         DropTrigger = 73,
396         DropType = 93,
397         DropUser = 133,
398         DropView = 43,
399         GrantObject = 170,
400         GrantStatement = 167,
401         Insert = 1,
402         Invalid = 0,
403         RevokeObject = 172,
404         RevokeStatement = 169,
405         Update = 2,
406     }
407 }
408 namespace System
409 {
410     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
411     internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute
412     {
MonoDocumentationNoteAttribute(string comment)413         public MonoDocumentationNoteAttribute(string comment) { }
414     }
415     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
416     internal partial class MonoExtensionAttribute : System.MonoTODOAttribute
417     {
MonoExtensionAttribute(string comment)418         public MonoExtensionAttribute(string comment) { }
419     }
420     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
421     internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute
422     {
MonoInternalNoteAttribute(string comment)423         public MonoInternalNoteAttribute(string comment) { }
424     }
425     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
426     internal partial class MonoLimitationAttribute : System.MonoTODOAttribute
427     {
MonoLimitationAttribute(string comment)428         public MonoLimitationAttribute(string comment) { }
429     }
430     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
431     internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute
432     {
MonoNotSupportedAttribute(string comment)433         public MonoNotSupportedAttribute(string comment) { }
434     }
435     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
436     internal partial class MonoTODOAttribute : System.Attribute
437     {
MonoTODOAttribute()438         public MonoTODOAttribute() { }
MonoTODOAttribute(string comment)439         public MonoTODOAttribute(string comment) { }
440         public string Comment { get { throw null; } }
441     }
442 }
443 namespace System.Data
444 {
445     public enum AcceptRejectRule
446     {
447         Cascade = 1,
448         None = 0,
449     }
450     [System.FlagsAttribute]
451     public enum CommandBehavior
452     {
453         CloseConnection = 32,
454         Default = 0,
455         KeyInfo = 4,
456         SchemaOnly = 2,
457         SequentialAccess = 16,
458         SingleResult = 1,
459         SingleRow = 8,
460     }
461     public enum CommandType
462     {
463         StoredProcedure = 4,
464         TableDirect = 512,
465         Text = 1,
466     }
467     public enum ConflictOption
468     {
469         CompareAllSearchableValues = 1,
470         CompareRowVersion = 2,
471         OverwriteChanges = 3,
472     }
473     [System.FlagsAttribute]
474     public enum ConnectionState
475     {
476         Broken = 16,
477         Closed = 0,
478         Connecting = 2,
479         Executing = 4,
480         Fetching = 8,
481         Open = 1,
482     }
483     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
484     [System.ComponentModel.TypeConverterAttribute("System.Data.ConstraintConverter")]
485     public abstract partial class Constraint
486     {
Constraint()487         protected Constraint() { }
488         [System.ComponentModel.DefaultValueAttribute("")]
489         public virtual string ConstraintName { get { throw null; } set { } }
490         [System.ComponentModel.BrowsableAttribute(false)]
491         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
492         public abstract System.Data.DataTable Table { get; }
493         [System.CLSCompliantAttribute(false)]
494         protected virtual System.Data.DataSet _DataSet { get { throw null; } }
CheckStateForProperty()495         protected void CheckStateForProperty() { }
SetDataSet(System.Data.DataSet dataSet)496         protected internal void SetDataSet(System.Data.DataSet dataSet) { }
ToString()497         public override string ToString() { throw null; }
498     }
499     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
500     public sealed partial class ConstraintCollection : System.Data.InternalDataCollectionBase
501     {
ConstraintCollection()502         internal ConstraintCollection() { }
503         public System.Data.Constraint this[int index] { get { throw null; } }
504         public System.Data.Constraint this[string name] { get { throw null; } }
505         protected override System.Collections.ArrayList List { get { throw null; } }
506         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add(System.Data.Constraint constraint)507         public void Add(System.Data.Constraint constraint) { }
Add(string name, System.Data.DataColumn column, bool primaryKey)508         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)509         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)510         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)511         public System.Data.Constraint Add(string name, System.Data.DataColumn[] primaryKeyColumns, System.Data.DataColumn[] foreignKeyColumns) { throw null; }
AddRange(System.Data.Constraint[] constraints)512         public void AddRange(System.Data.Constraint[] constraints) { }
CanRemove(System.Data.Constraint constraint)513         public bool CanRemove(System.Data.Constraint constraint) { throw null; }
Clear()514         public void Clear() { }
Contains(string name)515         public bool Contains(string name) { throw null; }
CopyTo(System.Data.Constraint[] array, int index)516         public void CopyTo(System.Data.Constraint[] array, int index) { }
IndexOf(System.Data.Constraint constraint)517         public int IndexOf(System.Data.Constraint constraint) { throw null; }
IndexOf(string constraintName)518         public int IndexOf(string constraintName) { throw null; }
Remove(System.Data.Constraint constraint)519         public void Remove(System.Data.Constraint constraint) { }
Remove(string name)520         public void Remove(string name) { }
RemoveAt(int index)521         public void RemoveAt(int index) { }
522     }
523     [System.SerializableAttribute]
524     public partial class ConstraintException : System.Data.DataException
525     {
ConstraintException()526         public ConstraintException() { }
ConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)527         protected ConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ConstraintException(string s)528         public ConstraintException(string s) { }
ConstraintException(string message, System.Exception innerException)529         public ConstraintException(string message, System.Exception innerException) { }
530     }
531     [System.ComponentModel.DefaultPropertyAttribute("ColumnName")]
532     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
533     [System.ComponentModel.ToolboxItemAttribute(false)]
534     public partial class DataColumn : System.ComponentModel.MarshalByValueComponent
535     {
DataColumn()536         public DataColumn() { }
DataColumn(string columnName)537         public DataColumn(string columnName) { }
DataColumn(string columnName, System.Type dataType)538         public DataColumn(string columnName, System.Type dataType) { }
DataColumn(string columnName, System.Type dataType, string expr)539         public DataColumn(string columnName, System.Type dataType, string expr) { }
DataColumn(string columnName, System.Type dataType, string expr, System.Data.MappingType type)540         public DataColumn(string columnName, System.Type dataType, string expr, System.Data.MappingType type) { }
541         [System.ComponentModel.DefaultValueAttribute(true)]
542         public bool AllowDBNull { get { throw null; } set { } }
543         [System.ComponentModel.DefaultValueAttribute(false)]
544         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
545         public bool AutoIncrement { get { throw null; } set { } }
546         [System.ComponentModel.DefaultValueAttribute((long)0)]
547         public long AutoIncrementSeed { get { throw null; } set { } }
548         [System.ComponentModel.DefaultValueAttribute((long)1)]
549         public long AutoIncrementStep { get { throw null; } set { } }
550         public string Caption { get { throw null; } set { } }
551         [System.ComponentModel.DefaultValueAttribute((System.Data.MappingType)(1))]
552         public virtual System.Data.MappingType ColumnMapping { get { throw null; } set { } }
553         [System.ComponentModel.DefaultValueAttribute("")]
554         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
555         public string ColumnName { get { throw null; } set { } }
556         [System.ComponentModel.DefaultValueAttribute(typeof(string))]
557         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
558         [System.ComponentModel.TypeConverterAttribute("System.Data.ColumnTypeConverter")]
559         public System.Type DataType { get { throw null; } set { } }
560         [System.ComponentModel.DefaultValueAttribute((System.Data.DataSetDateTime)(3))]
561         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
562         public System.Data.DataSetDateTime DateTimeMode { get { throw null; } set { } }
563         [System.ComponentModel.TypeConverterAttribute("System.Data.DefaultValueTypeConverter")]
564         public object DefaultValue { get { throw null; } set { } }
565         [System.ComponentModel.DefaultValueAttribute("")]
566         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
567         public string Expression { get { throw null; } set { } }
568         [System.ComponentModel.BrowsableAttribute(false)]
569         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
570         [System.ComponentModel.DefaultValueAttribute(-1)]
571         public int MaxLength { get { throw null; } set { } }
572         public string Namespace { get { throw null; } set { } }
573         [System.ComponentModel.BrowsableAttribute(false)]
574         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
575         public int Ordinal { get { throw null; } }
576         [System.ComponentModel.DefaultValueAttribute("")]
577         public string Prefix { get { throw null; } set { } }
578         [System.ComponentModel.DefaultValueAttribute(false)]
579         public bool ReadOnly { get { throw null; } set { } }
580         [System.ComponentModel.BrowsableAttribute(false)]
581         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
582         public System.Data.DataTable Table { get { throw null; } }
583         [System.ComponentModel.DefaultValueAttribute(false)]
584         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
585         public bool Unique { get { throw null; } set { } }
CheckNotAllowNull()586         protected internal void CheckNotAllowNull() { }
CheckUnique()587         protected void CheckUnique() { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)588         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
RaisePropertyChanging(string name)589         protected internal void RaisePropertyChanging(string name) { }
SetOrdinal(int ordinal)590         public void SetOrdinal(int ordinal) { }
ToString()591         public override string ToString() { throw null; }
592     }
593     public partial class DataColumnChangeEventArgs : System.EventArgs
594     {
DataColumnChangeEventArgs(System.Data.DataRow row, System.Data.DataColumn column, object value)595         public DataColumnChangeEventArgs(System.Data.DataRow row, System.Data.DataColumn column, object value) { }
596         public System.Data.DataColumn Column { get { throw null; } }
597         public object ProposedValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
598         public System.Data.DataRow Row { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
599     }
DataColumnChangeEventHandler(object sender, System.Data.DataColumnChangeEventArgs e)600     public delegate void DataColumnChangeEventHandler(object sender, System.Data.DataColumnChangeEventArgs e);
601     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
602     public sealed partial class DataColumnCollection : System.Data.InternalDataCollectionBase
603     {
DataColumnCollection()604         internal DataColumnCollection() { }
605         public System.Data.DataColumn this[int index] { get { throw null; } }
606         public System.Data.DataColumn this[string name] { get { throw null; } }
607         protected override System.Collections.ArrayList List { get { throw null; } }
608         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add()609         public System.Data.DataColumn Add() { throw null; }
Add(System.Data.DataColumn column)610         public void Add(System.Data.DataColumn column) { }
Add(string columnName)611         public System.Data.DataColumn Add(string columnName) { throw null; }
Add(string columnName, System.Type type)612         public System.Data.DataColumn Add(string columnName, System.Type type) { throw null; }
Add(string columnName, System.Type type, string expression)613         public System.Data.DataColumn Add(string columnName, System.Type type, string expression) { throw null; }
AddRange(System.Data.DataColumn[] columns)614         public void AddRange(System.Data.DataColumn[] columns) { }
CanRemove(System.Data.DataColumn column)615         public bool CanRemove(System.Data.DataColumn column) { throw null; }
Clear()616         public void Clear() { }
Contains(string name)617         public bool Contains(string name) { throw null; }
CopyTo(System.Data.DataColumn[] array, int index)618         public void CopyTo(System.Data.DataColumn[] array, int index) { }
IndexOf(System.Data.DataColumn column)619         public int IndexOf(System.Data.DataColumn column) { throw null; }
IndexOf(string columnName)620         public int IndexOf(string columnName) { throw null; }
Remove(System.Data.DataColumn column)621         public void Remove(System.Data.DataColumn column) { }
Remove(string name)622         public void Remove(string name) { }
RemoveAt(int index)623         public void RemoveAt(int index) { }
624     }
625     [System.SerializableAttribute]
626     public partial class DataException : System.SystemException
627     {
DataException()628         public DataException() { }
DataException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)629         protected DataException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataException(string s)630         public DataException(string s) { }
DataException(string s, System.Exception innerException)631         public DataException(string s, System.Exception innerException) { }
632     }
633     [System.ComponentModel.DefaultPropertyAttribute("RelationName")]
634     [System.ComponentModel.TypeConverterAttribute("System.Data.RelationshipConverter")]
635     public partial class DataRelation
636     {
DataRelation(string relationName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)637         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)638         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)639         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)640         public DataRelation(string relationName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns, bool createConstraints) { }
641         [System.ComponentModel.BrowsableAttribute(false)]
DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested)642         public DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested) { }
643         [System.ComponentModel.BrowsableAttribute(false)]
DataRelation(string relationName, string parentTableName, string childTableName, string[] parentColumnNames, string[] childColumnNames, bool nested)644         public DataRelation(string relationName, string parentTableName, string childTableName, string[] parentColumnNames, string[] childColumnNames, bool nested) { }
645         public virtual System.Data.DataColumn[] ChildColumns { get { throw null; } }
646         public virtual System.Data.ForeignKeyConstraint ChildKeyConstraint { get { throw null; } }
647         public virtual System.Data.DataTable ChildTable { get { throw null; } }
648         [System.ComponentModel.BrowsableAttribute(false)]
649         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
650         public virtual System.Data.DataSet DataSet { get { throw null; } }
651         [System.ComponentModel.BrowsableAttribute(false)]
652         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
653         [System.ComponentModel.DefaultValueAttribute(false)]
654         public virtual bool Nested { get { throw null; } set { } }
655         public virtual System.Data.DataColumn[] ParentColumns { get { throw null; } }
656         public virtual System.Data.UniqueConstraint ParentKeyConstraint { get { throw null; } }
657         public virtual System.Data.DataTable ParentTable { get { throw null; } }
658         [System.ComponentModel.DefaultValueAttribute("")]
659         public virtual string RelationName { get { throw null; } set { } }
CheckStateForProperty()660         protected void CheckStateForProperty() { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)661         protected internal void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
RaisePropertyChanging(string name)662         protected internal void RaisePropertyChanging(string name) { }
ToString()663         public override string ToString() { throw null; }
664     }
665     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
666     [System.ComponentModel.DefaultPropertyAttribute("Table")]
667     public abstract partial class DataRelationCollection : System.Data.InternalDataCollectionBase
668     {
DataRelationCollection()669         protected DataRelationCollection() { }
670         public abstract System.Data.DataRelation this[int index] { get; }
671         public abstract System.Data.DataRelation this[string name] { get; }
672         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)673         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)674         public virtual System.Data.DataRelation Add(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { throw null; }
Add(System.Data.DataRelation relation)675         public void Add(System.Data.DataRelation relation) { }
Add(string name, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)676         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)677         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)678         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)679         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)680         protected virtual void AddCore(System.Data.DataRelation relation) { }
AddRange(System.Data.DataRelation[] relations)681         public virtual void AddRange(System.Data.DataRelation[] relations) { }
CanRemove(System.Data.DataRelation relation)682         public virtual bool CanRemove(System.Data.DataRelation relation) { throw null; }
Clear()683         public virtual void Clear() { }
Contains(string name)684         public virtual bool Contains(string name) { throw null; }
CopyTo(System.Data.DataRelation[] array, int index)685         public void CopyTo(System.Data.DataRelation[] array, int index) { }
GetDataSet()686         protected abstract System.Data.DataSet GetDataSet();
IndexOf(System.Data.DataRelation relation)687         public virtual int IndexOf(System.Data.DataRelation relation) { throw null; }
IndexOf(string relationName)688         public virtual int IndexOf(string relationName) { throw null; }
OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent)689         protected virtual void OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent) { }
OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs ccevent)690         protected virtual void OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs ccevent) { }
Remove(System.Data.DataRelation relation)691         public void Remove(System.Data.DataRelation relation) { }
Remove(string name)692         public void Remove(string name) { }
RemoveAt(int index)693         public void RemoveAt(int index) { }
RemoveCore(System.Data.DataRelation relation)694         protected virtual void RemoveCore(System.Data.DataRelation relation) { }
695     }
696     public partial class DataRow
697     {
DataRow(System.Data.DataRowBuilder builder)698         protected internal DataRow(System.Data.DataRowBuilder builder) { }
699         public bool HasErrors { get { throw null; } }
700         public object this[System.Data.DataColumn column] { get { throw null; } set { } }
701         public object this[System.Data.DataColumn column, System.Data.DataRowVersion version] { get { throw null; } }
702         public object this[int columnIndex] { get { throw null; } set { } }
703         public object this[int columnIndex, System.Data.DataRowVersion version] { get { throw null; } }
704         public object this[string columnName] { get { throw null; } set { } }
705         public object this[string columnName, System.Data.DataRowVersion version] { get { throw null; } }
706         public object[] ItemArray { get { throw null; } set { } }
707         public string RowError { get { throw null; } set { } }
708         public System.Data.DataRowState RowState { get { throw null; } }
709         public System.Data.DataTable Table { get { throw null; } }
AcceptChanges()710         public void AcceptChanges() { }
711         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
BeginEdit()712         public void BeginEdit() { }
713         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
CancelEdit()714         public void CancelEdit() { }
ClearErrors()715         public void ClearErrors() { }
Delete()716         public void Delete() { }
717         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
EndEdit()718         public void EndEdit() { }
GetChildRows(System.Data.DataRelation relation)719         public System.Data.DataRow[] GetChildRows(System.Data.DataRelation relation) { throw null; }
GetChildRows(System.Data.DataRelation relation, System.Data.DataRowVersion version)720         public System.Data.DataRow[] GetChildRows(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetChildRows(string relationName)721         public System.Data.DataRow[] GetChildRows(string relationName) { throw null; }
GetChildRows(string relationName, System.Data.DataRowVersion version)722         public System.Data.DataRow[] GetChildRows(string relationName, System.Data.DataRowVersion version) { throw null; }
GetColumnError(System.Data.DataColumn column)723         public string GetColumnError(System.Data.DataColumn column) { throw null; }
GetColumnError(int columnIndex)724         public string GetColumnError(int columnIndex) { throw null; }
GetColumnError(string columnName)725         public string GetColumnError(string columnName) { throw null; }
GetColumnsInError()726         public System.Data.DataColumn[] GetColumnsInError() { throw null; }
GetParentRow(System.Data.DataRelation relation)727         public System.Data.DataRow GetParentRow(System.Data.DataRelation relation) { throw null; }
GetParentRow(System.Data.DataRelation relation, System.Data.DataRowVersion version)728         public System.Data.DataRow GetParentRow(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetParentRow(string relationName)729         public System.Data.DataRow GetParentRow(string relationName) { throw null; }
GetParentRow(string relationName, System.Data.DataRowVersion version)730         public System.Data.DataRow GetParentRow(string relationName, System.Data.DataRowVersion version) { throw null; }
GetParentRows(System.Data.DataRelation relation)731         public System.Data.DataRow[] GetParentRows(System.Data.DataRelation relation) { throw null; }
GetParentRows(System.Data.DataRelation relation, System.Data.DataRowVersion version)732         public System.Data.DataRow[] GetParentRows(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetParentRows(string relationName)733         public System.Data.DataRow[] GetParentRows(string relationName) { throw null; }
GetParentRows(string relationName, System.Data.DataRowVersion version)734         public System.Data.DataRow[] GetParentRows(string relationName, System.Data.DataRowVersion version) { throw null; }
HasVersion(System.Data.DataRowVersion version)735         public bool HasVersion(System.Data.DataRowVersion version) { throw null; }
IsNull(System.Data.DataColumn column)736         public bool IsNull(System.Data.DataColumn column) { throw null; }
IsNull(System.Data.DataColumn column, System.Data.DataRowVersion version)737         public bool IsNull(System.Data.DataColumn column, System.Data.DataRowVersion version) { throw null; }
IsNull(int columnIndex)738         public bool IsNull(int columnIndex) { throw null; }
IsNull(string columnName)739         public bool IsNull(string columnName) { throw null; }
RejectChanges()740         public void RejectChanges() { }
SetAdded()741         public void SetAdded() { }
SetColumnError(System.Data.DataColumn column, string error)742         public void SetColumnError(System.Data.DataColumn column, string error) { }
SetColumnError(int columnIndex, string error)743         public void SetColumnError(int columnIndex, string error) { }
SetColumnError(string columnName, string error)744         public void SetColumnError(string columnName, string error) { }
SetModified()745         public void SetModified() { }
SetNull(System.Data.DataColumn column)746         protected void SetNull(System.Data.DataColumn column) { }
SetParentRow(System.Data.DataRow parentRow)747         public void SetParentRow(System.Data.DataRow parentRow) { }
SetParentRow(System.Data.DataRow parentRow, System.Data.DataRelation relation)748         public void SetParentRow(System.Data.DataRow parentRow, System.Data.DataRelation relation) { }
749     }
750     [System.FlagsAttribute]
751     public enum DataRowAction
752     {
753         Add = 16,
754         Change = 2,
755         ChangeCurrentAndOriginal = 64,
756         ChangeOriginal = 32,
757         Commit = 8,
758         Delete = 1,
759         Nothing = 0,
760         Rollback = 4,
761     }
762     public sealed partial class DataRowBuilder
763     {
DataRowBuilder()764         internal DataRowBuilder() { }
765     }
766     public partial class DataRowChangeEventArgs : System.EventArgs
767     {
DataRowChangeEventArgs(System.Data.DataRow row, System.Data.DataRowAction action)768         public DataRowChangeEventArgs(System.Data.DataRow row, System.Data.DataRowAction action) { }
769         public System.Data.DataRowAction Action { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
770         public System.Data.DataRow Row { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
771     }
DataRowChangeEventHandler(object sender, System.Data.DataRowChangeEventArgs e)772     public delegate void DataRowChangeEventHandler(object sender, System.Data.DataRowChangeEventArgs e);
773     public sealed partial class DataRowCollection : System.Data.InternalDataCollectionBase
774     {
DataRowCollection()775         internal DataRowCollection() { }
776         public override int Count { get { throw null; } }
777         public System.Data.DataRow this[int index] { get { throw null; } }
Add(System.Data.DataRow row)778         public void Add(System.Data.DataRow row) { }
Add(params object[] values)779         public System.Data.DataRow Add(params object[] values) { throw null; }
Clear()780         public void Clear() { }
Contains(object key)781         public bool Contains(object key) { throw null; }
Contains(object[] keys)782         public bool Contains(object[] keys) { throw null; }
CopyTo(System.Array ar, int index)783         public override void CopyTo(System.Array ar, int index) { }
CopyTo(System.Data.DataRow[] array, int index)784         public void CopyTo(System.Data.DataRow[] array, int index) { }
Find(object key)785         public System.Data.DataRow Find(object key) { throw null; }
Find(object[] keys)786         public System.Data.DataRow Find(object[] keys) { throw null; }
GetEnumerator()787         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.Data.DataRow row)788         public int IndexOf(System.Data.DataRow row) { throw null; }
InsertAt(System.Data.DataRow row, int pos)789         public void InsertAt(System.Data.DataRow row, int pos) { }
Remove(System.Data.DataRow row)790         public void Remove(System.Data.DataRow row) { }
RemoveAt(int index)791         public void RemoveAt(int index) { }
792     }
793     [System.FlagsAttribute]
794     public enum DataRowState
795     {
796         Added = 4,
797         Deleted = 8,
798         Detached = 1,
799         Modified = 16,
800         Unchanged = 2,
801     }
802     public enum DataRowVersion
803     {
804         Current = 512,
805         Default = 1536,
806         Original = 256,
807         Proposed = 1024,
808     }
809     public partial class DataRowView : System.ComponentModel.ICustomTypeDescriptor, System.ComponentModel.IDataErrorInfo, System.ComponentModel.IEditableObject, System.ComponentModel.INotifyPropertyChanged
810     {
DataRowView()811         internal DataRowView() { }
812         public System.Data.DataView DataView { get { throw null; } }
813         public bool IsEdit { get { throw null; } }
814         public bool IsNew { get { throw null; } }
815         public object this[int ndx] { get { throw null; } set { } }
816         public object this[string property] { get { throw null; } set { } }
817         public System.Data.DataRow Row { get { throw null; } }
818         public System.Data.DataRowVersion RowVersion { get { throw null; } }
819         string System.ComponentModel.IDataErrorInfo.Error { get { throw null; } }
820         string System.ComponentModel.IDataErrorInfo.this[string colName] { get { throw null; } }
821         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
BeginEdit()822         public void BeginEdit() { }
CancelEdit()823         public void CancelEdit() { }
CreateChildView(System.Data.DataRelation relation)824         public System.Data.DataView CreateChildView(System.Data.DataRelation relation) { throw null; }
CreateChildView(System.Data.DataRelation relation, bool followParent)825         public System.Data.DataView CreateChildView(System.Data.DataRelation relation, bool followParent) { throw null; }
CreateChildView(string relationName)826         public System.Data.DataView CreateChildView(string relationName) { throw null; }
CreateChildView(string relationName, bool followParent)827         public System.Data.DataView CreateChildView(string relationName, bool followParent) { throw null; }
Delete()828         public void Delete() { }
EndEdit()829         public void EndEdit() { }
Equals(object other)830         public override bool Equals(object other) { throw null; }
GetHashCode()831         public override int GetHashCode() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()832         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()833         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()834         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()835         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()836         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()837         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)838         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()839         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)840         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()841         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)842         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)843         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
844     }
845     [System.ComponentModel.DefaultPropertyAttribute("DataSetName")]
846     [System.Xml.Serialization.XmlRootAttribute("DataSet")]
847     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetDataSetSchema")]
848     [System.SerializableAttribute]
849     public partial class DataSet : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
850     {
DataSet()851         public DataSet() { }
DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)852         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)853         protected DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context, bool ConstructSchema) { }
DataSet(string dataSetName)854         public DataSet(string dataSetName) { }
855         [System.ComponentModel.DefaultValueAttribute(false)]
856         public bool CaseSensitive { get { throw null; } set { } }
857         [System.ComponentModel.DefaultValueAttribute("")]
858         public string DataSetName { get { throw null; } set { } }
859         [System.ComponentModel.BrowsableAttribute(false)]
860         public System.Data.DataViewManager DefaultViewManager { get { throw null; } }
861         [System.ComponentModel.DefaultValueAttribute(true)]
862         public bool EnforceConstraints { get { throw null; } set { } }
863         [System.ComponentModel.BrowsableAttribute(false)]
864         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
865         [System.ComponentModel.BrowsableAttribute(false)]
866         public bool HasErrors { get { throw null; } }
867         [System.ComponentModel.BrowsableAttribute(false)]
868         public bool IsInitialized { get { throw null; } }
869         public System.Globalization.CultureInfo Locale { get { throw null; } set { } }
870         [System.ComponentModel.DefaultValueAttribute("")]
871         public string Namespace { get { throw null; } set { } }
872         [System.ComponentModel.DefaultValueAttribute("")]
873         public string Prefix { get { throw null; } set { } }
874         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
875         public System.Data.DataRelationCollection Relations { get { throw null; } }
876         [System.ComponentModel.DefaultValueAttribute((System.Data.SerializationFormat)(0))]
877         public System.Data.SerializationFormat RemotingFormat { get { throw null; } set { } }
878         [System.ComponentModel.BrowsableAttribute(false)]
879         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
880         public virtual System.Data.SchemaSerializationMode SchemaSerializationMode { get { throw null; } set { } }
881         [System.ComponentModel.BrowsableAttribute(false)]
882         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
883         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
884         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
885         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
886         public System.Data.DataTableCollection Tables { get { throw null; } }
887         public event System.EventHandler Initialized { add { } remove { } }
888         public event System.Data.MergeFailedEventHandler MergeFailed { add { } remove { } }
AcceptChanges()889         public void AcceptChanges() { }
BeginInit()890         public void BeginInit() { }
Clear()891         public void Clear() { }
Clone()892         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public virtual System.Data.DataSet Clone() { throw null; }
Copy()893         public System.Data.DataSet Copy() { throw null; }
CreateDataReader()894         public System.Data.DataTableReader CreateDataReader() { throw null; }
CreateDataReader(params System.Data.DataTable[] dataTables)895         public System.Data.DataTableReader CreateDataReader(params System.Data.DataTable[] dataTables) { throw null; }
DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)896         protected System.Data.SchemaSerializationMode DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw null; }
DetermineSchemaSerializationMode(System.Xml.XmlReader reader)897         protected System.Data.SchemaSerializationMode DetermineSchemaSerializationMode(System.Xml.XmlReader reader) { throw null; }
EndInit()898         public void EndInit() { }
GetChanges()899         public System.Data.DataSet GetChanges() { throw null; }
GetChanges(System.Data.DataRowState rowStates)900         public System.Data.DataSet GetChanges(System.Data.DataRowState rowStates) { throw null; }
GetDataSetSchema(System.Xml.Schema.XmlSchemaSet schemaSet)901         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)902         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetSchemaSerializable()903         protected virtual System.Xml.Schema.XmlSchema GetSchemaSerializable() { throw null; }
GetSerializationData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)904         protected void GetSerializationData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetXml()905         public string GetXml() { throw null; }
GetXmlSchema()906         public string GetXmlSchema() { throw null; }
HasChanges()907         public bool HasChanges() { throw null; }
HasChanges(System.Data.DataRowState rowStates)908         public bool HasChanges(System.Data.DataRowState rowStates) { throw null; }
InferXmlSchema(System.IO.Stream stream, string[] nsArray)909         public void InferXmlSchema(System.IO.Stream stream, string[] nsArray) { }
InferXmlSchema(System.IO.TextReader reader, string[] nsArray)910         public void InferXmlSchema(System.IO.TextReader reader, string[] nsArray) { }
InferXmlSchema(string fileName, string[] nsArray)911         public void InferXmlSchema(string fileName, string[] nsArray) { }
InferXmlSchema(System.Xml.XmlReader reader, string[] nsArray)912         public void InferXmlSchema(System.Xml.XmlReader reader, string[] nsArray) { }
InitializeDerivedDataSet()913         protected virtual void InitializeDerivedDataSet() { }
IsBinarySerialized(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)914         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)915         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)916         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)917         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, params string[] tables) { }
Merge(System.Data.DataRow[] rows)918         public void Merge(System.Data.DataRow[] rows) { }
Merge(System.Data.DataRow[] rows, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)919         public void Merge(System.Data.DataRow[] rows, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
Merge(System.Data.DataSet dataSet)920         public void Merge(System.Data.DataSet dataSet) { }
Merge(System.Data.DataSet dataSet, bool preserveChanges)921         public void Merge(System.Data.DataSet dataSet, bool preserveChanges) { }
Merge(System.Data.DataSet dataSet, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)922         public void Merge(System.Data.DataSet dataSet, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
Merge(System.Data.DataTable table)923         public void Merge(System.Data.DataTable table) { }
Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)924         public void Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)925         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
OnRemoveRelation(System.Data.DataRelation relation)926         protected virtual void OnRemoveRelation(System.Data.DataRelation relation) { }
OnRemoveTable(System.Data.DataTable table)927         protected internal virtual void OnRemoveTable(System.Data.DataTable table) { }
RaisePropertyChanging(string name)928         protected internal void RaisePropertyChanging(string name) { }
ReadXml(System.IO.Stream stream)929         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream) { throw null; }
ReadXml(System.IO.Stream stream, System.Data.XmlReadMode mode)930         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream, System.Data.XmlReadMode mode) { throw null; }
ReadXml(System.IO.TextReader reader)931         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader) { throw null; }
ReadXml(System.IO.TextReader reader, System.Data.XmlReadMode mode)932         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader, System.Data.XmlReadMode mode) { throw null; }
ReadXml(string fileName)933         public System.Data.XmlReadMode ReadXml(string fileName) { throw null; }
ReadXml(string fileName, System.Data.XmlReadMode mode)934         public System.Data.XmlReadMode ReadXml(string fileName, System.Data.XmlReadMode mode) { throw null; }
ReadXml(System.Xml.XmlReader reader)935         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader) { throw null; }
ReadXml(System.Xml.XmlReader reader, System.Data.XmlReadMode mode)936         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader, System.Data.XmlReadMode mode) { throw null; }
ReadXmlSchema(System.IO.Stream stream)937         public void ReadXmlSchema(System.IO.Stream stream) { }
ReadXmlSchema(System.IO.TextReader reader)938         public void ReadXmlSchema(System.IO.TextReader reader) { }
ReadXmlSchema(string fileName)939         public void ReadXmlSchema(string fileName) { }
ReadXmlSchema(System.Xml.XmlReader reader)940         public void ReadXmlSchema(System.Xml.XmlReader reader) { }
ReadXmlSerializable(System.Xml.XmlReader reader)941         protected virtual void ReadXmlSerializable(System.Xml.XmlReader reader) { }
RejectChanges()942         public virtual void RejectChanges() { }
Reset()943         public virtual void Reset() { }
ShouldSerializeRelations()944         protected virtual bool ShouldSerializeRelations() { throw null; }
ShouldSerializeTables()945         protected virtual bool ShouldSerializeTables() { throw null; }
System.ComponentModel.IListSource.GetList()946         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()947         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader)948         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)949         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.IO.Stream stream)950         public void WriteXml(System.IO.Stream stream) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode)951         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.TextWriter writer)952         public void WriteXml(System.IO.TextWriter writer) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode)953         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(string fileName)954         public void WriteXml(string fileName) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode)955         public void WriteXml(string fileName, System.Data.XmlWriteMode mode) { }
WriteXml(System.Xml.XmlWriter writer)956         public void WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode)957         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode) { }
WriteXmlSchema(System.IO.Stream stream)958         public void WriteXmlSchema(System.IO.Stream stream) { }
WriteXmlSchema(System.IO.Stream stream, System.Converter<System.Type, string> multipleTargetConverter)959         public void WriteXmlSchema(System.IO.Stream stream, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(System.IO.TextWriter writer)960         public void WriteXmlSchema(System.IO.TextWriter writer) { }
WriteXmlSchema(System.IO.TextWriter writer, System.Converter<System.Type, string> multipleTargetConverter)961         public void WriteXmlSchema(System.IO.TextWriter writer, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(string fileName)962         public void WriteXmlSchema(string fileName) { }
WriteXmlSchema(string fileName, System.Converter<System.Type, string> multipleTargetConverter)963         public void WriteXmlSchema(string fileName, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(System.Xml.XmlWriter writer)964         public void WriteXmlSchema(System.Xml.XmlWriter writer) { }
WriteXmlSchema(System.Xml.XmlWriter writer, System.Converter<System.Type, string> multipleTargetConverter)965         public void WriteXmlSchema(System.Xml.XmlWriter writer, System.Converter<System.Type, string> multipleTargetConverter) { }
966     }
967     public enum DataSetDateTime
968     {
969         Local = 1,
970         Unspecified = 2,
971         UnspecifiedLocal = 3,
972         Utc = 4,
973     }
974     public partial class DataSetSchemaImporterExtension : System.Xml.Serialization.Advanced.SchemaImporterExtension
975     {
DataSetSchemaImporterExtension()976         public DataSetSchemaImporterExtension() { }
ImportSchemaType(string name, string schemaNamespace, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)977         public override string ImportSchemaType(string name, string schemaNamespace, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
ImportSchemaType(System.Xml.Schema.XmlSchemaType type, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)978         public override string ImportSchemaType(System.Xml.Schema.XmlSchemaType type, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
979     }
980     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
981     [System.ObsoleteAttribute("DataSysDescriptionAttribute has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202", false)]
982     public partial class DataSysDescriptionAttribute : System.ComponentModel.DescriptionAttribute
983     {
984         [System.ObsoleteAttribute("DataSysDescriptionAttribute has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202", false)]
DataSysDescriptionAttribute(string description)985         public DataSysDescriptionAttribute(string description) { }
986         public override string Description { get { throw null; } }
987     }
988     [System.ComponentModel.DefaultEventAttribute("RowChanging")]
989     [System.ComponentModel.DefaultPropertyAttribute("TableName")]
990     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
991     [System.ComponentModel.ToolboxItemAttribute(false)]
992     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetDataTableSchema")]
993     [System.SerializableAttribute]
994     public partial class DataTable : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
995     {
996         protected internal bool fInitInProgress;
DataTable()997         public DataTable() { }
DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)998         protected DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataTable(string tableName)999         public DataTable(string tableName) { }
DataTable(string tableName, string tableNamespace)1000         public DataTable(string tableName, string tableNamespace) { }
1001         public bool CaseSensitive { get { throw null; } set { } }
1002         [System.ComponentModel.BrowsableAttribute(false)]
1003         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1004         public System.Data.DataRelationCollection ChildRelations { get { throw null; } }
1005         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1006         public System.Data.DataColumnCollection Columns { get { throw null; } }
1007         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1008         public System.Data.ConstraintCollection Constraints { get { throw null; } }
1009         [System.ComponentModel.BrowsableAttribute(false)]
1010         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1011         public System.Data.DataSet DataSet { get { throw null; } }
1012         [System.ComponentModel.BrowsableAttribute(false)]
1013         public System.Data.DataView DefaultView { get { throw null; } }
1014         [System.ComponentModel.DefaultValueAttribute("")]
1015         public string DisplayExpression { get { throw null; } set { } }
1016         [System.ComponentModel.BrowsableAttribute(false)]
1017         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
1018         [System.ComponentModel.BrowsableAttribute(false)]
1019         public bool HasErrors { get { throw null; } }
1020         [System.ComponentModel.BrowsableAttribute(false)]
1021         public bool IsInitialized { get { throw null; } }
1022         public System.Globalization.CultureInfo Locale { get { throw null; } set { } }
1023         [System.ComponentModel.DefaultValueAttribute(50)]
1024         public int MinimumCapacity { get { throw null; } set { } }
1025         public string Namespace { get { throw null; } set { } }
1026         [System.ComponentModel.BrowsableAttribute(false)]
1027         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1028         public System.Data.DataRelationCollection ParentRelations { get { throw null; } }
1029         [System.ComponentModel.DefaultValueAttribute("")]
1030         public string Prefix { get { throw null; } set { } }
1031         [System.ComponentModel.TypeConverterAttribute("System.Data.PrimaryKeyTypeConverter")]
1032         public System.Data.DataColumn[] PrimaryKey { get { throw null; } set { } }
1033         [System.ComponentModel.DefaultValueAttribute((System.Data.SerializationFormat)(0))]
1034         public System.Data.SerializationFormat RemotingFormat { get { throw null; } set { } }
1035         [System.ComponentModel.BrowsableAttribute(false)]
1036         public System.Data.DataRowCollection Rows { get { throw null; } }
1037         [System.ComponentModel.BrowsableAttribute(false)]
1038         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1039         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
1040         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
1041         [System.ComponentModel.DefaultValueAttribute("")]
1042         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1043         public string TableName { get { throw null; } set { } }
1044         public event System.Data.DataColumnChangeEventHandler ColumnChanged { add { } remove { } }
1045         public event System.Data.DataColumnChangeEventHandler ColumnChanging { add { } remove { } }
1046         public event System.EventHandler Initialized { add { } remove { } }
1047         public event System.Data.DataRowChangeEventHandler RowChanged { add { } remove { } }
1048         public event System.Data.DataRowChangeEventHandler RowChanging { add { } remove { } }
1049         public event System.Data.DataRowChangeEventHandler RowDeleted { add { } remove { } }
1050         public event System.Data.DataRowChangeEventHandler RowDeleting { add { } remove { } }
1051         public event System.Data.DataTableClearEventHandler TableCleared { add { } remove { } }
1052         public event System.Data.DataTableClearEventHandler TableClearing { add { } remove { } }
1053         public event System.Data.DataTableNewRowEventHandler TableNewRow { add { } remove { } }
AcceptChanges()1054         public void AcceptChanges() { }
BeginInit()1055         public virtual void BeginInit() { }
BeginLoadData()1056         public void BeginLoadData() { }
Clear()1057         public void Clear() { }
Clone()1058         public virtual System.Data.DataTable Clone() { throw null; }
Compute(string expression, string filter)1059         public object Compute(string expression, string filter) { throw null; }
Copy()1060         public System.Data.DataTable Copy() { throw null; }
CreateDataReader()1061         public System.Data.DataTableReader CreateDataReader() { throw null; }
CreateInstance()1062         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]protected virtual System.Data.DataTable CreateInstance() { throw null; }
EndInit()1063         public virtual void EndInit() { }
EndLoadData()1064         public void EndLoadData() { }
GetChanges()1065         public System.Data.DataTable GetChanges() { throw null; }
GetChanges(System.Data.DataRowState rowStates)1066         public System.Data.DataTable GetChanges(System.Data.DataRowState rowStates) { throw null; }
GetDataTableSchema(System.Xml.Schema.XmlSchemaSet schemaSet)1067         public static System.Xml.Schema.XmlSchemaComplexType GetDataTableSchema(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GetErrors()1068         public System.Data.DataRow[] GetErrors() { throw null; }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1069         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetRowType()1070         protected virtual System.Type GetRowType() { throw null; }
GetSchema()1071         protected virtual System.Xml.Schema.XmlSchema GetSchema() { throw null; }
ImportRow(System.Data.DataRow row)1072         public void ImportRow(System.Data.DataRow row) { }
Load(System.Data.IDataReader reader)1073         public void Load(System.Data.IDataReader reader) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption)1074         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler)1075         public virtual void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler) { }
LoadDataRow(object[] values, bool fAcceptChanges)1076         public System.Data.DataRow LoadDataRow(object[] values, bool fAcceptChanges) { throw null; }
LoadDataRow(object[] values, System.Data.LoadOption loadOption)1077         public System.Data.DataRow LoadDataRow(object[] values, System.Data.LoadOption loadOption) { throw null; }
Merge(System.Data.DataTable table)1078         public void Merge(System.Data.DataTable table) { }
Merge(System.Data.DataTable table, bool preserveChanges)1079         public void Merge(System.Data.DataTable table, bool preserveChanges) { }
Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)1080         public void Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
NewRow()1081         public System.Data.DataRow NewRow() { throw null; }
NewRowArray(int size)1082         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]protected internal System.Data.DataRow[] NewRowArray(int size) { throw null; }
NewRowFromBuilder(System.Data.DataRowBuilder builder)1083         protected virtual System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) { throw null; }
OnColumnChanged(System.Data.DataColumnChangeEventArgs e)1084         protected internal virtual void OnColumnChanged(System.Data.DataColumnChangeEventArgs e) { }
OnColumnChanging(System.Data.DataColumnChangeEventArgs e)1085         protected internal virtual void OnColumnChanging(System.Data.DataColumnChangeEventArgs e) { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)1086         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
OnRemoveColumn(System.Data.DataColumn column)1087         protected virtual void OnRemoveColumn(System.Data.DataColumn column) { }
OnRowChanged(System.Data.DataRowChangeEventArgs e)1088         protected virtual void OnRowChanged(System.Data.DataRowChangeEventArgs e) { }
OnRowChanging(System.Data.DataRowChangeEventArgs e)1089         protected virtual void OnRowChanging(System.Data.DataRowChangeEventArgs e) { }
OnRowDeleted(System.Data.DataRowChangeEventArgs e)1090         protected virtual void OnRowDeleted(System.Data.DataRowChangeEventArgs e) { }
OnRowDeleting(System.Data.DataRowChangeEventArgs e)1091         protected virtual void OnRowDeleting(System.Data.DataRowChangeEventArgs e) { }
OnTableCleared(System.Data.DataTableClearEventArgs e)1092         protected virtual void OnTableCleared(System.Data.DataTableClearEventArgs e) { }
OnTableClearing(System.Data.DataTableClearEventArgs e)1093         protected virtual void OnTableClearing(System.Data.DataTableClearEventArgs e) { }
OnTableNewRow(System.Data.DataTableNewRowEventArgs e)1094         protected virtual void OnTableNewRow(System.Data.DataTableNewRowEventArgs e) { }
ReadXml(System.IO.Stream stream)1095         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream) { throw null; }
ReadXml(System.IO.TextReader reader)1096         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader) { throw null; }
ReadXml(string fileName)1097         public System.Data.XmlReadMode ReadXml(string fileName) { throw null; }
ReadXml(System.Xml.XmlReader reader)1098         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader) { throw null; }
ReadXmlSchema(System.IO.Stream stream)1099         public void ReadXmlSchema(System.IO.Stream stream) { }
ReadXmlSchema(System.IO.TextReader reader)1100         public void ReadXmlSchema(System.IO.TextReader reader) { }
ReadXmlSchema(string fileName)1101         public void ReadXmlSchema(string fileName) { }
ReadXmlSchema(System.Xml.XmlReader reader)1102         public void ReadXmlSchema(System.Xml.XmlReader reader) { }
ReadXmlSerializable(System.Xml.XmlReader reader)1103         protected virtual void ReadXmlSerializable(System.Xml.XmlReader reader) { }
RejectChanges()1104         public void RejectChanges() { }
Reset()1105         public virtual void Reset() { }
Select()1106         public System.Data.DataRow[] Select() { throw null; }
Select(string filterExpression)1107         public System.Data.DataRow[] Select(string filterExpression) { throw null; }
Select(string filterExpression, string sort)1108         public System.Data.DataRow[] Select(string filterExpression, string sort) { throw null; }
Select(string filterExpression, string sort, System.Data.DataViewRowState recordStates)1109         public System.Data.DataRow[] Select(string filterExpression, string sort, System.Data.DataViewRowState recordStates) { throw null; }
System.ComponentModel.IListSource.GetList()1110         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()1111         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader)1112         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)1113         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToString()1114         public override string ToString() { throw null; }
WriteXml(System.IO.Stream stream)1115         public void WriteXml(System.IO.Stream stream) { }
WriteXml(System.IO.Stream stream, bool writeHierarchy)1116         public void WriteXml(System.IO.Stream stream, bool writeHierarchy) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode)1117         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy)1118         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(System.IO.TextWriter writer)1119         public void WriteXml(System.IO.TextWriter writer) { }
WriteXml(System.IO.TextWriter writer, bool writeHierarchy)1120         public void WriteXml(System.IO.TextWriter writer, bool writeHierarchy) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode)1121         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy)1122         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(string fileName)1123         public void WriteXml(string fileName) { }
WriteXml(string fileName, bool writeHierarchy)1124         public void WriteXml(string fileName, bool writeHierarchy) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode)1125         public void WriteXml(string fileName, System.Data.XmlWriteMode mode) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy)1126         public void WriteXml(string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(System.Xml.XmlWriter writer)1127         public void WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.Xml.XmlWriter writer, bool writeHierarchy)1128         public void WriteXml(System.Xml.XmlWriter writer, bool writeHierarchy) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode)1129         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy)1130         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXmlSchema(System.IO.Stream stream)1131         public void WriteXmlSchema(System.IO.Stream stream) { }
WriteXmlSchema(System.IO.Stream stream, bool writeHierarchy)1132         public void WriteXmlSchema(System.IO.Stream stream, bool writeHierarchy) { }
WriteXmlSchema(System.IO.TextWriter writer)1133         public void WriteXmlSchema(System.IO.TextWriter writer) { }
WriteXmlSchema(System.IO.TextWriter writer, bool writeHierarchy)1134         public void WriteXmlSchema(System.IO.TextWriter writer, bool writeHierarchy) { }
WriteXmlSchema(string fileName)1135         public void WriteXmlSchema(string fileName) { }
WriteXmlSchema(string fileName, bool writeHierarchy)1136         public void WriteXmlSchema(string fileName, bool writeHierarchy) { }
WriteXmlSchema(System.Xml.XmlWriter writer)1137         public void WriteXmlSchema(System.Xml.XmlWriter writer) { }
WriteXmlSchema(System.Xml.XmlWriter writer, bool writeHierarchy)1138         public void WriteXmlSchema(System.Xml.XmlWriter writer, bool writeHierarchy) { }
1139     }
1140     public sealed partial class DataTableClearEventArgs : System.EventArgs
1141     {
DataTableClearEventArgs(System.Data.DataTable dataTable)1142         public DataTableClearEventArgs(System.Data.DataTable dataTable) { }
1143         public System.Data.DataTable Table { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1144         public string TableName { get { throw null; } }
1145         public string TableNamespace { get { throw null; } }
1146     }
DataTableClearEventHandler(object sender, System.Data.DataTableClearEventArgs e)1147     public delegate void DataTableClearEventHandler(object sender, System.Data.DataTableClearEventArgs e);
1148     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
1149     [System.ComponentModel.ListBindableAttribute(false)]
1150     public sealed partial class DataTableCollection : System.Data.InternalDataCollectionBase
1151     {
DataTableCollection()1152         internal DataTableCollection() { }
1153         public System.Data.DataTable this[int index] { get { throw null; } }
1154         public System.Data.DataTable this[string name] { get { throw null; } }
1155         public System.Data.DataTable this[string name, string tableNamespace] { get { throw null; } }
1156         protected override System.Collections.ArrayList List { get { throw null; } }
1157         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
1158         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanging { add { } remove { } }
Add()1159         public System.Data.DataTable Add() { throw null; }
Add(System.Data.DataTable table)1160         public void Add(System.Data.DataTable table) { }
Add(string name)1161         public System.Data.DataTable Add(string name) { throw null; }
Add(string name, string tableNamespace)1162         public System.Data.DataTable Add(string name, string tableNamespace) { throw null; }
AddRange(System.Data.DataTable[] tables)1163         public void AddRange(System.Data.DataTable[] tables) { }
CanRemove(System.Data.DataTable table)1164         public bool CanRemove(System.Data.DataTable table) { throw null; }
Clear()1165         public void Clear() { }
Contains(string name)1166         public bool Contains(string name) { throw null; }
Contains(string name, string tableNamespace)1167         public bool Contains(string name, string tableNamespace) { throw null; }
CopyTo(System.Data.DataTable[] array, int index)1168         public void CopyTo(System.Data.DataTable[] array, int index) { }
IndexOf(System.Data.DataTable table)1169         public int IndexOf(System.Data.DataTable table) { throw null; }
IndexOf(string tableName)1170         public int IndexOf(string tableName) { throw null; }
IndexOf(string tableName, string tableNamespace)1171         public int IndexOf(string tableName, string tableNamespace) { throw null; }
Remove(System.Data.DataTable table)1172         public void Remove(System.Data.DataTable table) { }
Remove(string name)1173         public void Remove(string name) { }
Remove(string name, string tableNamespace)1174         public void Remove(string name, string tableNamespace) { }
RemoveAt(int index)1175         public void RemoveAt(int index) { }
1176     }
1177     public sealed partial class DataTableNewRowEventArgs : System.EventArgs
1178     {
DataTableNewRowEventArgs(System.Data.DataRow dataRow)1179         public DataTableNewRowEventArgs(System.Data.DataRow dataRow) { }
1180         public System.Data.DataRow Row { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1181     }
DataTableNewRowEventHandler(object sender, System.Data.DataTableNewRowEventArgs e)1182     public delegate void DataTableNewRowEventHandler(object sender, System.Data.DataTableNewRowEventArgs e);
1183     public sealed partial class DataTableReader : System.Data.Common.DbDataReader
1184     {
DataTableReader(System.Data.DataTable dataTable)1185         public DataTableReader(System.Data.DataTable dataTable) { }
DataTableReader(System.Data.DataTable[] dataTables)1186         public DataTableReader(System.Data.DataTable[] dataTables) { }
1187         public override int Depth { get { throw null; } }
1188         public override int FieldCount { get { throw null; } }
1189         public override bool HasRows { get { throw null; } }
1190         public override bool IsClosed { get { throw null; } }
1191         public override object this[int ordinal] { get { throw null; } }
1192         public override object this[string name] { get { throw null; } }
1193         public override int RecordsAffected { get { throw null; } }
Close()1194         public override void Close() { }
GetBoolean(int ordinal)1195         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)1196         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)1197         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int ordinal)1198         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)1199         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int ordinal)1200         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)1201         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDecimal(int ordinal)1202         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)1203         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()1204         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int ordinal)1205         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)1206         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)1207         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)1208         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)1209         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)1210         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)1211         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)1212         public override int GetOrdinal(string name) { throw null; }
GetProviderSpecificFieldType(int ordinal)1213         public override System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
GetProviderSpecificValue(int ordinal)1214         public override object GetProviderSpecificValue(int ordinal) { throw null; }
GetProviderSpecificValues(object[] values)1215         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()1216         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)1217         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)1218         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)1219         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)1220         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()1221         public override bool NextResult() { throw null; }
Read()1222         public override bool Read() { throw null; }
1223     }
1224     [System.ComponentModel.DefaultEventAttribute("PositionChanged")]
1225     [System.ComponentModel.DefaultPropertyAttribute("Table")]
1226     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
1227     {
DataView()1228         public DataView() { }
DataView(System.Data.DataTable table)1229         public DataView(System.Data.DataTable table) { }
DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState)1230         public DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState) { }
1231         [System.ComponentModel.DefaultValueAttribute(true)]
1232         public bool AllowDelete { get { throw null; } set { } }
1233         [System.ComponentModel.DefaultValueAttribute(true)]
1234         public bool AllowEdit { get { throw null; } set { } }
1235         [System.ComponentModel.DefaultValueAttribute(true)]
1236         public bool AllowNew { get { throw null; } set { } }
1237         [System.ComponentModel.DefaultValueAttribute(false)]
1238         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1239         public bool ApplyDefaultSort { get { throw null; } set { } }
1240         [System.ComponentModel.BrowsableAttribute(false)]
1241         public int Count { get { throw null; } }
1242         [System.ComponentModel.BrowsableAttribute(false)]
1243         public System.Data.DataViewManager DataViewManager { get { throw null; } }
1244         [System.ComponentModel.BrowsableAttribute(false)]
1245         public bool IsInitialized { get { throw null; } }
1246         [System.ComponentModel.BrowsableAttribute(false)]
1247         protected bool IsOpen { get { throw null; } }
1248         public System.Data.DataRowView this[int recordIndex] { get { throw null; } }
1249         [System.ComponentModel.DefaultValueAttribute("")]
1250         public virtual string RowFilter { get { throw null; } set { } }
1251         [System.ComponentModel.DefaultValueAttribute((System.Data.DataViewRowState)(22))]
1252         public System.Data.DataViewRowState RowStateFilter { get { throw null; } set { } }
1253         [System.ComponentModel.DefaultValueAttribute("")]
1254         public string Sort { get { throw null; } set { } }
1255         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1256         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1257         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1258         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1259         object System.Collections.IList.this[int recordIndex] { get { throw null; } set { } }
1260         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1261         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1262         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1263         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1264         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1265         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1266         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1267         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1268         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1269         string System.ComponentModel.IBindingListView.Filter { get { throw null; } set { } }
1270         System.ComponentModel.ListSortDescriptionCollection System.ComponentModel.IBindingListView.SortDescriptions { get { throw null; } }
1271         bool System.ComponentModel.IBindingListView.SupportsAdvancedSorting { get { throw null; } }
1272         bool System.ComponentModel.IBindingListView.SupportsFiltering { get { throw null; } }
1273         [System.ComponentModel.DefaultValueAttribute(null)]
1274         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1275         [System.ComponentModel.TypeConverterAttribute("System.Data.DataTableTypeConverter")]
1276         public System.Data.DataTable Table { get { throw null; } set { } }
1277         public event System.EventHandler Initialized { add { } remove { } }
1278         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
AddNew()1279         public virtual System.Data.DataRowView AddNew() { throw null; }
BeginInit()1280         public void BeginInit() { }
Close()1281         protected void Close() { }
ColumnCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1282         protected virtual void ColumnCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
CopyTo(System.Array array, int index)1283         public void CopyTo(System.Array array, int index) { }
Delete(int index)1284         public void Delete(int index) { }
Dispose(bool disposing)1285         protected override void Dispose(bool disposing) { }
EndInit()1286         public void EndInit() { }
Equals(System.Data.DataView view)1287         public virtual bool Equals(System.Data.DataView view) { throw null; }
Find(object key)1288         public int Find(object key) { throw null; }
Find(object[] key)1289         public int Find(object[] key) { throw null; }
FindRows(object key)1290         public System.Data.DataRowView[] FindRows(object key) { throw null; }
FindRows(object[] key)1291         public System.Data.DataRowView[] FindRows(object[] key) { throw null; }
GetEnumerator()1292         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexListChanged(object sender, System.ComponentModel.ListChangedEventArgs e)1293         protected virtual void IndexListChanged(object sender, System.ComponentModel.ListChangedEventArgs e) { }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1294         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
Open()1295         protected void Open() { }
Reset()1296         protected void Reset() { }
System.Collections.IList.Add(object value)1297         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1298         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1299         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1300         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1301         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1302         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1303         void System.Collections.IList.RemoveAt(int index) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property)1304         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.AddNew()1305         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1306         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key)1307         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property)1308         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.RemoveSort()1309         void System.ComponentModel.IBindingList.RemoveSort() { }
System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts)1310         void System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts) { }
System.ComponentModel.IBindingListView.RemoveFilter()1311         void System.ComponentModel.IBindingListView.RemoveFilter() { }
System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)1312         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)1313         string System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
ToTable()1314         public System.Data.DataTable ToTable() { throw null; }
ToTable(bool distinct, params string[] columnNames)1315         public System.Data.DataTable ToTable(bool distinct, params string[] columnNames) { throw null; }
ToTable(string tableName)1316         public System.Data.DataTable ToTable(string tableName) { throw null; }
ToTable(string tableName, bool distinct, params string[] columnNames)1317         public System.Data.DataTable ToTable(string tableName, bool distinct, params string[] columnNames) { throw null; }
UpdateIndex()1318         protected void UpdateIndex() { }
UpdateIndex(bool force)1319         protected virtual void UpdateIndex(bool force) { }
1320     }
1321     public partial class DataViewManager : System.ComponentModel.MarshalByValueComponent, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList, System.ComponentModel.ITypedList
1322     {
DataViewManager()1323         public DataViewManager() { }
DataViewManager(System.Data.DataSet dataSet)1324         public DataViewManager(System.Data.DataSet dataSet) { }
1325         [System.ComponentModel.DefaultValueAttribute(null)]
1326         public System.Data.DataSet DataSet { get { throw null; } set { } }
1327         public string DataViewSettingCollectionString { get { throw null; } set { } }
1328         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1329         public System.Data.DataViewSettingCollection DataViewSettings { get { throw null; } }
1330         int System.Collections.ICollection.Count { get { throw null; } }
1331         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1332         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1333         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1334         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1335         object System.Collections.IList.this[int index] { get { throw null; } set { } }
1336         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1337         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1338         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1339         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1340         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1341         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1342         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1343         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1344         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1345         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
CreateDataView(System.Data.DataTable table)1346         public System.Data.DataView CreateDataView(System.Data.DataTable table) { throw null; }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1347         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
RelationCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1348         protected virtual void RelationCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)1349         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1350         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1351         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1352         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1353         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1354         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1355         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1356         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1357         void System.Collections.IList.RemoveAt(int index) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property)1358         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.AddNew()1359         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1360         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key)1361         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property)1362         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.RemoveSort()1363         void System.ComponentModel.IBindingList.RemoveSort() { }
System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)1364         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)1365         string System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
TableCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1366         protected virtual void TableCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
1367     }
1368     [System.FlagsAttribute]
1369     public enum DataViewRowState
1370     {
1371         Added = 4,
1372         CurrentRows = 22,
1373         Deleted = 8,
1374         ModifiedCurrent = 16,
1375         ModifiedOriginal = 32,
1376         None = 0,
1377         OriginalRows = 42,
1378         Unchanged = 2,
1379     }
1380     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
1381     public partial class DataViewSetting
1382     {
DataViewSetting()1383         internal DataViewSetting() { }
1384         public bool ApplyDefaultSort { get { throw null; } set { } }
1385         [System.ComponentModel.BrowsableAttribute(false)]
1386         public System.Data.DataViewManager DataViewManager { get { throw null; } }
1387         public string RowFilter { get { throw null; } set { } }
1388         public System.Data.DataViewRowState RowStateFilter { get { throw null; } set { } }
1389         public string Sort { get { throw null; } set { } }
1390         [System.ComponentModel.BrowsableAttribute(false)]
1391         public System.Data.DataTable Table { get { throw null; } }
1392     }
1393     public partial class DataViewSettingCollection : System.Collections.ICollection, System.Collections.IEnumerable
1394     {
DataViewSettingCollection()1395         internal DataViewSettingCollection() { }
1396         [System.ComponentModel.BrowsableAttribute(false)]
1397         public virtual int Count { get { throw null; } }
1398         [System.ComponentModel.BrowsableAttribute(false)]
1399         public bool IsReadOnly { get { throw null; } }
1400         [System.ComponentModel.BrowsableAttribute(false)]
1401         public bool IsSynchronized { get { throw null; } }
1402         public virtual System.Data.DataViewSetting this[System.Data.DataTable table] { get { throw null; } set { } }
1403         public virtual System.Data.DataViewSetting this[int index] { get { throw null; } set { } }
1404         public virtual System.Data.DataViewSetting this[string tableName] { get { throw null; } }
1405         [System.ComponentModel.BrowsableAttribute(false)]
1406         public object SyncRoot { get { throw null; } }
CopyTo(System.Array ar, int index)1407         public void CopyTo(System.Array ar, int index) { }
CopyTo(System.Data.DataViewSetting[] ar, int index)1408         public void CopyTo(System.Data.DataViewSetting[] ar, int index) { }
GetEnumerator()1409         public System.Collections.IEnumerator GetEnumerator() { throw null; }
1410     }
1411     [System.SerializableAttribute]
1412     public sealed partial class DBConcurrencyException : System.SystemException
1413     {
DBConcurrencyException()1414         public DBConcurrencyException() { }
DBConcurrencyException(string message)1415         public DBConcurrencyException(string message) { }
DBConcurrencyException(string message, System.Exception inner)1416         public DBConcurrencyException(string message, System.Exception inner) { }
DBConcurrencyException(string message, System.Exception inner, System.Data.DataRow[] dataRows)1417         public DBConcurrencyException(string message, System.Exception inner, System.Data.DataRow[] dataRows) { }
1418         public System.Data.DataRow Row { get { throw null; } set { } }
1419         public int RowCount { get { throw null; } }
CopyToRows(System.Data.DataRow[] array)1420         public void CopyToRows(System.Data.DataRow[] array) { }
CopyToRows(System.Data.DataRow[] array, int arrayIndex)1421         public void CopyToRows(System.Data.DataRow[] array, int arrayIndex) { }
GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)1422         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
1423     }
1424     public enum DbType
1425     {
1426         AnsiString = 0,
1427         AnsiStringFixedLength = 22,
1428         Binary = 1,
1429         Boolean = 3,
1430         Byte = 2,
1431         Currency = 4,
1432         Date = 5,
1433         DateTime = 6,
1434         DateTime2 = 26,
1435         DateTimeOffset = 27,
1436         Decimal = 7,
1437         Double = 8,
1438         Guid = 9,
1439         Int16 = 10,
1440         Int32 = 11,
1441         Int64 = 12,
1442         Object = 13,
1443         SByte = 14,
1444         Single = 15,
1445         String = 16,
1446         StringFixedLength = 23,
1447         Time = 17,
1448         UInt16 = 18,
1449         UInt32 = 19,
1450         UInt64 = 20,
1451         VarNumeric = 21,
1452         Xml = 25,
1453     }
1454     [System.SerializableAttribute]
1455     public partial class DeletedRowInaccessibleException : System.Data.DataException
1456     {
DeletedRowInaccessibleException()1457         public DeletedRowInaccessibleException() { }
DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1458         protected DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DeletedRowInaccessibleException(string s)1459         public DeletedRowInaccessibleException(string s) { }
DeletedRowInaccessibleException(string message, System.Exception innerException)1460         public DeletedRowInaccessibleException(string message, System.Exception innerException) { }
1461     }
1462     [System.SerializableAttribute]
1463     public partial class DuplicateNameException : System.Data.DataException
1464     {
DuplicateNameException()1465         public DuplicateNameException() { }
DuplicateNameException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1466         protected DuplicateNameException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DuplicateNameException(string s)1467         public DuplicateNameException(string s) { }
DuplicateNameException(string message, System.Exception innerException)1468         public DuplicateNameException(string message, System.Exception innerException) { }
1469     }
1470     [System.SerializableAttribute]
1471     public partial class EvaluateException : System.Data.InvalidExpressionException
1472     {
EvaluateException()1473         public EvaluateException() { }
EvaluateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1474         protected EvaluateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
EvaluateException(string s)1475         public EvaluateException(string s) { }
EvaluateException(string message, System.Exception innerException)1476         public EvaluateException(string message, System.Exception innerException) { }
1477     }
1478     public partial class FillErrorEventArgs : System.EventArgs
1479     {
FillErrorEventArgs(System.Data.DataTable dataTable, object[] values)1480         public FillErrorEventArgs(System.Data.DataTable dataTable, object[] values) { }
1481         public bool Continue { get { throw null; } set { } }
1482         public System.Data.DataTable DataTable { get { throw null; } }
1483         public System.Exception Errors { get { throw null; } set { } }
1484         public object[] Values { get { throw null; } }
1485     }
FillErrorEventHandler(object sender, System.Data.FillErrorEventArgs e)1486     public delegate void FillErrorEventHandler(object sender, System.Data.FillErrorEventArgs e);
1487     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
1488     public partial class ForeignKeyConstraint : System.Data.Constraint
1489     {
ForeignKeyConstraint(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)1490         public ForeignKeyConstraint(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
ForeignKeyConstraint(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)1491         public ForeignKeyConstraint(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
ForeignKeyConstraint(string constraintName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)1492         public ForeignKeyConstraint(string constraintName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
ForeignKeyConstraint(string constraintName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)1493         public ForeignKeyConstraint(string constraintName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
1494         [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)1495         public ForeignKeyConstraint(string constraintName, string parentTableName, string parentTableNamespace, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule) { }
1496         [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)1497         public ForeignKeyConstraint(string constraintName, string parentTableName, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule) { }
1498         [System.ComponentModel.DefaultValueAttribute((System.Data.AcceptRejectRule)(0))]
1499         public virtual System.Data.AcceptRejectRule AcceptRejectRule { get { throw null; } set { } }
1500         [System.ComponentModel.ReadOnlyAttribute(true)]
1501         public virtual System.Data.DataColumn[] Columns { get { throw null; } }
1502         [System.ComponentModel.DefaultValueAttribute((System.Data.Rule)(1))]
1503         public virtual System.Data.Rule DeleteRule { get { throw null; } set { } }
1504         [System.ComponentModel.ReadOnlyAttribute(true)]
1505         public virtual System.Data.DataColumn[] RelatedColumns { get { throw null; } }
1506         [System.ComponentModel.ReadOnlyAttribute(true)]
1507         public virtual System.Data.DataTable RelatedTable { get { throw null; } }
1508         [System.ComponentModel.ReadOnlyAttribute(true)]
1509         public override System.Data.DataTable Table { get { throw null; } }
1510         [System.ComponentModel.DefaultValueAttribute((System.Data.Rule)(1))]
1511         public virtual System.Data.Rule UpdateRule { get { throw null; } set { } }
Equals(object key)1512         public override bool Equals(object key) { throw null; }
GetHashCode()1513         public override int GetHashCode() { throw null; }
1514     }
1515     public partial interface IColumnMapping
1516     {
1517         string DataSetColumn { get; set; }
1518         string SourceColumn { get; set; }
1519     }
1520     public partial interface IColumnMappingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1521     {
1522         object this[string index] { get; set; }
Add(string sourceColumnName, string dataSetColumnName)1523         System.Data.IColumnMapping Add(string sourceColumnName, string dataSetColumnName);
Contains(string sourceColumnName)1524         bool Contains(string sourceColumnName);
GetByDataSetColumn(string dataSetColumnName)1525         System.Data.IColumnMapping GetByDataSetColumn(string dataSetColumnName);
IndexOf(string sourceColumnName)1526         int IndexOf(string sourceColumnName);
RemoveAt(string sourceColumnName)1527         void RemoveAt(string sourceColumnName);
1528     }
1529     public partial interface IDataAdapter
1530     {
1531         System.Data.MissingMappingAction MissingMappingAction { get; set; }
1532         System.Data.MissingSchemaAction MissingSchemaAction { get; set; }
1533         System.Data.ITableMappingCollection TableMappings { get; }
Fill(System.Data.DataSet dataSet)1534         int Fill(System.Data.DataSet dataSet);
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)1535         System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType);
GetFillParameters()1536         System.Data.IDataParameter[] GetFillParameters();
Update(System.Data.DataSet dataSet)1537         int Update(System.Data.DataSet dataSet);
1538     }
1539     public partial interface IDataParameter
1540     {
1541         System.Data.DbType DbType { get; set; }
1542         System.Data.ParameterDirection Direction { get; set; }
1543         bool IsNullable { get; }
1544         string ParameterName { get; set; }
1545         string SourceColumn { get; set; }
1546         System.Data.DataRowVersion SourceVersion { get; set; }
1547         object Value { get; set; }
1548     }
1549     public partial interface IDataParameterCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1550     {
1551         object this[string parameterName] { get; set; }
Contains(string parameterName)1552         bool Contains(string parameterName);
IndexOf(string parameterName)1553         int IndexOf(string parameterName);
RemoveAt(string parameterName)1554         void RemoveAt(string parameterName);
1555     }
1556     public partial interface IDataReader : System.Data.IDataRecord, System.IDisposable
1557     {
1558         int Depth { get; }
1559         bool IsClosed { get; }
1560         int RecordsAffected { get; }
Close()1561         void Close();
GetSchemaTable()1562         System.Data.DataTable GetSchemaTable();
NextResult()1563         bool NextResult();
Read()1564         bool Read();
1565     }
1566     public partial interface IDataRecord
1567     {
1568         int FieldCount { get; }
1569         object this[int i] { get; }
1570         object this[string name] { get; }
GetBoolean(int i)1571         bool GetBoolean(int i);
GetByte(int i)1572         byte GetByte(int i);
GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length)1573         long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length);
GetChar(int i)1574         char GetChar(int i);
GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length)1575         long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length);
GetData(int i)1576         System.Data.IDataReader GetData(int i);
GetDataTypeName(int i)1577         string GetDataTypeName(int i);
GetDateTime(int i)1578         System.DateTime GetDateTime(int i);
GetDecimal(int i)1579         decimal GetDecimal(int i);
GetDouble(int i)1580         double GetDouble(int i);
GetFieldType(int i)1581         System.Type GetFieldType(int i);
GetFloat(int i)1582         float GetFloat(int i);
GetGuid(int i)1583         System.Guid GetGuid(int i);
GetInt16(int i)1584         short GetInt16(int i);
GetInt32(int i)1585         int GetInt32(int i);
GetInt64(int i)1586         long GetInt64(int i);
GetName(int i)1587         string GetName(int i);
GetOrdinal(string name)1588         int GetOrdinal(string name);
GetString(int i)1589         string GetString(int i);
GetValue(int i)1590         object GetValue(int i);
GetValues(object[] values)1591         int GetValues(object[] values);
IsDBNull(int i)1592         bool IsDBNull(int i);
1593     }
1594     public partial interface IDbCommand : System.IDisposable
1595     {
1596         string CommandText { get; set; }
1597         int CommandTimeout { get; set; }
1598         System.Data.CommandType CommandType { get; set; }
1599         System.Data.IDbConnection Connection { get; set; }
1600         System.Data.IDataParameterCollection Parameters { get; }
1601         System.Data.IDbTransaction Transaction { get; set; }
1602         System.Data.UpdateRowSource UpdatedRowSource { get; set; }
Cancel()1603         void Cancel();
CreateParameter()1604         System.Data.IDbDataParameter CreateParameter();
ExecuteNonQuery()1605         int ExecuteNonQuery();
ExecuteReader()1606         System.Data.IDataReader ExecuteReader();
ExecuteReader(System.Data.CommandBehavior behavior)1607         System.Data.IDataReader ExecuteReader(System.Data.CommandBehavior behavior);
ExecuteScalar()1608         object ExecuteScalar();
Prepare()1609         void Prepare();
1610     }
1611     public partial interface IDbConnection : System.IDisposable
1612     {
1613         string ConnectionString { get; set; }
1614         int ConnectionTimeout { get; }
1615         string Database { get; }
1616         System.Data.ConnectionState State { get; }
BeginTransaction()1617         System.Data.IDbTransaction BeginTransaction();
BeginTransaction(System.Data.IsolationLevel il)1618         System.Data.IDbTransaction BeginTransaction(System.Data.IsolationLevel il);
ChangeDatabase(string databaseName)1619         void ChangeDatabase(string databaseName);
Close()1620         void Close();
CreateCommand()1621         System.Data.IDbCommand CreateCommand();
Open()1622         void Open();
1623     }
1624     public partial interface IDbDataAdapter : System.Data.IDataAdapter
1625     {
1626         System.Data.IDbCommand DeleteCommand { get; set; }
1627         System.Data.IDbCommand InsertCommand { get; set; }
1628         System.Data.IDbCommand SelectCommand { get; set; }
1629         System.Data.IDbCommand UpdateCommand { get; set; }
1630     }
1631     public partial interface IDbDataParameter : System.Data.IDataParameter
1632     {
1633         byte Precision { get; set; }
1634         byte Scale { get; set; }
1635         int Size { get; set; }
1636     }
1637     public partial interface IDbTransaction : System.IDisposable
1638     {
1639         System.Data.IDbConnection Connection { get; }
1640         System.Data.IsolationLevel IsolationLevel { get; }
Commit()1641         void Commit();
Rollback()1642         void Rollback();
1643     }
1644     [System.SerializableAttribute]
1645     public partial class InRowChangingEventException : System.Data.DataException
1646     {
InRowChangingEventException()1647         public InRowChangingEventException() { }
InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1648         protected InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InRowChangingEventException(string s)1649         public InRowChangingEventException(string s) { }
InRowChangingEventException(string message, System.Exception innerException)1650         public InRowChangingEventException(string message, System.Exception innerException) { }
1651     }
1652     public partial class InternalDataCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable
1653     {
InternalDataCollectionBase()1654         public InternalDataCollectionBase() { }
1655         [System.ComponentModel.BrowsableAttribute(false)]
1656         public virtual int Count { get { throw null; } }
1657         [System.ComponentModel.BrowsableAttribute(false)]
1658         public bool IsReadOnly { get { throw null; } }
1659         [System.ComponentModel.BrowsableAttribute(false)]
1660         public bool IsSynchronized { get { throw null; } }
1661         protected virtual System.Collections.ArrayList List { get { throw null; } }
1662         [System.ComponentModel.BrowsableAttribute(false)]
1663         public object SyncRoot { get { throw null; } }
CopyTo(System.Array ar, int index)1664         public virtual void CopyTo(System.Array ar, int index) { }
GetEnumerator()1665         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
1666     }
1667     [System.SerializableAttribute]
1668     public partial class InvalidConstraintException : System.Data.DataException
1669     {
InvalidConstraintException()1670         public InvalidConstraintException() { }
InvalidConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1671         protected InvalidConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidConstraintException(string s)1672         public InvalidConstraintException(string s) { }
InvalidConstraintException(string message, System.Exception innerException)1673         public InvalidConstraintException(string message, System.Exception innerException) { }
1674     }
1675     [System.SerializableAttribute]
1676     public partial class InvalidExpressionException : System.Data.DataException
1677     {
InvalidExpressionException()1678         public InvalidExpressionException() { }
InvalidExpressionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1679         protected InvalidExpressionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidExpressionException(string s)1680         public InvalidExpressionException(string s) { }
InvalidExpressionException(string message, System.Exception innerException)1681         public InvalidExpressionException(string message, System.Exception innerException) { }
1682     }
1683     public enum IsolationLevel
1684     {
1685         Chaos = 16,
1686         ReadCommitted = 4096,
1687         ReadUncommitted = 256,
1688         RepeatableRead = 65536,
1689         Serializable = 1048576,
1690         Snapshot = 16777216,
1691         Unspecified = -1,
1692     }
1693     public partial interface ITableMapping
1694     {
1695         System.Data.IColumnMappingCollection ColumnMappings { get; }
1696         string DataSetTable { get; set; }
1697         string SourceTable { get; set; }
1698     }
1699     public partial interface ITableMappingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1700     {
1701         object this[string index] { get; set; }
Add(string sourceTableName, string dataSetTableName)1702         System.Data.ITableMapping Add(string sourceTableName, string dataSetTableName);
Contains(string sourceTableName)1703         bool Contains(string sourceTableName);
GetByDataSetTable(string dataSetTableName)1704         System.Data.ITableMapping GetByDataSetTable(string dataSetTableName);
IndexOf(string sourceTableName)1705         int IndexOf(string sourceTableName);
RemoveAt(string sourceTableName)1706         void RemoveAt(string sourceTableName);
1707     }
1708     [System.SerializableAttribute]
1709     public enum KeyRestrictionBehavior
1710     {
1711         AllowOnly = 0,
1712         PreventUsage = 1,
1713     }
1714     public enum LoadOption
1715     {
1716         OverwriteChanges = 1,
1717         PreserveChanges = 2,
1718         Upsert = 3,
1719     }
1720     [System.SerializableAttribute]
1721     public enum MappingType
1722     {
1723         Attribute = 2,
1724         Element = 1,
1725         Hidden = 4,
1726         SimpleContent = 3,
1727     }
1728     public partial class MergeFailedEventArgs : System.EventArgs
1729     {
MergeFailedEventArgs(System.Data.DataTable table, string conflict)1730         public MergeFailedEventArgs(System.Data.DataTable table, string conflict) { }
1731         public string Conflict { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1732         public System.Data.DataTable Table { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1733     }
MergeFailedEventHandler(object sender, System.Data.MergeFailedEventArgs e)1734     public delegate void MergeFailedEventHandler(object sender, System.Data.MergeFailedEventArgs e);
1735     public enum MissingMappingAction
1736     {
1737         Error = 3,
1738         Ignore = 2,
1739         Passthrough = 1,
1740     }
1741     [System.SerializableAttribute]
1742     public partial class MissingPrimaryKeyException : System.Data.DataException
1743     {
MissingPrimaryKeyException()1744         public MissingPrimaryKeyException() { }
MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1745         protected MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
MissingPrimaryKeyException(string s)1746         public MissingPrimaryKeyException(string s) { }
MissingPrimaryKeyException(string message, System.Exception innerException)1747         public MissingPrimaryKeyException(string message, System.Exception innerException) { }
1748     }
1749     public enum MissingSchemaAction
1750     {
1751         Add = 1,
1752         AddWithKey = 4,
1753         Error = 3,
1754         Ignore = 2,
1755     }
1756     [System.SerializableAttribute]
1757     public partial class NoNullAllowedException : System.Data.DataException
1758     {
NoNullAllowedException()1759         public NoNullAllowedException() { }
NoNullAllowedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1760         protected NoNullAllowedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
NoNullAllowedException(string s)1761         public NoNullAllowedException(string s) { }
NoNullAllowedException(string message, System.Exception innerException)1762         public NoNullAllowedException(string message, System.Exception innerException) { }
1763     }
1764     [System.SerializableAttribute]
1765     public sealed partial class OperationAbortedException : System.SystemException
1766     {
OperationAbortedException()1767         internal OperationAbortedException() { }
1768     }
1769     public enum ParameterDirection
1770     {
1771         Input = 1,
1772         InputOutput = 3,
1773         Output = 2,
1774         ReturnValue = 6,
1775     }
1776     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1777     [System.FlagsAttribute]
1778     [System.ObsoleteAttribute("PropertyAttributes has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202")]
1779     public enum PropertyAttributes
1780     {
1781         NotSupported = 0,
1782         Optional = 2,
1783         Read = 512,
1784         Required = 1,
1785         Write = 1024,
1786     }
1787     [System.SerializableAttribute]
1788     public partial class PropertyCollection : System.Collections.Hashtable
1789     {
PropertyCollection()1790         public PropertyCollection() { }
PropertyCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1791         protected PropertyCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Clone()1792         public override object Clone() { throw null; }
1793     }
1794     [System.SerializableAttribute]
1795     public partial class ReadOnlyException : System.Data.DataException
1796     {
ReadOnlyException()1797         public ReadOnlyException() { }
ReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1798         protected ReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ReadOnlyException(string s)1799         public ReadOnlyException(string s) { }
ReadOnlyException(string message, System.Exception innerException)1800         public ReadOnlyException(string message, System.Exception innerException) { }
1801     }
1802     [System.SerializableAttribute]
1803     public partial class RowNotInTableException : System.Data.DataException
1804     {
RowNotInTableException()1805         public RowNotInTableException() { }
RowNotInTableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1806         protected RowNotInTableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
RowNotInTableException(string s)1807         public RowNotInTableException(string s) { }
RowNotInTableException(string message, System.Exception innerException)1808         public RowNotInTableException(string message, System.Exception innerException) { }
1809     }
1810     public enum Rule
1811     {
1812         Cascade = 1,
1813         None = 0,
1814         SetDefault = 3,
1815         SetNull = 2,
1816     }
1817     public enum SchemaSerializationMode
1818     {
1819         ExcludeSchema = 2,
1820         IncludeSchema = 1,
1821     }
1822     public enum SchemaType
1823     {
1824         Mapped = 2,
1825         Source = 1,
1826     }
1827     public enum SerializationFormat
1828     {
1829         Binary = 1,
1830         Xml = 0,
1831     }
1832     public enum SqlDbType
1833     {
1834         BigInt = 0,
1835         Binary = 1,
1836         Bit = 2,
1837         Char = 3,
1838         Date = 31,
1839         DateTime = 4,
1840         DateTime2 = 33,
1841         DateTimeOffset = 34,
1842         Decimal = 5,
1843         Float = 6,
1844         Image = 7,
1845         Int = 8,
1846         Money = 9,
1847         NChar = 10,
1848         NText = 11,
1849         NVarChar = 12,
1850         Real = 13,
1851         SmallDateTime = 15,
1852         SmallInt = 16,
1853         SmallMoney = 17,
1854         Structured = 30,
1855         Text = 18,
1856         Time = 32,
1857         Timestamp = 19,
1858         TinyInt = 20,
1859         Udt = 29,
1860         UniqueIdentifier = 14,
1861         VarBinary = 21,
1862         VarChar = 22,
1863         Variant = 23,
1864         Xml = 25,
1865     }
1866     public sealed partial class StateChangeEventArgs : System.EventArgs
1867     {
StateChangeEventArgs(System.Data.ConnectionState originalState, System.Data.ConnectionState currentState)1868         public StateChangeEventArgs(System.Data.ConnectionState originalState, System.Data.ConnectionState currentState) { }
1869         public System.Data.ConnectionState CurrentState { get { throw null; } }
1870         public System.Data.ConnectionState OriginalState { get { throw null; } }
1871     }
StateChangeEventHandler(object sender, System.Data.StateChangeEventArgs e)1872     public delegate void StateChangeEventHandler(object sender, System.Data.StateChangeEventArgs e);
1873     public sealed partial class StatementCompletedEventArgs : System.EventArgs
1874     {
StatementCompletedEventArgs(int recordCount)1875         public StatementCompletedEventArgs(int recordCount) { }
1876         public int RecordCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1877     }
StatementCompletedEventHandler(object sender, System.Data.StatementCompletedEventArgs e)1878     public delegate void StatementCompletedEventHandler(object sender, System.Data.StatementCompletedEventArgs e);
1879     public enum StatementType
1880     {
1881         Batch = 4,
1882         Delete = 3,
1883         Insert = 1,
1884         Select = 0,
1885         Update = 2,
1886     }
1887     [System.SerializableAttribute]
1888     public partial class StrongTypingException : System.Data.DataException
1889     {
StrongTypingException()1890         public StrongTypingException() { }
StrongTypingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1891         protected StrongTypingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
StrongTypingException(string message)1892         public StrongTypingException(string message) { }
StrongTypingException(string s, System.Exception innerException)1893         public StrongTypingException(string s, System.Exception innerException) { }
1894     }
1895     [System.SerializableAttribute]
1896     public partial class SyntaxErrorException : System.Data.InvalidExpressionException
1897     {
SyntaxErrorException()1898         public SyntaxErrorException() { }
SyntaxErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1899         protected SyntaxErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SyntaxErrorException(string s)1900         public SyntaxErrorException(string s) { }
SyntaxErrorException(string message, System.Exception innerException)1901         public SyntaxErrorException(string message, System.Exception innerException) { }
1902     }
1903     [System.ObsoleteAttribute("TypedDataSetGenerator class will be removed in a future release. Please use System.Data.Design.TypedDataSetGenerator in System.Design.dll.")]
1904     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, Synchronization=true)]
1905     public partial class TypedDataSetGenerator
1906     {
TypedDataSetGenerator()1907         public TypedDataSetGenerator() { }
Generate(System.Data.DataSet dataSet, System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.Compiler.ICodeGenerator codeGen)1908         public static void Generate(System.Data.DataSet dataSet, System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.Compiler.ICodeGenerator codeGen) { }
GenerateIdName(string name, System.CodeDom.Compiler.ICodeGenerator codeGen)1909         public static string GenerateIdName(string name, System.CodeDom.Compiler.ICodeGenerator codeGen) { throw null; }
1910     }
1911     [System.SerializableAttribute]
1912     public partial class TypedDataSetGeneratorException : System.Data.DataException
1913     {
TypedDataSetGeneratorException()1914         public TypedDataSetGeneratorException() { }
TypedDataSetGeneratorException(System.Collections.ArrayList list)1915         public TypedDataSetGeneratorException(System.Collections.ArrayList list) { }
TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1916         protected TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
TypedDataSetGeneratorException(string message)1917         public TypedDataSetGeneratorException(string message) { }
TypedDataSetGeneratorException(string message, System.Exception innerException)1918         public TypedDataSetGeneratorException(string message, System.Exception innerException) { }
1919         public System.Collections.ArrayList ErrorList { get { throw null; } }
1920         [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)1921         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1922     }
1923     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
1924     public partial class UniqueConstraint : System.Data.Constraint
1925     {
UniqueConstraint(System.Data.DataColumn column)1926         public UniqueConstraint(System.Data.DataColumn column) { }
UniqueConstraint(System.Data.DataColumn column, bool isPrimaryKey)1927         public UniqueConstraint(System.Data.DataColumn column, bool isPrimaryKey) { }
UniqueConstraint(System.Data.DataColumn[] columns)1928         public UniqueConstraint(System.Data.DataColumn[] columns) { }
UniqueConstraint(System.Data.DataColumn[] columns, bool isPrimaryKey)1929         public UniqueConstraint(System.Data.DataColumn[] columns, bool isPrimaryKey) { }
UniqueConstraint(string name, System.Data.DataColumn column)1930         public UniqueConstraint(string name, System.Data.DataColumn column) { }
UniqueConstraint(string name, System.Data.DataColumn column, bool isPrimaryKey)1931         public UniqueConstraint(string name, System.Data.DataColumn column, bool isPrimaryKey) { }
UniqueConstraint(string name, System.Data.DataColumn[] columns)1932         public UniqueConstraint(string name, System.Data.DataColumn[] columns) { }
UniqueConstraint(string name, System.Data.DataColumn[] columns, bool isPrimaryKey)1933         public UniqueConstraint(string name, System.Data.DataColumn[] columns, bool isPrimaryKey) { }
1934         [System.ComponentModel.BrowsableAttribute(false)]
UniqueConstraint(string name, string[] columnNames, bool isPrimaryKey)1935         public UniqueConstraint(string name, string[] columnNames, bool isPrimaryKey) { }
1936         [System.ComponentModel.ReadOnlyAttribute(true)]
1937         public virtual System.Data.DataColumn[] Columns { get { throw null; } }
1938         public bool IsPrimaryKey { get { throw null; } }
1939         [System.ComponentModel.ReadOnlyAttribute(true)]
1940         public override System.Data.DataTable Table { get { throw null; } }
Equals(object key2)1941         public override bool Equals(object key2) { throw null; }
GetHashCode()1942         public override int GetHashCode() { throw null; }
1943     }
1944     public enum UpdateRowSource
1945     {
1946         Both = 3,
1947         FirstReturnedRecord = 2,
1948         None = 0,
1949         OutputParameters = 1,
1950     }
1951     public enum UpdateStatus
1952     {
1953         Continue = 0,
1954         ErrorsOccurred = 1,
1955         SkipAllRemainingRows = 3,
1956         SkipCurrentRow = 2,
1957     }
1958     [System.SerializableAttribute]
1959     public partial class VersionNotFoundException : System.Data.DataException
1960     {
VersionNotFoundException()1961         public VersionNotFoundException() { }
VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1962         protected VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
VersionNotFoundException(string s)1963         public VersionNotFoundException(string s) { }
VersionNotFoundException(string message, System.Exception innerException)1964         public VersionNotFoundException(string message, System.Exception innerException) { }
1965     }
1966     public enum XmlReadMode
1967     {
1968         Auto = 0,
1969         DiffGram = 4,
1970         Fragment = 5,
1971         IgnoreSchema = 2,
1972         InferSchema = 3,
1973         InferTypedSchema = 6,
1974         ReadSchema = 1,
1975     }
1976     public enum XmlWriteMode
1977     {
1978         DiffGram = 2,
1979         IgnoreSchema = 1,
1980         WriteSchema = 0,
1981     }
1982 }
1983 namespace System.Data.Common
1984 {
1985     public enum CatalogLocation
1986     {
1987         End = 2,
1988         Start = 1,
1989     }
1990     public partial class DataAdapter : System.ComponentModel.Component, System.Data.IDataAdapter
1991     {
DataAdapter()1992         protected DataAdapter() { }
DataAdapter(System.Data.Common.DataAdapter from)1993         protected DataAdapter(System.Data.Common.DataAdapter from) { }
1994         [System.ComponentModel.DefaultValueAttribute(true)]
1995         public bool AcceptChangesDuringFill { get { throw null; } set { } }
1996         [System.ComponentModel.DefaultValueAttribute(true)]
1997         public bool AcceptChangesDuringUpdate { get { throw null; } set { } }
1998         [System.ComponentModel.DefaultValueAttribute(false)]
1999         public bool ContinueUpdateOnError { get { throw null; } set { } }
2000         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2001         public System.Data.LoadOption FillLoadOption { get { throw null; } set { } }
2002         [System.ComponentModel.DefaultValueAttribute((System.Data.MissingMappingAction)(1))]
2003         public System.Data.MissingMappingAction MissingMappingAction { get { throw null; } set { } }
2004         [System.ComponentModel.DefaultValueAttribute((System.Data.MissingSchemaAction)(1))]
2005         public System.Data.MissingSchemaAction MissingSchemaAction { get { throw null; } set { } }
2006         [System.ComponentModel.DefaultValueAttribute(false)]
2007         public virtual bool ReturnProviderSpecificTypes { get { throw null; } set { } }
2008         System.Data.ITableMappingCollection System.Data.IDataAdapter.TableMappings { get { throw null; } }
2009         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
2010         public System.Data.Common.DataTableMappingCollection TableMappings { get { throw null; } }
2011         public event System.Data.FillErrorEventHandler FillError { add { } remove { } }
2012         [System.ObsoleteAttribute("CloneInternals() has been deprecated.  Use the DataAdapter(DataAdapter from) constructor.  http://go.microsoft.com/fwlink/?linkid=14202")]
CloneInternals()2013         protected virtual System.Data.Common.DataAdapter CloneInternals() { throw null; }
CreateTableMappings()2014         protected virtual System.Data.Common.DataTableMappingCollection CreateTableMappings() { throw null; }
Dispose(bool disposing)2015         protected override void Dispose(bool disposing) { }
Fill(System.Data.DataSet dataSet)2016         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)2017         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)2018         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)2019         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)2020         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)2021         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)2022         protected virtual System.Data.DataTable FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType, System.Data.IDataReader dataReader) { throw null; }
2023         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetFillParameters()2024         public virtual System.Data.IDataParameter[] GetFillParameters() { throw null; }
HasTableMappings()2025         protected bool HasTableMappings() { throw null; }
OnFillError(System.Data.FillErrorEventArgs value)2026         protected virtual void OnFillError(System.Data.FillErrorEventArgs value) { }
2027         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ResetFillLoadOption()2028         public void ResetFillLoadOption() { }
2029         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeAcceptChangesDuringFill()2030         public virtual bool ShouldSerializeAcceptChangesDuringFill() { throw null; }
2031         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeFillLoadOption()2032         public virtual bool ShouldSerializeFillLoadOption() { throw null; }
ShouldSerializeTableMappings()2033         protected virtual bool ShouldSerializeTableMappings() { throw null; }
Update(System.Data.DataSet dataSet)2034         public virtual int Update(System.Data.DataSet dataSet) { throw null; }
2035     }
2036     [System.ComponentModel.TypeConverterAttribute("System.Data.Common.DataColumnMapping.DataColumnMappingConverter")]
2037     public sealed partial class DataColumnMapping : System.MarshalByRefObject, System.Data.IColumnMapping, System.ICloneable
2038     {
DataColumnMapping()2039         public DataColumnMapping() { }
DataColumnMapping(string sourceColumn, string dataSetColumn)2040         public DataColumnMapping(string sourceColumn, string dataSetColumn) { }
2041         [System.ComponentModel.DefaultValueAttribute("")]
2042         public string DataSetColumn { get { throw null; } set { } }
2043         [System.ComponentModel.DefaultValueAttribute("")]
2044         public string SourceColumn { get { throw null; } set { } }
2045         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumnBySchemaAction(System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction)2046         public System.Data.DataColumn GetDataColumnBySchemaAction(System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction) { throw null; }
2047         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumnBySchemaAction(string sourceColumn, string dataSetColumn, System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction)2048         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()2049         object System.ICloneable.Clone() { throw null; }
ToString()2050         public override string ToString() { throw null; }
2051     }
2052     public sealed partial class DataColumnMappingCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IColumnMappingCollection
2053     {
DataColumnMappingCollection()2054         public DataColumnMappingCollection() { }
2055         [System.ComponentModel.BrowsableAttribute(false)]
2056         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2057         public int Count { get { throw null; } }
2058         [System.ComponentModel.BrowsableAttribute(false)]
2059         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2060         public System.Data.Common.DataColumnMapping this[int index] { get { throw null; } set { } }
2061         [System.ComponentModel.BrowsableAttribute(false)]
2062         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2063         public System.Data.Common.DataColumnMapping this[string sourceColumn] { get { throw null; } set { } }
2064         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2065         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2066         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2067         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2068         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2069         object System.Data.IColumnMappingCollection.this[string index] { get { throw null; } set { } }
Add(object value)2070         public int Add(object value) { throw null; }
Add(string sourceColumn, string dataSetColumn)2071         public System.Data.Common.DataColumnMapping Add(string sourceColumn, string dataSetColumn) { throw null; }
AddRange(System.Array values)2072         public void AddRange(System.Array values) { }
AddRange(System.Data.Common.DataColumnMapping[] values)2073         public void AddRange(System.Data.Common.DataColumnMapping[] values) { }
Clear()2074         public void Clear() { }
Contains(object value)2075         public bool Contains(object value) { throw null; }
Contains(string value)2076         public bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)2077         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Common.DataColumnMapping[] array, int index)2078         public void CopyTo(System.Data.Common.DataColumnMapping[] array, int index) { }
GetByDataSetColumn(string value)2079         public System.Data.Common.DataColumnMapping GetByDataSetColumn(string value) { throw null; }
2080         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Data.MissingMappingAction mappingAction)2081         public static System.Data.Common.DataColumnMapping GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Data.MissingMappingAction mappingAction) { throw null; }
2082         [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)2083         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()2084         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(object value)2085         public int IndexOf(object value) { throw null; }
IndexOf(string sourceColumn)2086         public int IndexOf(string sourceColumn) { throw null; }
IndexOfDataSetColumn(string dataSetColumn)2087         public int IndexOfDataSetColumn(string dataSetColumn) { throw null; }
Insert(int index, System.Data.Common.DataColumnMapping value)2088         public void Insert(int index, System.Data.Common.DataColumnMapping value) { }
Insert(int index, object value)2089         public void Insert(int index, object value) { }
Remove(System.Data.Common.DataColumnMapping value)2090         public void Remove(System.Data.Common.DataColumnMapping value) { }
Remove(object value)2091         public void Remove(object value) { }
RemoveAt(int index)2092         public void RemoveAt(int index) { }
RemoveAt(string sourceColumn)2093         public void RemoveAt(string sourceColumn) { }
System.Data.IColumnMappingCollection.Add(string sourceColumnName, string dataSetColumnName)2094         System.Data.IColumnMapping System.Data.IColumnMappingCollection.Add(string sourceColumnName, string dataSetColumnName) { throw null; }
System.Data.IColumnMappingCollection.GetByDataSetColumn(string dataSetColumnName)2095         System.Data.IColumnMapping System.Data.IColumnMappingCollection.GetByDataSetColumn(string dataSetColumnName) { throw null; }
2096     }
2097     [System.ComponentModel.TypeConverterAttribute("System.Data.Common.DataTableMapping.DataTableMappingConverter")]
2098     public sealed partial class DataTableMapping : System.MarshalByRefObject, System.Data.ITableMapping, System.ICloneable
2099     {
DataTableMapping()2100         public DataTableMapping() { }
DataTableMapping(string sourceTable, string dataSetTable)2101         public DataTableMapping(string sourceTable, string dataSetTable) { }
DataTableMapping(string sourceTable, string dataSetTable, System.Data.Common.DataColumnMapping[] columnMappings)2102         public DataTableMapping(string sourceTable, string dataSetTable, System.Data.Common.DataColumnMapping[] columnMappings) { }
2103         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
2104         public System.Data.Common.DataColumnMappingCollection ColumnMappings { get { throw null; } }
2105         [System.ComponentModel.DefaultValueAttribute("")]
2106         public string DataSetTable { get { throw null; } set { } }
2107         [System.ComponentModel.DefaultValueAttribute("")]
2108         public string SourceTable { get { throw null; } set { } }
2109         System.Data.IColumnMappingCollection System.Data.ITableMapping.ColumnMappings { get { throw null; } }
2110         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetColumnMappingBySchemaAction(string sourceColumn, System.Data.MissingMappingAction mappingAction)2111         public System.Data.Common.DataColumnMapping GetColumnMappingBySchemaAction(string sourceColumn, System.Data.MissingMappingAction mappingAction) { throw null; }
2112         [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)2113         public System.Data.DataColumn GetDataColumn(string sourceColumn, System.Type dataType, System.Data.DataTable dataTable, System.Data.MissingMappingAction mappingAction, System.Data.MissingSchemaAction schemaAction) { throw null; }
2114         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataTableBySchemaAction(System.Data.DataSet dataSet, System.Data.MissingSchemaAction schemaAction)2115         public System.Data.DataTable GetDataTableBySchemaAction(System.Data.DataSet dataSet, System.Data.MissingSchemaAction schemaAction) { throw null; }
System.ICloneable.Clone()2116         object System.ICloneable.Clone() { throw null; }
ToString()2117         public override string ToString() { throw null; }
2118     }
2119     [System.ComponentModel.ListBindableAttribute(false)]
2120     public sealed partial class DataTableMappingCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.ITableMappingCollection
2121     {
DataTableMappingCollection()2122         public DataTableMappingCollection() { }
2123         [System.ComponentModel.BrowsableAttribute(false)]
2124         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2125         public int Count { get { throw null; } }
2126         [System.ComponentModel.BrowsableAttribute(false)]
2127         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2128         public System.Data.Common.DataTableMapping this[int index] { get { throw null; } set { } }
2129         [System.ComponentModel.BrowsableAttribute(false)]
2130         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2131         public System.Data.Common.DataTableMapping this[string sourceTable] { get { throw null; } set { } }
2132         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2133         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2134         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2135         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2136         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2137         object System.Data.ITableMappingCollection.this[string index] { get { throw null; } set { } }
Add(object value)2138         public int Add(object value) { throw null; }
Add(string sourceTable, string dataSetTable)2139         public System.Data.Common.DataTableMapping Add(string sourceTable, string dataSetTable) { throw null; }
AddRange(System.Array values)2140         public void AddRange(System.Array values) { }
AddRange(System.Data.Common.DataTableMapping[] values)2141         public void AddRange(System.Data.Common.DataTableMapping[] values) { }
Clear()2142         public void Clear() { }
Contains(object value)2143         public bool Contains(object value) { throw null; }
Contains(string value)2144         public bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)2145         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Common.DataTableMapping[] array, int index)2146         public void CopyTo(System.Data.Common.DataTableMapping[] array, int index) { }
GetByDataSetTable(string dataSetTable)2147         public System.Data.Common.DataTableMapping GetByDataSetTable(string dataSetTable) { throw null; }
GetEnumerator()2148         public System.Collections.IEnumerator GetEnumerator() { throw null; }
2149         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection tableMappings, string sourceTable, string dataSetTable, System.Data.MissingMappingAction mappingAction)2150         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)2151         public int IndexOf(object value) { throw null; }
IndexOf(string sourceTable)2152         public int IndexOf(string sourceTable) { throw null; }
IndexOfDataSetTable(string dataSetTable)2153         public int IndexOfDataSetTable(string dataSetTable) { throw null; }
Insert(int index, System.Data.Common.DataTableMapping value)2154         public void Insert(int index, System.Data.Common.DataTableMapping value) { }
Insert(int index, object value)2155         public void Insert(int index, object value) { }
Remove(System.Data.Common.DataTableMapping value)2156         public void Remove(System.Data.Common.DataTableMapping value) { }
Remove(object value)2157         public void Remove(object value) { }
RemoveAt(int index)2158         public void RemoveAt(int index) { }
RemoveAt(string sourceTable)2159         public void RemoveAt(string sourceTable) { }
System.Data.ITableMappingCollection.Add(string sourceTableName, string dataSetTableName)2160         System.Data.ITableMapping System.Data.ITableMappingCollection.Add(string sourceTableName, string dataSetTableName) { throw null; }
System.Data.ITableMappingCollection.GetByDataSetTable(string dataSetTableName)2161         System.Data.ITableMapping System.Data.ITableMappingCollection.GetByDataSetTable(string dataSetTableName) { throw null; }
2162     }
2163     public abstract partial class DbCommand : System.ComponentModel.Component, System.Data.IDbCommand, System.IDisposable
2164     {
DbCommand()2165         protected DbCommand() { }
2166         [System.ComponentModel.DefaultValueAttribute("")]
2167         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2168         public abstract string CommandText { get; set; }
2169         public abstract int CommandTimeout { get; set; }
2170         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
2171         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2172         public abstract System.Data.CommandType CommandType { get; set; }
2173         [System.ComponentModel.BrowsableAttribute(false)]
2174         [System.ComponentModel.DefaultValueAttribute(null)]
2175         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2176         public System.Data.Common.DbConnection Connection { get { throw null; } set { } }
2177         protected abstract System.Data.Common.DbConnection DbConnection { get; set; }
2178         protected abstract System.Data.Common.DbParameterCollection DbParameterCollection { get; }
2179         protected abstract System.Data.Common.DbTransaction DbTransaction { get; set; }
2180         [System.ComponentModel.BrowsableAttribute(false)]
2181         [System.ComponentModel.DefaultValueAttribute(true)]
2182         [System.ComponentModel.DesignOnlyAttribute(true)]
2183         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2184         public abstract bool DesignTimeVisible { get; set; }
2185         [System.ComponentModel.BrowsableAttribute(false)]
2186         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2187         public System.Data.Common.DbParameterCollection Parameters { get { throw null; } }
2188         System.Data.IDbConnection System.Data.IDbCommand.Connection { get { throw null; } set { } }
2189         System.Data.IDataParameterCollection System.Data.IDbCommand.Parameters { get { throw null; } }
2190         System.Data.IDbTransaction System.Data.IDbCommand.Transaction { get { throw null; } set { } }
2191         [System.ComponentModel.BrowsableAttribute(false)]
2192         [System.ComponentModel.DefaultValueAttribute(null)]
2193         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2194         public System.Data.Common.DbTransaction Transaction { get { throw null; } set { } }
2195         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
2196         public abstract System.Data.UpdateRowSource UpdatedRowSource { get; set; }
Cancel()2197         public abstract void Cancel();
CreateDbParameter()2198         protected abstract System.Data.Common.DbParameter CreateDbParameter();
CreateParameter()2199         public System.Data.Common.DbParameter CreateParameter() { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2200         protected abstract System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior);
ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)2201         protected virtual System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteNonQuery()2202         public abstract int ExecuteNonQuery();
ExecuteNonQueryAsync()2203         public System.Threading.Tasks.Task<int> ExecuteNonQueryAsync() { throw null; }
ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken)2204         public virtual System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReader()2205         public System.Data.Common.DbDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2206         public System.Data.Common.DbDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync()2207         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync() { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior)2208         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)2209         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)2210         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteScalar()2211         public abstract object ExecuteScalar();
ExecuteScalarAsync()2212         public System.Threading.Tasks.Task<object> ExecuteScalarAsync() { throw null; }
ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken)2213         public virtual System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Prepare()2214         public abstract void Prepare();
System.Data.IDbCommand.CreateParameter()2215         System.Data.IDbDataParameter System.Data.IDbCommand.CreateParameter() { throw null; }
System.Data.IDbCommand.ExecuteReader()2216         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader() { throw null; }
System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior)2217         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
2218     }
2219     public abstract partial class DbCommandBuilder : System.ComponentModel.Component
2220     {
DbCommandBuilder()2221         protected DbCommandBuilder() { }
2222         [System.ComponentModel.DefaultValueAttribute((System.Data.Common.CatalogLocation)(1))]
2223         public virtual System.Data.Common.CatalogLocation CatalogLocation { get { throw null; } set { } }
2224         [System.ComponentModel.DefaultValueAttribute(".")]
2225         public virtual string CatalogSeparator { get { throw null; } set { } }
2226         [System.ComponentModel.DefaultValueAttribute((System.Data.ConflictOption)(1))]
2227         public virtual System.Data.ConflictOption ConflictOption { get { throw null; } set { } }
2228         [System.ComponentModel.BrowsableAttribute(false)]
2229         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2230         public System.Data.Common.DbDataAdapter DataAdapter { get { throw null; } set { } }
2231         [System.ComponentModel.DefaultValueAttribute("")]
2232         public virtual string QuotePrefix { get { throw null; } set { } }
2233         [System.ComponentModel.DefaultValueAttribute("")]
2234         public virtual string QuoteSuffix { get { throw null; } set { } }
2235         [System.ComponentModel.DefaultValueAttribute(".")]
2236         public virtual string SchemaSeparator { get { throw null; } set { } }
2237         [System.ComponentModel.DefaultValueAttribute(false)]
2238         public bool SetAllValues { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow row, System.Data.StatementType statementType, bool whereClause)2239         protected abstract void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow row, System.Data.StatementType statementType, bool whereClause);
Dispose(bool disposing)2240         protected override void Dispose(bool disposing) { }
GetDeleteCommand()2241         public System.Data.Common.DbCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)2242         public System.Data.Common.DbCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()2243         public System.Data.Common.DbCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)2244         public System.Data.Common.DbCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)2245         protected abstract string GetParameterName(int parameterOrdinal);
GetParameterName(string parameterName)2246         protected abstract string GetParameterName(string parameterName);
GetParameterPlaceholder(int parameterOrdinal)2247         protected abstract string GetParameterPlaceholder(int parameterOrdinal);
GetSchemaTable(System.Data.Common.DbCommand sourceCommand)2248         protected virtual System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand sourceCommand) { throw null; }
GetUpdateCommand()2249         public System.Data.Common.DbCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)2250         public System.Data.Common.DbCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
InitializeCommand(System.Data.Common.DbCommand command)2251         protected virtual System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw null; }
QuoteIdentifier(string unquotedIdentifier)2252         public virtual string QuoteIdentifier(string unquotedIdentifier) { throw null; }
RefreshSchema()2253         public virtual void RefreshSchema() { }
RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs rowUpdatingEvent)2254         protected void RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs rowUpdatingEvent) { }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)2255         protected abstract void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter);
UnquoteIdentifier(string quotedIdentifier)2256         public virtual string UnquoteIdentifier(string quotedIdentifier) { throw null; }
2257     }
2258     public abstract partial class DbConnection : System.ComponentModel.Component, System.Data.IDbConnection, System.IDisposable
2259     {
DbConnection()2260         protected DbConnection() { }
2261         [System.ComponentModel.DefaultValueAttribute("")]
2262         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
2263         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2264         [System.ComponentModel.SettingsBindableAttribute(true)]
2265         public abstract string ConnectionString { get; set; }
2266         public virtual int ConnectionTimeout { get { throw null; } }
2267         public abstract string Database { get; }
2268         public abstract string DataSource { get; }
2269         protected virtual System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
2270         [System.ComponentModel.BrowsableAttribute(false)]
2271         public abstract string ServerVersion { get; }
2272         [System.ComponentModel.BrowsableAttribute(false)]
2273         public abstract System.Data.ConnectionState State { get; }
2274         public virtual event System.Data.StateChangeEventHandler StateChange { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2275         protected abstract System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel);
BeginTransaction()2276         public System.Data.Common.DbTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)2277         public System.Data.Common.DbTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string databaseName)2278         public abstract void ChangeDatabase(string databaseName);
Close()2279         public abstract void Close();
CreateCommand()2280         public System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateDbCommand()2281         protected abstract System.Data.Common.DbCommand CreateDbCommand();
EnlistTransaction(System.Transactions.Transaction transaction)2282         public virtual void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()2283         public virtual System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)2284         public virtual System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)2285         public virtual System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
OnStateChange(System.Data.StateChangeEventArgs stateChange)2286         protected virtual void OnStateChange(System.Data.StateChangeEventArgs stateChange) { }
Open()2287         public abstract void Open();
OpenAsync()2288         public System.Threading.Tasks.Task OpenAsync() { throw null; }
OpenAsync(System.Threading.CancellationToken cancellationToken)2289         public virtual System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDbConnection.BeginTransaction()2290         System.Data.IDbTransaction System.Data.IDbConnection.BeginTransaction() { throw null; }
System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel isolationLevel)2291         System.Data.IDbTransaction System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
System.Data.IDbConnection.CreateCommand()2292         System.Data.IDbCommand System.Data.IDbConnection.CreateCommand() { throw null; }
2293     }
2294     public partial class DbConnectionStringBuilder : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.ComponentModel.ICustomTypeDescriptor
2295     {
DbConnectionStringBuilder()2296         public DbConnectionStringBuilder() { }
DbConnectionStringBuilder(bool useOdbcRules)2297         public DbConnectionStringBuilder(bool useOdbcRules) { }
2298         [System.ComponentModel.BrowsableAttribute(false)]
2299         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2300         [System.ComponentModel.DesignOnlyAttribute(true)]
2301         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2302         public bool BrowsableConnectionString { get { throw null; } set { } }
2303         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2304         public string ConnectionString { get { throw null; } set { } }
2305         [System.ComponentModel.BrowsableAttribute(false)]
2306         public virtual int Count { get { throw null; } }
2307         [System.ComponentModel.BrowsableAttribute(false)]
2308         public virtual bool IsFixedSize { get { throw null; } }
2309         [System.ComponentModel.BrowsableAttribute(false)]
2310         public bool IsReadOnly { get { throw null; } }
2311         [System.ComponentModel.BrowsableAttribute(false)]
2312         public virtual object this[string keyword] { get { throw null; } set { } }
2313         [System.ComponentModel.BrowsableAttribute(false)]
2314         public virtual System.Collections.ICollection Keys { get { throw null; } }
2315         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2316         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2317         object System.Collections.IDictionary.this[object keyword] { get { throw null; } set { } }
2318         [System.ComponentModel.BrowsableAttribute(false)]
2319         public virtual System.Collections.ICollection Values { get { throw null; } }
Add(string keyword, object value)2320         public void Add(string keyword, object value) { }
AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value)2321         public static void AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value) { }
AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules)2322         public static void AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules) { }
Clear()2323         public virtual void Clear() { }
ClearPropertyDescriptors()2324         protected internal void ClearPropertyDescriptors() { }
ContainsKey(string keyword)2325         public virtual bool ContainsKey(string keyword) { throw null; }
EquivalentTo(System.Data.Common.DbConnectionStringBuilder connectionStringBuilder)2326         public virtual bool EquivalentTo(System.Data.Common.DbConnectionStringBuilder connectionStringBuilder) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)2327         protected virtual void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)2328         public virtual bool Remove(string keyword) { throw null; }
ShouldSerialize(string keyword)2329         public virtual bool ShouldSerialize(string keyword) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2330         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object keyword, object value)2331         void System.Collections.IDictionary.Add(object keyword, object value) { }
System.Collections.IDictionary.Contains(object keyword)2332         bool System.Collections.IDictionary.Contains(object keyword) { throw null; }
System.Collections.IDictionary.GetEnumerator()2333         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object keyword)2334         void System.Collections.IDictionary.Remove(object keyword) { }
System.Collections.IEnumerable.GetEnumerator()2335         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()2336         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()2337         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()2338         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()2339         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()2340         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()2341         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)2342         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()2343         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)2344         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()2345         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)2346         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2347         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
ToString()2348         public override string ToString() { throw null; }
TryGetValue(string keyword, out object value)2349         public virtual bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2350     }
2351     public abstract partial class DbDataAdapter : System.Data.Common.DataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
2352     {
2353         public const string DefaultSourceTableName = "Table";
DbDataAdapter()2354         protected DbDataAdapter() { }
DbDataAdapter(System.Data.Common.DbDataAdapter adapter)2355         protected DbDataAdapter(System.Data.Common.DbDataAdapter adapter) { }
2356         [System.ComponentModel.BrowsableAttribute(false)]
2357         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2358         public System.Data.Common.DbCommand DeleteCommand { get { throw null; } set { } }
2359         protected internal System.Data.CommandBehavior FillCommandBehavior { get { throw null; } set { } }
2360         [System.ComponentModel.BrowsableAttribute(false)]
2361         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2362         public System.Data.Common.DbCommand InsertCommand { get { throw null; } set { } }
2363         [System.ComponentModel.BrowsableAttribute(false)]
2364         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2365         public System.Data.Common.DbCommand SelectCommand { get { throw null; } set { } }
2366         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
2367         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
2368         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
2369         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
2370         [System.ComponentModel.DefaultValueAttribute(1)]
2371         public virtual int UpdateBatchSize { get { throw null; } set { } }
2372         [System.ComponentModel.BrowsableAttribute(false)]
2373         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2374         public System.Data.Common.DbCommand UpdateCommand { get { throw null; } set { } }
AddToBatch(System.Data.IDbCommand command)2375         protected virtual int AddToBatch(System.Data.IDbCommand command) { throw null; }
ClearBatch()2376         protected virtual void ClearBatch() { }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2377         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)2378         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)2379         protected override void Dispose(bool disposing) { }
ExecuteBatch()2380         protected virtual int ExecuteBatch() { throw null; }
Fill(System.Data.DataSet dataSet)2381         public override int Fill(System.Data.DataSet dataSet) { throw null; }
Fill(System.Data.DataSet dataSet, int startRecord, int maxRecords, string srcTable)2382         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)2383         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)2384         public int Fill(System.Data.DataSet dataSet, string srcTable) { throw null; }
Fill(System.Data.DataTable dataTable)2385         public int Fill(System.Data.DataTable dataTable) { throw null; }
Fill(System.Data.DataTable dataTable, System.Data.IDbCommand command, System.Data.CommandBehavior behavior)2386         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)2387         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)2388         public int Fill(int startRecord, int maxRecords, params System.Data.DataTable[] dataTables) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)2389         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)2390         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)2391         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)2392         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)2393         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)2394         protected virtual System.Data.IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex) { throw null; }
GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error)2395         protected virtual bool GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error) { recordsAffected = default(int); error = default(System.Exception); throw null; }
2396         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetFillParameters()2397         public override System.Data.IDataParameter[] GetFillParameters() { throw null; }
InitializeBatching()2398         protected virtual void InitializeBatching() { }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)2399         protected virtual void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)2400         protected virtual void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()2401         object System.ICloneable.Clone() { throw null; }
TerminateBatching()2402         protected virtual void TerminateBatching() { }
Update(System.Data.DataRow[] dataRows)2403         public int Update(System.Data.DataRow[] dataRows) { throw null; }
Update(System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping)2404         protected virtual int Update(System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping) { throw null; }
Update(System.Data.DataSet dataSet)2405         public override int Update(System.Data.DataSet dataSet) { throw null; }
Update(System.Data.DataSet dataSet, string srcTable)2406         public int Update(System.Data.DataSet dataSet, string srcTable) { throw null; }
Update(System.Data.DataTable dataTable)2407         public int Update(System.Data.DataTable dataTable) { throw null; }
2408     }
2409     [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, ControlEvidence=true, ControlPolicy=true)]
2410     [System.SerializableAttribute]
2411     public abstract partial class DBDataPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
2412     {
2413         [System.ObsoleteAttribute("DBDataPermission() has been deprecated.  Use the DBDataPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
DBDataPermission()2414         protected DBDataPermission() { }
DBDataPermission(System.Data.Common.DBDataPermission permission)2415         protected DBDataPermission(System.Data.Common.DBDataPermission permission) { }
DBDataPermission(System.Data.Common.DBDataPermissionAttribute permissionAttribute)2416         protected DBDataPermission(System.Data.Common.DBDataPermissionAttribute permissionAttribute) { }
DBDataPermission(System.Security.Permissions.PermissionState state)2417         protected DBDataPermission(System.Security.Permissions.PermissionState state) { }
2418         [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)2419         protected DBDataPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) { }
2420         public bool AllowBlankPassword { get { throw null; } set { } }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)2421         public virtual void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Clear()2422         protected void Clear() { }
Copy()2423         public override System.Security.IPermission Copy() { throw null; }
2424         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
CreateInstance()2425         protected virtual System.Data.Common.DBDataPermission CreateInstance() { throw null; }
FromXml(System.Security.SecurityElement securityElement)2426         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)2427         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)2428         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()2429         public bool IsUnrestricted() { throw null; }
ToXml()2430         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)2431         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
2432     }
2433     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
2434     [System.SerializableAttribute]
2435     public abstract partial class DBDataPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
2436     {
DBDataPermissionAttribute(System.Security.Permissions.SecurityAction action)2437         protected DBDataPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
2438         public bool AllowBlankPassword { get { throw null; } set { } }
2439         public string ConnectionString { get { throw null; } set { } }
2440         public System.Data.KeyRestrictionBehavior KeyRestrictionBehavior { get { throw null; } set { } }
2441         public string KeyRestrictions { get { throw null; } set { } }
2442         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeConnectionString()2443         public bool ShouldSerializeConnectionString() { throw null; }
2444         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeKeyRestrictions()2445         public bool ShouldSerializeKeyRestrictions() { throw null; }
2446     }
2447     public abstract partial class DbDataReader : System.MarshalByRefObject, System.Collections.IEnumerable, System.Data.IDataReader, System.Data.IDataRecord, System.IDisposable
2448     {
DbDataReader()2449         protected DbDataReader() { }
2450         public abstract int Depth { get; }
2451         public abstract int FieldCount { get; }
2452         public abstract bool HasRows { get; }
2453         public abstract bool IsClosed { get; }
2454         public abstract object this[int ordinal] { get; }
2455         public abstract object this[string name] { get; }
2456         public abstract int RecordsAffected { get; }
2457         public virtual int VisibleFieldCount { get { throw null; } }
Close()2458         public virtual void Close() { }
2459         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Dispose()2460         public void Dispose() { }
Dispose(bool disposing)2461         protected virtual void Dispose(bool disposing) { }
GetBoolean(int ordinal)2462         public abstract bool GetBoolean(int ordinal);
GetByte(int ordinal)2463         public abstract byte GetByte(int ordinal);
GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)2464         public abstract long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length);
GetChar(int ordinal)2465         public abstract char GetChar(int ordinal);
GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)2466         public abstract long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length);
2467         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetData(int ordinal)2468         public System.Data.Common.DbDataReader GetData(int ordinal) { throw null; }
GetDataTypeName(int ordinal)2469         public abstract string GetDataTypeName(int ordinal);
GetDateTime(int ordinal)2470         public abstract System.DateTime GetDateTime(int ordinal);
GetDbDataReader(int ordinal)2471         protected virtual System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)2472         public abstract decimal GetDecimal(int ordinal);
GetDouble(int ordinal)2473         public abstract double GetDouble(int ordinal);
2474         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEnumerator()2475         public abstract System.Collections.IEnumerator GetEnumerator();
GetFieldType(int ordinal)2476         public abstract System.Type GetFieldType(int ordinal);
GetFieldValueAsync(int ordinal)2477         public System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int ordinal) { throw null; }
GetFieldValueAsync(int ordinal, System.Threading.CancellationToken cancellationToken)2478         public virtual System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int ordinal, System.Threading.CancellationToken cancellationToken) { throw null; }
GetFieldValue(int ordinal)2479         public virtual T GetFieldValue<T>(int ordinal) { throw null; }
GetFloat(int ordinal)2480         public abstract float GetFloat(int ordinal);
GetGuid(int ordinal)2481         public abstract System.Guid GetGuid(int ordinal);
GetInt16(int ordinal)2482         public abstract short GetInt16(int ordinal);
GetInt32(int ordinal)2483         public abstract int GetInt32(int ordinal);
GetInt64(int ordinal)2484         public abstract long GetInt64(int ordinal);
GetName(int ordinal)2485         public abstract string GetName(int ordinal);
GetOrdinal(string name)2486         public abstract int GetOrdinal(string name);
2487         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificFieldType(int ordinal)2488         public virtual System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
2489         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValue(int ordinal)2490         public virtual object GetProviderSpecificValue(int ordinal) { throw null; }
2491         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValues(object[] values)2492         public virtual int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()2493         public virtual System.Data.DataTable GetSchemaTable() { throw null; }
GetStream(int ordinal)2494         public virtual System.IO.Stream GetStream(int ordinal) { throw null; }
GetString(int ordinal)2495         public abstract string GetString(int ordinal);
GetTextReader(int ordinal)2496         public virtual System.IO.TextReader GetTextReader(int ordinal) { throw null; }
GetValue(int ordinal)2497         public abstract object GetValue(int ordinal);
GetValues(object[] values)2498         public abstract int GetValues(object[] values);
IsDBNull(int ordinal)2499         public abstract bool IsDBNull(int ordinal);
IsDBNullAsync(int ordinal)2500         public System.Threading.Tasks.Task<bool> IsDBNullAsync(int ordinal) { throw null; }
IsDBNullAsync(int ordinal, System.Threading.CancellationToken cancellationToken)2501         public virtual System.Threading.Tasks.Task<bool> IsDBNullAsync(int ordinal, System.Threading.CancellationToken cancellationToken) { throw null; }
NextResult()2502         public abstract bool NextResult();
NextResultAsync()2503         public System.Threading.Tasks.Task<bool> NextResultAsync() { throw null; }
NextResultAsync(System.Threading.CancellationToken cancellationToken)2504         public virtual System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read()2505         public abstract bool Read();
ReadAsync()2506         public System.Threading.Tasks.Task<bool> ReadAsync() { throw null; }
ReadAsync(System.Threading.CancellationToken cancellationToken)2507         public virtual System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)2508         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
2509     }
2510     public abstract partial class DbDataRecord : System.ComponentModel.ICustomTypeDescriptor, System.Data.IDataRecord
2511     {
DbDataRecord()2512         protected DbDataRecord() { }
2513         public abstract int FieldCount { get; }
2514         public abstract object this[int i] { get; }
2515         public abstract object this[string name] { get; }
GetBoolean(int i)2516         public abstract bool GetBoolean(int i);
GetByte(int i)2517         public abstract byte GetByte(int i);
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)2518         public abstract long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
GetChar(int i)2519         public abstract char GetChar(int i);
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)2520         public abstract long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length);
GetData(int i)2521         public System.Data.IDataReader GetData(int i) { throw null; }
GetDataTypeName(int i)2522         public abstract string GetDataTypeName(int i);
GetDateTime(int i)2523         public abstract System.DateTime GetDateTime(int i);
GetDbDataReader(int i)2524         protected virtual System.Data.Common.DbDataReader GetDbDataReader(int i) { throw null; }
GetDecimal(int i)2525         public abstract decimal GetDecimal(int i);
GetDouble(int i)2526         public abstract double GetDouble(int i);
GetFieldType(int i)2527         public abstract System.Type GetFieldType(int i);
GetFloat(int i)2528         public abstract float GetFloat(int i);
GetGuid(int i)2529         public abstract System.Guid GetGuid(int i);
GetInt16(int i)2530         public abstract short GetInt16(int i);
GetInt32(int i)2531         public abstract int GetInt32(int i);
GetInt64(int i)2532         public abstract long GetInt64(int i);
GetName(int i)2533         public abstract string GetName(int i);
GetOrdinal(string name)2534         public abstract int GetOrdinal(string name);
GetString(int i)2535         public abstract string GetString(int i);
GetValue(int i)2536         public abstract object GetValue(int i);
GetValues(object[] values)2537         public abstract int GetValues(object[] values);
IsDBNull(int i)2538         public abstract bool IsDBNull(int i);
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()2539         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()2540         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()2541         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()2542         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()2543         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()2544         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)2545         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()2546         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)2547         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()2548         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)2549         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2550         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
2551     }
2552     public abstract partial class DbDataSourceEnumerator
2553     {
DbDataSourceEnumerator()2554         protected DbDataSourceEnumerator() { }
GetDataSources()2555         public abstract System.Data.DataTable GetDataSources();
2556     }
2557     public partial class DbEnumerator : System.Collections.IEnumerator
2558     {
DbEnumerator(System.Data.Common.DbDataReader reader)2559         public DbEnumerator(System.Data.Common.DbDataReader reader) { }
DbEnumerator(System.Data.Common.DbDataReader reader, bool closeReader)2560         public DbEnumerator(System.Data.Common.DbDataReader reader, bool closeReader) { }
DbEnumerator(System.Data.IDataReader reader)2561         public DbEnumerator(System.Data.IDataReader reader) { }
DbEnumerator(System.Data.IDataReader reader, bool closeReader)2562         public DbEnumerator(System.Data.IDataReader reader, bool closeReader) { }
2563         public object Current { get { throw null; } }
MoveNext()2564         public bool MoveNext() { throw null; }
2565         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Reset()2566         public void Reset() { }
2567     }
2568     [System.SerializableAttribute]
2569     public abstract partial class DbException : System.Runtime.InteropServices.ExternalException
2570     {
DbException()2571         protected DbException() { }
DbException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2572         protected DbException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DbException(string message)2573         protected DbException(string message) { }
DbException(string message, System.Exception innerException)2574         protected DbException(string message, System.Exception innerException) { }
DbException(string message, int errorCode)2575         protected DbException(string message, int errorCode) { }
2576     }
2577     public static partial class DbMetaDataCollectionNames
2578     {
2579         public static readonly string DataSourceInformation;
2580         public static readonly string DataTypes;
2581         public static readonly string MetaDataCollections;
2582         public static readonly string ReservedWords;
2583         public static readonly string Restrictions;
2584     }
2585     public static partial class DbMetaDataColumnNames
2586     {
2587         public static readonly string CollectionName;
2588         public static readonly string ColumnSize;
2589         public static readonly string CompositeIdentifierSeparatorPattern;
2590         public static readonly string CreateFormat;
2591         public static readonly string CreateParameters;
2592         public static readonly string DataSourceProductName;
2593         public static readonly string DataSourceProductVersion;
2594         public static readonly string DataSourceProductVersionNormalized;
2595         public static readonly string DataType;
2596         public static readonly string GroupByBehavior;
2597         public static readonly string IdentifierCase;
2598         public static readonly string IdentifierPattern;
2599         public static readonly string IsAutoIncrementable;
2600         public static readonly string IsBestMatch;
2601         public static readonly string IsCaseSensitive;
2602         public static readonly string IsConcurrencyType;
2603         public static readonly string IsFixedLength;
2604         public static readonly string IsFixedPrecisionScale;
2605         public static readonly string IsLiteralSupported;
2606         public static readonly string IsLong;
2607         public static readonly string IsNullable;
2608         public static readonly string IsSearchable;
2609         public static readonly string IsSearchableWithLike;
2610         public static readonly string IsUnsigned;
2611         public static readonly string LiteralPrefix;
2612         public static readonly string LiteralSuffix;
2613         public static readonly string MaximumScale;
2614         public static readonly string MinimumScale;
2615         public static readonly string NumberOfIdentifierParts;
2616         public static readonly string NumberOfRestrictions;
2617         public static readonly string OrderByColumnsInSelect;
2618         public static readonly string ParameterMarkerFormat;
2619         public static readonly string ParameterMarkerPattern;
2620         public static readonly string ParameterNameMaxLength;
2621         public static readonly string ParameterNamePattern;
2622         public static readonly string ProviderDbType;
2623         public static readonly string QuotedIdentifierCase;
2624         public static readonly string QuotedIdentifierPattern;
2625         public static readonly string ReservedWord;
2626         public static readonly string StatementSeparatorPattern;
2627         public static readonly string StringLiteralPattern;
2628         public static readonly string SupportedJoinOperators;
2629         public static readonly string TypeName;
2630     }
2631     public abstract partial class DbParameter : System.MarshalByRefObject, System.Data.IDataParameter, System.Data.IDbDataParameter
2632     {
DbParameter()2633         protected DbParameter() { }
2634         [System.ComponentModel.BrowsableAttribute(false)]
2635         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2636         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2637         public abstract System.Data.DbType DbType { get; set; }
2638         [System.ComponentModel.DefaultValueAttribute((System.Data.ParameterDirection)(1))]
2639         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2640         public abstract System.Data.ParameterDirection Direction { get; set; }
2641         [System.ComponentModel.BrowsableAttribute(false)]
2642         [System.ComponentModel.DesignOnlyAttribute(true)]
2643         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2644         public abstract bool IsNullable { get; set; }
2645         [System.ComponentModel.DefaultValueAttribute("")]
2646         public abstract string ParameterName { get; set; }
2647         public virtual byte Precision { get { throw null; } set { } }
2648         public virtual byte Scale { get { throw null; } set { } }
2649         public abstract int Size { get; set; }
2650         [System.ComponentModel.DefaultValueAttribute("")]
2651         public abstract string SourceColumn { get; set; }
2652         [System.ComponentModel.DefaultValueAttribute(false)]
2653         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
2654         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2655         public abstract bool SourceColumnNullMapping { get; set; }
2656         [System.ComponentModel.DefaultValueAttribute((System.Data.DataRowVersion)(512))]
2657         public virtual System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
2658         byte System.Data.IDbDataParameter.Precision { get { throw null; } set { } }
2659         byte System.Data.IDbDataParameter.Scale { get { throw null; } set { } }
2660         [System.ComponentModel.DefaultValueAttribute(null)]
2661         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2662         public abstract object Value { get; set; }
2663         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ResetDbType()2664         public abstract void ResetDbType();
2665     }
2666     public abstract partial class DbParameterCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IDataParameterCollection
2667     {
DbParameterCollection()2668         protected DbParameterCollection() { }
2669         [System.ComponentModel.BrowsableAttribute(false)]
2670         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2671         public abstract int Count { get; }
2672         [System.ComponentModel.BrowsableAttribute(false)]
2673         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2674         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2675         public virtual bool IsFixedSize { get { throw null; } }
2676         [System.ComponentModel.BrowsableAttribute(false)]
2677         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2678         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2679         public virtual bool IsReadOnly { get { throw null; } }
2680         [System.ComponentModel.BrowsableAttribute(false)]
2681         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2682         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2683         public virtual bool IsSynchronized { get { throw null; } }
2684         public System.Data.Common.DbParameter this[int index] { get { throw null; } set { } }
2685         public System.Data.Common.DbParameter this[string parameterName] { get { throw null; } set { } }
2686         [System.ComponentModel.BrowsableAttribute(false)]
2687         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2688         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2689         public abstract object SyncRoot { get; }
2690         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2691         object System.Data.IDataParameterCollection.this[string parameterName] { get { throw null; } set { } }
Add(object value)2692         public abstract int Add(object value);
AddRange(System.Array values)2693         public abstract void AddRange(System.Array values);
Clear()2694         public abstract void Clear();
Contains(object value)2695         public abstract bool Contains(object value);
Contains(string value)2696         public abstract bool Contains(string value);
CopyTo(System.Array array, int index)2697         public abstract void CopyTo(System.Array array, int index);
2698         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEnumerator()2699         public abstract System.Collections.IEnumerator GetEnumerator();
GetParameter(int index)2700         protected abstract System.Data.Common.DbParameter GetParameter(int index);
GetParameter(string parameterName)2701         protected abstract System.Data.Common.DbParameter GetParameter(string parameterName);
IndexOf(object value)2702         public abstract int IndexOf(object value);
IndexOf(string parameterName)2703         public abstract int IndexOf(string parameterName);
Insert(int index, object value)2704         public abstract void Insert(int index, object value);
Remove(object value)2705         public abstract void Remove(object value);
RemoveAt(int index)2706         public abstract void RemoveAt(int index);
RemoveAt(string parameterName)2707         public abstract void RemoveAt(string parameterName);
SetParameter(int index, System.Data.Common.DbParameter value)2708         protected abstract void SetParameter(int index, System.Data.Common.DbParameter value);
SetParameter(string parameterName, System.Data.Common.DbParameter value)2709         protected abstract void SetParameter(string parameterName, System.Data.Common.DbParameter value);
2710     }
2711     public partial class DbProviderConfigurationHandler : System.Configuration.IConfigurationSectionHandler
2712     {
DbProviderConfigurationHandler()2713         public DbProviderConfigurationHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)2714         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
2715     }
2716     public static partial class DbProviderFactories
2717     {
GetFactory(System.Data.Common.DbConnection connection)2718         public static System.Data.Common.DbProviderFactory GetFactory(System.Data.Common.DbConnection connection) { throw null; }
GetFactory(System.Data.DataRow providerRow)2719         public static System.Data.Common.DbProviderFactory GetFactory(System.Data.DataRow providerRow) { throw null; }
GetFactory(string providerInvariantName)2720         public static System.Data.Common.DbProviderFactory GetFactory(string providerInvariantName) { throw null; }
GetFactoryClasses()2721         public static System.Data.DataTable GetFactoryClasses() { throw null; }
2722     }
2723     public partial class DbProviderFactoriesConfigurationHandler : System.Configuration.IConfigurationSectionHandler
2724     {
DbProviderFactoriesConfigurationHandler()2725         public DbProviderFactoriesConfigurationHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)2726         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
2727     }
2728     public abstract partial class DbProviderFactory
2729     {
DbProviderFactory()2730         protected DbProviderFactory() { }
2731         public virtual bool CanCreateDataSourceEnumerator { get { throw null; } }
CreateCommand()2732         public virtual System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()2733         public virtual System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()2734         public virtual System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()2735         public virtual System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()2736         public virtual System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateDataSourceEnumerator()2737         public virtual System.Data.Common.DbDataSourceEnumerator CreateDataSourceEnumerator() { throw null; }
CreateParameter()2738         public virtual System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)2739         public virtual System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
2740     }
2741     [System.AttributeUsageAttribute((System.AttributeTargets)(128), AllowMultiple=false, Inherited=true)]
2742     [System.SerializableAttribute]
2743     public sealed partial class DbProviderSpecificTypePropertyAttribute : System.Attribute
2744     {
DbProviderSpecificTypePropertyAttribute(bool isProviderSpecificTypeProperty)2745         public DbProviderSpecificTypePropertyAttribute(bool isProviderSpecificTypeProperty) { }
2746         public bool IsProviderSpecificTypeProperty { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
2747     }
2748     public abstract partial class DbTransaction : System.MarshalByRefObject, System.Data.IDbTransaction, System.IDisposable
2749     {
DbTransaction()2750         protected DbTransaction() { }
2751         public System.Data.Common.DbConnection Connection { get { throw null; } }
2752         protected abstract System.Data.Common.DbConnection DbConnection { get; }
2753         public abstract System.Data.IsolationLevel IsolationLevel { get; }
2754         System.Data.IDbConnection System.Data.IDbTransaction.Connection { get { throw null; } }
Commit()2755         public abstract void Commit();
Dispose()2756         public void Dispose() { }
Dispose(bool disposing)2757         protected virtual void Dispose(bool disposing) { }
Rollback()2758         public abstract void Rollback();
2759     }
2760     public enum GroupByBehavior
2761     {
2762         ExactMatch = 4,
2763         MustContainAll = 3,
2764         NotSupported = 1,
2765         Unknown = 0,
2766         Unrelated = 2,
2767     }
2768     public enum IdentifierCase
2769     {
2770         Insensitive = 1,
2771         Sensitive = 2,
2772         Unknown = 0,
2773     }
2774     public partial class RowUpdatedEventArgs : System.EventArgs
2775     {
RowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2776         public RowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { }
2777         public System.Data.IDbCommand Command { get { throw null; } }
2778         public System.Exception Errors { get { throw null; } set { } }
2779         public int RecordsAffected { get { throw null; } }
2780         public System.Data.DataRow Row { get { throw null; } }
2781         public int RowCount { get { throw null; } }
2782         public System.Data.StatementType StatementType { get { throw null; } }
2783         public System.Data.UpdateStatus Status { get { throw null; } set { } }
2784         public System.Data.Common.DataTableMapping TableMapping { get { throw null; } }
CopyToRows(System.Data.DataRow[] array)2785         public void CopyToRows(System.Data.DataRow[] array) { }
CopyToRows(System.Data.DataRow[] array, int arrayIndex)2786         public void CopyToRows(System.Data.DataRow[] array, int arrayIndex) { }
2787     }
2788     public partial class RowUpdatingEventArgs : System.EventArgs
2789     {
RowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2790         public RowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { }
2791         protected virtual System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
2792         public System.Data.IDbCommand Command { get { throw null; } set { } }
2793         public System.Exception Errors { get { throw null; } set { } }
2794         public System.Data.DataRow Row { get { throw null; } }
2795         public System.Data.StatementType StatementType { get { throw null; } }
2796         public System.Data.UpdateStatus Status { get { throw null; } set { } }
2797         public System.Data.Common.DataTableMapping TableMapping { get { throw null; } }
2798     }
2799     public static partial class SchemaTableColumn
2800     {
2801         public static readonly string AllowDBNull;
2802         public static readonly string BaseColumnName;
2803         public static readonly string BaseSchemaName;
2804         public static readonly string BaseTableName;
2805         public static readonly string ColumnName;
2806         public static readonly string ColumnOrdinal;
2807         public static readonly string ColumnSize;
2808         public static readonly string DataType;
2809         public static readonly string IsAliased;
2810         public static readonly string IsExpression;
2811         public static readonly string IsKey;
2812         public static readonly string IsLong;
2813         public static readonly string IsUnique;
2814         public static readonly string NonVersionedProviderType;
2815         public static readonly string NumericPrecision;
2816         public static readonly string NumericScale;
2817         public static readonly string ProviderType;
2818     }
2819     public static partial class SchemaTableOptionalColumn
2820     {
2821         public static readonly string AutoIncrementSeed;
2822         public static readonly string AutoIncrementStep;
2823         public static readonly string BaseCatalogName;
2824         public static readonly string BaseColumnNamespace;
2825         public static readonly string BaseServerName;
2826         public static readonly string BaseTableNamespace;
2827         public static readonly string ColumnMapping;
2828         public static readonly string DefaultValue;
2829         public static readonly string Expression;
2830         public static readonly string IsAutoIncrement;
2831         public static readonly string IsHidden;
2832         public static readonly string IsReadOnly;
2833         public static readonly string IsRowVersion;
2834         public static readonly string ProviderSpecificDataType;
2835     }
2836     [System.FlagsAttribute]
2837     public enum SupportedJoinOperators
2838     {
2839         FullOuter = 8,
2840         Inner = 1,
2841         LeftOuter = 2,
2842         None = 0,
2843         RightOuter = 4,
2844     }
2845 }
2846 namespace System.Data.Odbc
2847 {
2848     [System.ComponentModel.DefaultEventAttribute("RecordsAffected")]
2849     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OdbcCommandDesigner, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2850     [System.ComponentModel.ToolboxItemAttribute(true)]
2851     public sealed partial class OdbcCommand : System.Data.Common.DbCommand, System.ICloneable
2852     {
OdbcCommand()2853         public OdbcCommand() { }
OdbcCommand(string cmdText)2854         public OdbcCommand(string cmdText) { }
OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection)2855         public OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection) { }
OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection, System.Data.Odbc.OdbcTransaction transaction)2856         public OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection, System.Data.Odbc.OdbcTransaction transaction) { }
2857         [System.ComponentModel.DefaultValueAttribute("")]
2858         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Odbc.Design.OdbcCommandTextEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2859         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2860         public override string CommandText { get { throw null; } set { } }
2861         public override int CommandTimeout { get { throw null; } set { } }
2862         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
2863         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2864         public override System.Data.CommandType CommandType { get { throw null; } set { } }
2865         [System.ComponentModel.DefaultValueAttribute(null)]
2866         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2867         public new System.Data.Odbc.OdbcConnection Connection { get { throw null; } set { } }
2868         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
2869         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
2870         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
2871         [System.ComponentModel.BrowsableAttribute(false)]
2872         [System.ComponentModel.DefaultValueAttribute(true)]
2873         [System.ComponentModel.DesignOnlyAttribute(true)]
2874         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2875         public override bool DesignTimeVisible { get { throw null; } set { } }
2876         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
2877         public new System.Data.Odbc.OdbcParameterCollection Parameters { get { throw null; } }
2878         [System.ComponentModel.BrowsableAttribute(false)]
2879         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2880         public new System.Data.Odbc.OdbcTransaction Transaction { get { throw null; } set { } }
2881         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
2882         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
Cancel()2883         public override void Cancel() { }
CreateDbParameter()2884         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()2885         public new System.Data.Odbc.OdbcParameter CreateParameter() { throw null; }
Dispose(bool disposing)2886         protected override void Dispose(bool disposing) { }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2887         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteNonQuery()2888         public override int ExecuteNonQuery() { throw null; }
ExecuteReader()2889         public new System.Data.Odbc.OdbcDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2890         public new System.Data.Odbc.OdbcDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteScalar()2891         public override object ExecuteScalar() { throw null; }
Prepare()2892         public override void Prepare() { }
ResetCommandTimeout()2893         public void ResetCommandTimeout() { }
System.ICloneable.Clone()2894         object System.ICloneable.Clone() { throw null; }
2895     }
2896     public sealed partial class OdbcCommandBuilder : System.Data.Common.DbCommandBuilder
2897     {
OdbcCommandBuilder()2898         public OdbcCommandBuilder() { }
OdbcCommandBuilder(System.Data.Odbc.OdbcDataAdapter adapter)2899         public OdbcCommandBuilder(System.Data.Odbc.OdbcDataAdapter adapter) { }
2900         [System.ComponentModel.DefaultValueAttribute(null)]
2901         public new System.Data.Odbc.OdbcDataAdapter DataAdapter { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause)2902         protected override void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause) { }
DeriveParameters(System.Data.Odbc.OdbcCommand command)2903         public static void DeriveParameters(System.Data.Odbc.OdbcCommand command) { }
GetDeleteCommand()2904         public new System.Data.Odbc.OdbcCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)2905         public new System.Data.Odbc.OdbcCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()2906         public new System.Data.Odbc.OdbcCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)2907         public new System.Data.Odbc.OdbcCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)2908         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)2909         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)2910         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetUpdateCommand()2911         public new System.Data.Odbc.OdbcCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)2912         public new System.Data.Odbc.OdbcCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
QuoteIdentifier(string unquotedIdentifier)2913         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
QuoteIdentifier(string unquotedIdentifier, System.Data.Odbc.OdbcConnection connection)2914         public string QuoteIdentifier(string unquotedIdentifier, System.Data.Odbc.OdbcConnection connection) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)2915         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)2916         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
UnquoteIdentifier(string quotedIdentifier, System.Data.Odbc.OdbcConnection connection)2917         public string UnquoteIdentifier(string quotedIdentifier, System.Data.Odbc.OdbcConnection connection) { throw null; }
2918     }
2919     [System.ComponentModel.DefaultEventAttribute("InfoMessage")]
2920     public sealed partial class OdbcConnection : System.Data.Common.DbConnection, System.ICloneable
2921     {
OdbcConnection()2922         public OdbcConnection() { }
OdbcConnection(string connectionString)2923         public OdbcConnection(string connectionString) { }
2924         [System.ComponentModel.DefaultValueAttribute("")]
2925         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Odbc.Design.OdbcConnectionStringEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2926         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
2927         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2928         [System.ComponentModel.SettingsBindableAttribute(true)]
2929         public override string ConnectionString { get { throw null; } set { } }
2930         [System.ComponentModel.DefaultValueAttribute(15)]
2931         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2932         public new int ConnectionTimeout { get { throw null; } set { } }
2933         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2934         public override string Database { get { throw null; } }
2935         [System.ComponentModel.BrowsableAttribute(false)]
2936         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2937         public override string DataSource { get { throw null; } }
2938         [System.ComponentModel.BrowsableAttribute(false)]
2939         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2940         public string Driver { get { throw null; } }
2941         [System.ComponentModel.BrowsableAttribute(false)]
2942         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2943         public override string ServerVersion { get { throw null; } }
2944         [System.ComponentModel.BrowsableAttribute(false)]
2945         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2946         public override System.Data.ConnectionState State { get { throw null; } }
2947         public event System.Data.Odbc.OdbcInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2948         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()2949         public new System.Data.Odbc.OdbcTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolevel)2950         public new System.Data.Odbc.OdbcTransaction BeginTransaction(System.Data.IsolationLevel isolevel) { throw null; }
ChangeDatabase(string value)2951         public override void ChangeDatabase(string value) { }
Close()2952         public override void Close() { }
CreateCommand()2953         public new System.Data.Odbc.OdbcCommand CreateCommand() { throw null; }
CreateDbCommand()2954         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)2955         protected override void Dispose(bool disposing) { }
EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)2956         public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) { }
EnlistTransaction(System.Transactions.Transaction transaction)2957         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()2958         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)2959         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)2960         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
Open()2961         public override void Open() { }
ReleaseObjectPool()2962         public static void ReleaseObjectPool() { }
System.ICloneable.Clone()2963         object System.ICloneable.Clone() { throw null; }
2964     }
2965     [System.ComponentModel.DefaultPropertyAttribute("Driver")]
2966     [System.ComponentModel.TypeConverterAttribute("System.Data.Odbc.OdbcConnectionStringBuilder.OdbcConnectionStringBuilderConverter")]
2967     public sealed partial class OdbcConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
2968     {
OdbcConnectionStringBuilder()2969         public OdbcConnectionStringBuilder() { }
OdbcConnectionStringBuilder(string connectionString)2970         public OdbcConnectionStringBuilder(string connectionString) { }
2971         [System.ComponentModel.DisplayNameAttribute("Driver")]
2972         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2973         public string Driver { get { throw null; } set { } }
2974         [System.ComponentModel.DisplayNameAttribute("Dsn")]
2975         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2976         public string Dsn { get { throw null; } set { } }
2977         public override object this[string keyword] { get { throw null; } set { } }
2978         public override System.Collections.ICollection Keys { get { throw null; } }
Clear()2979         public override void Clear() { }
ContainsKey(string keyword)2980         public override bool ContainsKey(string keyword) { throw null; }
Remove(string keyword)2981         public override bool Remove(string keyword) { throw null; }
TryGetValue(string keyword, out object value)2982         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2983     }
2984     [System.ComponentModel.DefaultEventAttribute("RowUpdated")]
2985     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OdbcDataAdapterDesigner, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2986     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.OdbcDataAdapterToolboxItem, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2987     public sealed partial class OdbcDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
2988     {
OdbcDataAdapter()2989         public OdbcDataAdapter() { }
OdbcDataAdapter(System.Data.Odbc.OdbcCommand selectCommand)2990         public OdbcDataAdapter(System.Data.Odbc.OdbcCommand selectCommand) { }
OdbcDataAdapter(string selectCommandText, System.Data.Odbc.OdbcConnection selectConnection)2991         public OdbcDataAdapter(string selectCommandText, System.Data.Odbc.OdbcConnection selectConnection) { }
OdbcDataAdapter(string selectCommandText, string selectConnectionString)2992         public OdbcDataAdapter(string selectCommandText, string selectConnectionString) { }
2993         [System.ComponentModel.DefaultValueAttribute(null)]
2994         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2995         public new System.Data.Odbc.OdbcCommand DeleteCommand { get { throw null; } set { } }
2996         [System.ComponentModel.DefaultValueAttribute(null)]
2997         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2998         public new System.Data.Odbc.OdbcCommand InsertCommand { get { throw null; } set { } }
2999         [System.ComponentModel.DefaultValueAttribute(null)]
3000         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3001         public new System.Data.Odbc.OdbcCommand SelectCommand { get { throw null; } set { } }
3002         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
3003         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
3004         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
3005         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
3006         [System.ComponentModel.DefaultValueAttribute(null)]
3007         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3008         public new System.Data.Odbc.OdbcCommand UpdateCommand { get { throw null; } set { } }
3009         public event System.Data.Odbc.OdbcRowUpdatedEventHandler RowUpdated { add { } remove { } }
3010         public event System.Data.Odbc.OdbcRowUpdatingEventHandler RowUpdating { add { } remove { } }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3011         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)3012         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; }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)3013         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)3014         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()3015         object System.ICloneable.Clone() { throw null; }
3016     }
3017     public sealed partial class OdbcDataReader : System.Data.Common.DbDataReader
3018     {
OdbcDataReader()3019         internal OdbcDataReader() { }
3020         public override int Depth { get { throw null; } }
3021         public override int FieldCount { get { throw null; } }
3022         public override bool HasRows { get { throw null; } }
3023         public override bool IsClosed { get { throw null; } }
3024         public override object this[int i] { get { throw null; } }
3025         public override object this[string value] { get { throw null; } }
3026         public override int RecordsAffected { get { throw null; } }
Close()3027         public override void Close() { }
Dispose(bool disposing)3028         protected override void Dispose(bool disposing) { }
GetBoolean(int i)3029         public override bool GetBoolean(int i) { throw null; }
GetByte(int i)3030         public override byte GetByte(int i) { throw null; }
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)3031         public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int i)3032         public override char GetChar(int i) { throw null; }
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)3033         public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int i)3034         public override string GetDataTypeName(int i) { throw null; }
GetDate(int i)3035         public System.DateTime GetDate(int i) { throw null; }
GetDateTime(int i)3036         public override System.DateTime GetDateTime(int i) { throw null; }
GetDecimal(int i)3037         public override decimal GetDecimal(int i) { throw null; }
GetDouble(int i)3038         public override double GetDouble(int i) { throw null; }
GetEnumerator()3039         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int i)3040         public override System.Type GetFieldType(int i) { throw null; }
GetFloat(int i)3041         public override float GetFloat(int i) { throw null; }
GetGuid(int i)3042         public override System.Guid GetGuid(int i) { throw null; }
GetInt16(int i)3043         public override short GetInt16(int i) { throw null; }
GetInt32(int i)3044         public override int GetInt32(int i) { throw null; }
GetInt64(int i)3045         public override long GetInt64(int i) { throw null; }
GetName(int i)3046         public override string GetName(int i) { throw null; }
GetOrdinal(string value)3047         public override int GetOrdinal(string value) { throw null; }
GetSchemaTable()3048         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int i)3049         public override string GetString(int i) { throw null; }
GetTime(int i)3050         public System.TimeSpan GetTime(int i) { throw null; }
GetValue(int i)3051         public override object GetValue(int i) { throw null; }
GetValues(object[] values)3052         public override int GetValues(object[] values) { throw null; }
IsDBNull(int i)3053         public override bool IsDBNull(int i) { throw null; }
NextResult()3054         public override bool NextResult() { throw null; }
Read()3055         public override bool Read() { throw null; }
3056     }
3057     [System.SerializableAttribute]
3058     public sealed partial class OdbcError
3059     {
OdbcError()3060         internal OdbcError() { }
3061         public string Message { get { throw null; } }
3062         public int NativeError { get { throw null; } }
3063         public string Source { get { throw null; } }
3064         public string SQLState { get { throw null; } }
ToString()3065         public override string ToString() { throw null; }
3066     }
3067     [System.SerializableAttribute]
3068     public sealed partial class OdbcErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
3069     {
OdbcErrorCollection()3070         internal OdbcErrorCollection() { }
3071         public int Count { get { throw null; } }
3072         public System.Data.Odbc.OdbcError this[int i] { get { throw null; } }
3073         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3074         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int i)3075         public void CopyTo(System.Array array, int i) { }
CopyTo(System.Data.Odbc.OdbcError[] array, int i)3076         public void CopyTo(System.Data.Odbc.OdbcError[] array, int i) { }
GetEnumerator()3077         public System.Collections.IEnumerator GetEnumerator() { throw null; }
3078     }
3079     [System.SerializableAttribute]
3080     public sealed partial class OdbcException : System.Data.Common.DbException
3081     {
OdbcException()3082         internal OdbcException() { }
3083         public System.Data.Odbc.OdbcErrorCollection Errors { get { throw null; } }
3084         public override string Source { get { throw null; } }
3085         [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)3086         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
3087     }
3088     public sealed partial class OdbcFactory : System.Data.Common.DbProviderFactory
3089     {
OdbcFactory()3090         internal OdbcFactory() { }
3091         public static readonly System.Data.Odbc.OdbcFactory Instance;
CreateCommand()3092         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()3093         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()3094         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()3095         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()3096         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateParameter()3097         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)3098         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
3099     }
3100     public sealed partial class OdbcInfoMessageEventArgs : System.EventArgs
3101     {
OdbcInfoMessageEventArgs()3102         internal OdbcInfoMessageEventArgs() { }
3103         public System.Data.Odbc.OdbcErrorCollection Errors { get { throw null; } }
3104         public string Message { get { throw null; } }
ToString()3105         public override string ToString() { throw null; }
3106     }
OdbcInfoMessageEventHandler(object sender, System.Data.Odbc.OdbcInfoMessageEventArgs e)3107     public delegate void OdbcInfoMessageEventHandler(object sender, System.Data.Odbc.OdbcInfoMessageEventArgs e);
3108     public static partial class OdbcMetaDataCollectionNames
3109     {
3110         public static readonly string Columns;
3111         public static readonly string Indexes;
3112         public static readonly string ProcedureColumns;
3113         public static readonly string ProcedureParameters;
3114         public static readonly string Procedures;
3115         public static readonly string Tables;
3116         public static readonly string Views;
3117     }
3118     public static partial class OdbcMetaDataColumnNames
3119     {
3120         public static readonly string BooleanFalseLiteral;
3121         public static readonly string BooleanTrueLiteral;
3122         public static readonly string SQLType;
3123     }
3124     [System.ComponentModel.TypeConverterAttribute("System.Data.Odbc.OdbcParameter.OdbcParameterConverter")]
3125     public sealed partial class OdbcParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
3126     {
OdbcParameter()3127         public OdbcParameter() { }
OdbcParameter(string name, System.Data.Odbc.OdbcType type)3128         public OdbcParameter(string name, System.Data.Odbc.OdbcType type) { }
OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size)3129         public OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size) { }
3130         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OdbcParameter(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, System.Data.ParameterDirection parameterDirection, bool isNullable, byte precision, byte scale, string srcColumn, System.Data.DataRowVersion srcVersion, object value)3131         public OdbcParameter(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, System.Data.ParameterDirection parameterDirection, bool isNullable, byte precision, byte scale, string srcColumn, System.Data.DataRowVersion srcVersion, object value) { }
3132         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OdbcParameter(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, System.Data.ParameterDirection parameterDirection, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value)3133         public OdbcParameter(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, System.Data.ParameterDirection parameterDirection, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value) { }
OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size, string sourcecolumn)3134         public OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size, string sourcecolumn) { }
OdbcParameter(string name, object value)3135         public OdbcParameter(string name, object value) { }
3136         public override System.Data.DbType DbType { get { throw null; } set { } }
3137         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3138         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
3139         public override bool IsNullable { get { throw null; } set { } }
3140         [System.ComponentModel.DefaultValueAttribute((System.Data.Odbc.OdbcType)(11))]
3141         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3142         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
3143         public System.Data.Odbc.OdbcType OdbcType { get { throw null; } set { } }
3144         public override string ParameterName { get { throw null; } set { } }
3145         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3146         public new byte Precision { get { throw null; } set { } }
3147         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3148         public new byte Scale { get { throw null; } set { } }
3149         public override int Size { get { throw null; } set { } }
3150         public override string SourceColumn { get { throw null; } set { } }
3151         public override bool SourceColumnNullMapping { get { throw null; } set { } }
3152         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
3153         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3154         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
3155         public override object Value { get { throw null; } set { } }
ResetDbType()3156         public override void ResetDbType() { }
ResetOdbcType()3157         public void ResetOdbcType() { }
System.ICloneable.Clone()3158         object System.ICloneable.Clone() { throw null; }
ToString()3159         public override string ToString() { throw null; }
3160     }
3161     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3162     [System.ComponentModel.ListBindableAttribute(false)]
3163     public sealed partial class OdbcParameterCollection : System.Data.Common.DbParameterCollection
3164     {
OdbcParameterCollection()3165         internal OdbcParameterCollection() { }
3166         public override int Count { get { throw null; } }
3167         public override bool IsFixedSize { get { throw null; } }
3168         public override bool IsReadOnly { get { throw null; } }
3169         public override bool IsSynchronized { get { throw null; } }
3170         [System.ComponentModel.BrowsableAttribute(false)]
3171         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3172         public new System.Data.Odbc.OdbcParameter this[int index] { get { throw null; } set { } }
3173         [System.ComponentModel.BrowsableAttribute(false)]
3174         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3175         public new System.Data.Odbc.OdbcParameter this[string parameterName] { get { throw null; } set { } }
3176         public override object SyncRoot { get { throw null; } }
Add(System.Data.Odbc.OdbcParameter value)3177         public System.Data.Odbc.OdbcParameter Add(System.Data.Odbc.OdbcParameter value) { throw null; }
3178         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)3179         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.Odbc.OdbcType odbcType)3180         public System.Data.Odbc.OdbcParameter Add(string parameterName, System.Data.Odbc.OdbcType odbcType) { throw null; }
Add(string parameterName, System.Data.Odbc.OdbcType odbcType, int size)3181         public System.Data.Odbc.OdbcParameter Add(string parameterName, System.Data.Odbc.OdbcType odbcType, int size) { throw null; }
Add(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, string sourceColumn)3182         public System.Data.Odbc.OdbcParameter Add(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, string sourceColumn) { throw null; }
3183         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3184         [System.ObsoleteAttribute("Add(String parameterName, Object value) has been deprecated.  Use AddWithValue(String parameterName, Object value).  http://go.microsoft.com/fwlink/?linkid=14202", false)]
Add(string parameterName, object value)3185         public System.Data.Odbc.OdbcParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)3186         public override void AddRange(System.Array values) { }
AddRange(System.Data.Odbc.OdbcParameter[] values)3187         public void AddRange(System.Data.Odbc.OdbcParameter[] values) { }
AddWithValue(string parameterName, object value)3188         public System.Data.Odbc.OdbcParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()3189         public override void Clear() { }
Contains(System.Data.Odbc.OdbcParameter value)3190         public bool Contains(System.Data.Odbc.OdbcParameter value) { throw null; }
Contains(object value)3191         public override bool Contains(object value) { throw null; }
Contains(string value)3192         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)3193         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Odbc.OdbcParameter[] array, int index)3194         public void CopyTo(System.Data.Odbc.OdbcParameter[] array, int index) { }
GetEnumerator()3195         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)3196         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)3197         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.Odbc.OdbcParameter value)3198         public int IndexOf(System.Data.Odbc.OdbcParameter value) { throw null; }
IndexOf(object value)3199         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)3200         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.Odbc.OdbcParameter value)3201         public void Insert(int index, System.Data.Odbc.OdbcParameter value) { }
Insert(int index, object value)3202         public override void Insert(int index, object value) { }
Remove(System.Data.Odbc.OdbcParameter value)3203         public void Remove(System.Data.Odbc.OdbcParameter value) { }
Remove(object value)3204         public override void Remove(object value) { }
RemoveAt(int index)3205         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)3206         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)3207         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)3208         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
3209     }
3210     [System.SerializableAttribute]
3211     public sealed partial class OdbcPermission : System.Data.Common.DBDataPermission
3212     {
3213         [System.ObsoleteAttribute("OdbcPermission() has been deprecated.  Use the OdbcPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
OdbcPermission()3214         public OdbcPermission() : base (default(System.Security.Permissions.PermissionState)) { }
OdbcPermission(System.Security.Permissions.PermissionState state)3215         public OdbcPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
3216         [System.ObsoleteAttribute("OdbcPermission(PermissionState state, Boolean allowBlankPassword) has been deprecated.  Use the OdbcPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
OdbcPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword)3217         public OdbcPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)3218         public override void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Copy()3219         public override System.Security.IPermission Copy() { throw null; }
3220     }
3221     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
3222     [System.SerializableAttribute]
3223     public sealed partial class OdbcPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
3224     {
OdbcPermissionAttribute(System.Security.Permissions.SecurityAction action)3225         public OdbcPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()3226         public override System.Security.IPermission CreatePermission() { throw null; }
3227     }
3228     public sealed partial class OdbcRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
3229     {
OdbcRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3230         public OdbcRowUpdatedEventArgs(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)) { }
3231         public new System.Data.Odbc.OdbcCommand Command { get { throw null; } }
3232     }
OdbcRowUpdatedEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatedEventArgs e)3233     public delegate void OdbcRowUpdatedEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatedEventArgs e);
3234     public sealed partial class OdbcRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
3235     {
OdbcRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3236         public OdbcRowUpdatingEventArgs(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)) { }
3237         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
3238         public new System.Data.Odbc.OdbcCommand Command { get { throw null; } set { } }
3239     }
OdbcRowUpdatingEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatingEventArgs e)3240     public delegate void OdbcRowUpdatingEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatingEventArgs e);
3241     public sealed partial class OdbcTransaction : System.Data.Common.DbTransaction
3242     {
OdbcTransaction()3243         internal OdbcTransaction() { }
3244         public new System.Data.Odbc.OdbcConnection Connection { get { throw null; } }
3245         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
3246         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()3247         public override void Commit() { }
Dispose(bool disposing)3248         protected override void Dispose(bool disposing) { }
Rollback()3249         public override void Rollback() { }
3250     }
3251     public enum OdbcType
3252     {
3253         BigInt = 1,
3254         Binary = 2,
3255         Bit = 3,
3256         Char = 4,
3257         Date = 23,
3258         DateTime = 5,
3259         Decimal = 6,
3260         Double = 8,
3261         Image = 9,
3262         Int = 10,
3263         NChar = 11,
3264         NText = 12,
3265         Numeric = 7,
3266         NVarChar = 13,
3267         Real = 14,
3268         SmallDateTime = 16,
3269         SmallInt = 17,
3270         Text = 18,
3271         Time = 24,
3272         Timestamp = 19,
3273         TinyInt = 20,
3274         UniqueIdentifier = 15,
3275         VarBinary = 21,
3276         VarChar = 22,
3277     }
3278 }
3279 namespace System.Data.OleDb
3280 {
3281     [System.ComponentModel.DefaultEventAttribute("RecordsAffected")]
3282     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OleDbCommandDesigner, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3283     [System.ComponentModel.ToolboxItemAttribute(true)]
3284     public sealed partial class OleDbCommand : System.Data.Common.DbCommand, System.Data.IDbCommand, System.ICloneable, System.IDisposable
3285     {
OleDbCommand()3286         public OleDbCommand() { }
OleDbCommand(string cmdText)3287         public OleDbCommand(string cmdText) { }
OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection)3288         public OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection) { }
OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection, System.Data.OleDb.OleDbTransaction transaction)3289         public OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection, System.Data.OleDb.OleDbTransaction transaction) { }
3290         [System.ComponentModel.DefaultValueAttribute("")]
3291         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.ADO.Design.OleDbCommandTextEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3292         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3293         public override string CommandText { get { throw null; } set { } }
3294         public override int CommandTimeout { get { throw null; } set { } }
3295         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
3296         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3297         public override System.Data.CommandType CommandType { get { throw null; } set { } }
3298         [System.ComponentModel.DefaultValueAttribute(null)]
3299         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3300         public new System.Data.OleDb.OleDbConnection Connection { get { throw null; } set { } }
3301         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
3302         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
3303         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
3304         [System.ComponentModel.BrowsableAttribute(false)]
3305         [System.ComponentModel.DefaultValueAttribute(true)]
3306         [System.ComponentModel.DesignOnlyAttribute(true)]
3307         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3308         public override bool DesignTimeVisible { get { throw null; } set { } }
3309         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
3310         public new System.Data.OleDb.OleDbParameterCollection Parameters { get { throw null; } }
3311         [System.ComponentModel.BrowsableAttribute(false)]
3312         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3313         public new System.Data.OleDb.OleDbTransaction Transaction { get { throw null; } set { } }
3314         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
3315         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
Cancel()3316         public override void Cancel() { }
Clone()3317         public System.Data.OleDb.OleDbCommand Clone() { throw null; }
CreateDbParameter()3318         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()3319         public new System.Data.OleDb.OleDbParameter CreateParameter() { throw null; }
Dispose(bool disposing)3320         protected override void Dispose(bool disposing) { }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)3321         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteNonQuery()3322         public override int ExecuteNonQuery() { throw null; }
ExecuteReader()3323         public new System.Data.OleDb.OleDbDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)3324         public new System.Data.OleDb.OleDbDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteScalar()3325         public override object ExecuteScalar() { throw null; }
Prepare()3326         public override void Prepare() { }
ResetCommandTimeout()3327         public void ResetCommandTimeout() { }
System.Data.IDbCommand.ExecuteReader()3328         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader() { throw null; }
System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior)3329         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
System.ICloneable.Clone()3330         object System.ICloneable.Clone() { throw null; }
3331     }
3332     public sealed partial class OleDbCommandBuilder : System.Data.Common.DbCommandBuilder
3333     {
OleDbCommandBuilder()3334         public OleDbCommandBuilder() { }
OleDbCommandBuilder(System.Data.OleDb.OleDbDataAdapter adapter)3335         public OleDbCommandBuilder(System.Data.OleDb.OleDbDataAdapter adapter) { }
3336         [System.ComponentModel.DefaultValueAttribute(null)]
3337         public new System.Data.OleDb.OleDbDataAdapter DataAdapter { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause)3338         protected override void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause) { }
DeriveParameters(System.Data.OleDb.OleDbCommand command)3339         public static void DeriveParameters(System.Data.OleDb.OleDbCommand command) { }
GetDeleteCommand()3340         public new System.Data.OleDb.OleDbCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)3341         public new System.Data.OleDb.OleDbCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()3342         public new System.Data.OleDb.OleDbCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)3343         public new System.Data.OleDb.OleDbCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)3344         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)3345         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)3346         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetUpdateCommand()3347         public new System.Data.OleDb.OleDbCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)3348         public new System.Data.OleDb.OleDbCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
QuoteIdentifier(string unquotedIdentifier)3349         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
QuoteIdentifier(string unquotedIdentifier, System.Data.OleDb.OleDbConnection connection)3350         public string QuoteIdentifier(string unquotedIdentifier, System.Data.OleDb.OleDbConnection connection) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)3351         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)3352         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection connection)3353         public string UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection connection) { throw null; }
3354     }
3355     [System.ComponentModel.DefaultEventAttribute("InfoMessage")]
3356     public sealed partial class OleDbConnection : System.Data.Common.DbConnection, System.Data.IDbConnection, System.ICloneable, System.IDisposable
3357     {
OleDbConnection()3358         public OleDbConnection() { }
OleDbConnection(string connectionString)3359         public OleDbConnection(string connectionString) { }
3360         [System.ComponentModel.DefaultValueAttribute("")]
3361         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.ADO.Design.OleDbConnectionStringEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3362         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
3363         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3364         [System.ComponentModel.SettingsBindableAttribute(true)]
3365         public override string ConnectionString { get { throw null; } set { } }
3366         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3367         public override int ConnectionTimeout { get { throw null; } }
3368         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3369         public override string Database { get { throw null; } }
3370         [System.ComponentModel.BrowsableAttribute(true)]
3371         public override string DataSource { get { throw null; } }
3372         [System.ComponentModel.BrowsableAttribute(true)]
3373         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3374         public string Provider { get { throw null; } }
3375         public override string ServerVersion { get { throw null; } }
3376         [System.ComponentModel.BrowsableAttribute(false)]
3377         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3378         public override System.Data.ConnectionState State { get { throw null; } }
3379         public event System.Data.OleDb.OleDbInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)3380         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()3381         public new System.Data.OleDb.OleDbTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)3382         public new System.Data.OleDb.OleDbTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string value)3383         public override void ChangeDatabase(string value) { }
Close()3384         public override void Close() { }
CreateCommand()3385         public new System.Data.OleDb.OleDbCommand CreateCommand() { throw null; }
CreateDbCommand()3386         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)3387         protected override void Dispose(bool disposing) { }
EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)3388         public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) { }
EnlistTransaction(System.Transactions.Transaction transaction)3389         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetOleDbSchemaTable(System.Guid schema, object[] restrictions)3390         public System.Data.DataTable GetOleDbSchemaTable(System.Guid schema, object[] restrictions) { throw null; }
GetSchema()3391         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)3392         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)3393         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
Open()3394         public override void Open() { }
ReleaseObjectPool()3395         public static void ReleaseObjectPool() { }
3396         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ResetState()3397         public void ResetState() { }
System.ICloneable.Clone()3398         object System.ICloneable.Clone() { throw null; }
3399     }
3400     [System.ComponentModel.DefaultPropertyAttribute("Provider")]
3401     [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3402     [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbConnectionStringBuilder.OleDbConnectionStringBuilderConverter")]
3403     public sealed partial class OleDbConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
3404     {
OleDbConnectionStringBuilder()3405         public OleDbConnectionStringBuilder() { }
OleDbConnectionStringBuilder(string connectionString)3406         public OleDbConnectionStringBuilder(string connectionString) { }
3407         [System.ComponentModel.DisplayNameAttribute("Data Source")]
3408         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3409         public string DataSource { get { throw null; } set { } }
3410         [System.ComponentModel.DisplayNameAttribute("File Name")]
3411         [System.ComponentModel.EditorAttribute("System.Windows.Forms.Design.FileNameEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3412         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3413         public string FileName { get { throw null; } set { } }
3414         public override object this[string keyword] { get { throw null; } set { } }
3415         public override System.Collections.ICollection Keys { get { throw null; } }
3416         [System.ComponentModel.DisplayNameAttribute("OLE DB Services")]
3417         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3418         [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbConnectionStringBuilder.OleDbServicesConverter")]
3419         public int OleDbServices { get { throw null; } set { } }
3420         [System.ComponentModel.DisplayNameAttribute("Persist Security Info")]
3421         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3422         public bool PersistSecurityInfo { get { throw null; } set { } }
3423         [System.ComponentModel.DisplayNameAttribute("Provider")]
3424         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3425         [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbConnectionStringBuilder.OleDbProviderConverter")]
3426         public string Provider { get { throw null; } set { } }
Clear()3427         public override void Clear() { }
ContainsKey(string keyword)3428         public override bool ContainsKey(string keyword) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)3429         protected override void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)3430         public override bool Remove(string keyword) { throw null; }
TryGetValue(string keyword, out object value)3431         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
3432     }
3433     [System.ComponentModel.DefaultEventAttribute("RowUpdated")]
3434     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OleDbDataAdapterDesigner, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3435     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.OleDbDataAdapterToolboxItem, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3436     public sealed partial class OleDbDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
3437     {
OleDbDataAdapter()3438         public OleDbDataAdapter() { }
OleDbDataAdapter(System.Data.OleDb.OleDbCommand selectCommand)3439         public OleDbDataAdapter(System.Data.OleDb.OleDbCommand selectCommand) { }
OleDbDataAdapter(string selectCommandText, System.Data.OleDb.OleDbConnection selectConnection)3440         public OleDbDataAdapter(string selectCommandText, System.Data.OleDb.OleDbConnection selectConnection) { }
OleDbDataAdapter(string selectCommandText, string selectConnectionString)3441         public OleDbDataAdapter(string selectCommandText, string selectConnectionString) { }
3442         [System.ComponentModel.DefaultValueAttribute(null)]
3443         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3444         public new System.Data.OleDb.OleDbCommand DeleteCommand { get { throw null; } set { } }
3445         [System.ComponentModel.DefaultValueAttribute(null)]
3446         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3447         public new System.Data.OleDb.OleDbCommand InsertCommand { get { throw null; } set { } }
3448         [System.ComponentModel.DefaultValueAttribute(null)]
3449         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3450         public new System.Data.OleDb.OleDbCommand SelectCommand { get { throw null; } set { } }
3451         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
3452         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
3453         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
3454         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
3455         [System.ComponentModel.DefaultValueAttribute(null)]
3456         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3457         public new System.Data.OleDb.OleDbCommand UpdateCommand { get { throw null; } set { } }
3458         public event System.Data.OleDb.OleDbRowUpdatedEventHandler RowUpdated { add { } remove { } }
3459         public event System.Data.OleDb.OleDbRowUpdatingEventHandler RowUpdating { add { } remove { } }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3460         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)3461         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; }
Fill(System.Data.DataSet dataSet, object ADODBRecordSet, string srcTable)3462         public int Fill(System.Data.DataSet dataSet, object ADODBRecordSet, string srcTable) { throw null; }
Fill(System.Data.DataTable dataTable, object ADODBRecordSet)3463         public int Fill(System.Data.DataTable dataTable, object ADODBRecordSet) { throw null; }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)3464         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)3465         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()3466         object System.ICloneable.Clone() { throw null; }
3467     }
3468     public sealed partial class OleDbDataReader : System.Data.Common.DbDataReader
3469     {
OleDbDataReader()3470         internal OleDbDataReader() { }
3471         public override int Depth { get { throw null; } }
3472         public override int FieldCount { get { throw null; } }
3473         public override bool HasRows { get { throw null; } }
3474         public override bool IsClosed { get { throw null; } }
3475         public override object this[int index] { get { throw null; } }
3476         public override object this[string name] { get { throw null; } }
3477         public override int RecordsAffected { get { throw null; } }
3478         public override int VisibleFieldCount { get { throw null; } }
Close()3479         public override void Close() { }
GetBoolean(int ordinal)3480         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)3481         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)3482         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
3483         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetChar(int ordinal)3484         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)3485         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
3486         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetData(int ordinal)3487         public new System.Data.OleDb.OleDbDataReader GetData(int ordinal) { throw null; }
GetDataTypeName(int index)3488         public override string GetDataTypeName(int index) { throw null; }
GetDateTime(int ordinal)3489         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDbDataReader(int ordinal)3490         protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)3491         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)3492         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()3493         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int index)3494         public override System.Type GetFieldType(int index) { throw null; }
GetFloat(int ordinal)3495         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)3496         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)3497         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)3498         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)3499         public override long GetInt64(int ordinal) { throw null; }
GetName(int index)3500         public override string GetName(int index) { throw null; }
GetOrdinal(string name)3501         public override int GetOrdinal(string name) { throw null; }
GetSchemaTable()3502         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)3503         public override string GetString(int ordinal) { throw null; }
GetTimeSpan(int ordinal)3504         public System.TimeSpan GetTimeSpan(int ordinal) { throw null; }
GetValue(int ordinal)3505         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)3506         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)3507         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()3508         public override bool NextResult() { throw null; }
Read()3509         public override bool Read() { throw null; }
3510     }
3511     public sealed partial class OleDbEnumerator
3512     {
OleDbEnumerator()3513         public OleDbEnumerator() { }
GetElements()3514         public System.Data.DataTable GetElements() { throw null; }
GetEnumerator(System.Type type)3515         public static System.Data.OleDb.OleDbDataReader GetEnumerator(System.Type type) { throw null; }
GetRootEnumerator()3516         public static System.Data.OleDb.OleDbDataReader GetRootEnumerator() { throw null; }
3517     }
3518     [System.SerializableAttribute]
3519     public sealed partial class OleDbError
3520     {
OleDbError()3521         internal OleDbError() { }
3522         public string Message { get { throw null; } }
3523         public int NativeError { get { throw null; } }
3524         public string Source { get { throw null; } }
3525         public string SQLState { get { throw null; } }
ToString()3526         public override string ToString() { throw null; }
3527     }
3528     [System.ComponentModel.ListBindableAttribute(false)]
3529     [System.SerializableAttribute]
3530     public sealed partial class OleDbErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
3531     {
OleDbErrorCollection()3532         internal OleDbErrorCollection() { }
3533         public int Count { get { throw null; } }
3534         public System.Data.OleDb.OleDbError this[int index] { get { throw null; } }
3535         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3536         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)3537         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.OleDb.OleDbError[] array, int index)3538         public void CopyTo(System.Data.OleDb.OleDbError[] array, int index) { }
GetEnumerator()3539         public System.Collections.IEnumerator GetEnumerator() { throw null; }
3540     }
3541     [System.SerializableAttribute]
3542     public sealed partial class OleDbException : System.Data.Common.DbException
3543     {
OleDbException()3544         internal OleDbException() { }
3545         [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbException.ErrorCodeConverter")]
3546         public override int ErrorCode { get { throw null; } }
3547         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
3548         public System.Data.OleDb.OleDbErrorCollection Errors { get { throw null; } }
3549         [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)3550         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
3551     }
3552     public sealed partial class OleDbFactory : System.Data.Common.DbProviderFactory
3553     {
OleDbFactory()3554         internal OleDbFactory() { }
3555         public static readonly System.Data.OleDb.OleDbFactory Instance;
CreateCommand()3556         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()3557         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()3558         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()3559         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()3560         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateParameter()3561         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)3562         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
3563     }
3564     public sealed partial class OleDbInfoMessageEventArgs : System.EventArgs
3565     {
OleDbInfoMessageEventArgs()3566         internal OleDbInfoMessageEventArgs() { }
3567         public int ErrorCode { get { throw null; } }
3568         public System.Data.OleDb.OleDbErrorCollection Errors { get { throw null; } }
3569         public string Message { get { throw null; } }
3570         public string Source { get { throw null; } }
ToString()3571         public override string ToString() { throw null; }
3572     }
OleDbInfoMessageEventHandler(object sender, System.Data.OleDb.OleDbInfoMessageEventArgs e)3573     public delegate void OleDbInfoMessageEventHandler(object sender, System.Data.OleDb.OleDbInfoMessageEventArgs e);
3574     public enum OleDbLiteral
3575     {
3576         Binary_Literal = 1,
3577         Catalog_Name = 2,
3578         Catalog_Separator = 3,
3579         Char_Literal = 4,
3580         Column_Alias = 5,
3581         Column_Name = 6,
3582         Correlation_Name = 7,
3583         Cube_Name = 21,
3584         Cursor_Name = 8,
3585         Dimension_Name = 22,
3586         Escape_Percent_Prefix = 9,
3587         Escape_Percent_Suffix = 29,
3588         Escape_Underscore_Prefix = 10,
3589         Escape_Underscore_Suffix = 30,
3590         Hierarchy_Name = 23,
3591         Index_Name = 11,
3592         Invalid = 0,
3593         Level_Name = 24,
3594         Like_Percent = 12,
3595         Like_Underscore = 13,
3596         Member_Name = 25,
3597         Procedure_Name = 14,
3598         Property_Name = 26,
3599         Quote_Prefix = 15,
3600         Quote_Suffix = 28,
3601         Schema_Name = 16,
3602         Schema_Separator = 27,
3603         Table_Name = 17,
3604         Text_Command = 18,
3605         User_Name = 19,
3606         View_Name = 20,
3607     }
3608     public static partial class OleDbMetaDataCollectionNames
3609     {
3610         public static readonly string Catalogs;
3611         public static readonly string Collations;
3612         public static readonly string Columns;
3613         public static readonly string Indexes;
3614         public static readonly string ProcedureColumns;
3615         public static readonly string ProcedureParameters;
3616         public static readonly string Procedures;
3617         public static readonly string Tables;
3618         public static readonly string Views;
3619     }
3620     public static partial class OleDbMetaDataColumnNames
3621     {
3622         public static readonly string BooleanFalseLiteral;
3623         public static readonly string BooleanTrueLiteral;
3624         public static readonly string DateTimeDigits;
3625         public static readonly string NativeDataType;
3626     }
3627     [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbParameter.OleDbParameterConverter")]
3628     public sealed partial class OleDbParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
3629     {
OleDbParameter()3630         public OleDbParameter() { }
OleDbParameter(string name, System.Data.OleDb.OleDbType dataType)3631         public OleDbParameter(string name, System.Data.OleDb.OleDbType dataType) { }
OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size)3632         public OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size) { }
3633         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OleDbParameter(string parameterName, System.Data.OleDb.OleDbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string srcColumn, System.Data.DataRowVersion srcVersion, object value)3634         public OleDbParameter(string parameterName, System.Data.OleDb.OleDbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string srcColumn, System.Data.DataRowVersion srcVersion, object value) { }
3635         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OleDbParameter(string parameterName, System.Data.OleDb.OleDbType dbType, int size, System.Data.ParameterDirection direction, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value)3636         public OleDbParameter(string parameterName, System.Data.OleDb.OleDbType dbType, int size, System.Data.ParameterDirection direction, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value) { }
OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size, string srcColumn)3637         public OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size, string srcColumn) { }
OleDbParameter(string name, object value)3638         public OleDbParameter(string name, object value) { }
3639         public override System.Data.DbType DbType { get { throw null; } set { } }
3640         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3641         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
3642         public override bool IsNullable { get { throw null; } set { } }
3643         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3644         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
3645         public System.Data.OleDb.OleDbType OleDbType { get { throw null; } set { } }
3646         public override string ParameterName { get { throw null; } set { } }
3647         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3648         public new byte Precision { get { throw null; } set { } }
3649         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3650         public new byte Scale { get { throw null; } set { } }
3651         public override int Size { get { throw null; } set { } }
3652         public override string SourceColumn { get { throw null; } set { } }
3653         public override bool SourceColumnNullMapping { get { throw null; } set { } }
3654         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
3655         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3656         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
3657         public override object Value { get { throw null; } set { } }
ResetDbType()3658         public override void ResetDbType() { }
ResetOleDbType()3659         public void ResetOleDbType() { }
System.ICloneable.Clone()3660         object System.ICloneable.Clone() { throw null; }
ToString()3661         public override string ToString() { throw null; }
3662     }
3663     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3664     [System.ComponentModel.ListBindableAttribute(false)]
3665     public sealed partial class OleDbParameterCollection : System.Data.Common.DbParameterCollection
3666     {
OleDbParameterCollection()3667         internal OleDbParameterCollection() { }
3668         public override int Count { get { throw null; } }
3669         public override bool IsFixedSize { get { throw null; } }
3670         public override bool IsReadOnly { get { throw null; } }
3671         public override bool IsSynchronized { get { throw null; } }
3672         [System.ComponentModel.BrowsableAttribute(false)]
3673         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3674         public new System.Data.OleDb.OleDbParameter this[int index] { get { throw null; } set { } }
3675         [System.ComponentModel.BrowsableAttribute(false)]
3676         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3677         public new System.Data.OleDb.OleDbParameter this[string parameterName] { get { throw null; } set { } }
3678         public override object SyncRoot { get { throw null; } }
Add(System.Data.OleDb.OleDbParameter value)3679         public System.Data.OleDb.OleDbParameter Add(System.Data.OleDb.OleDbParameter value) { throw null; }
3680         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)3681         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.OleDb.OleDbType oleDbType)3682         public System.Data.OleDb.OleDbParameter Add(string parameterName, System.Data.OleDb.OleDbType oleDbType) { throw null; }
Add(string parameterName, System.Data.OleDb.OleDbType oleDbType, int size)3683         public System.Data.OleDb.OleDbParameter Add(string parameterName, System.Data.OleDb.OleDbType oleDbType, int size) { throw null; }
Add(string parameterName, System.Data.OleDb.OleDbType oleDbType, int size, string sourceColumn)3684         public System.Data.OleDb.OleDbParameter Add(string parameterName, System.Data.OleDb.OleDbType oleDbType, int size, string sourceColumn) { throw null; }
3685         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3686         [System.ObsoleteAttribute("Add(String parameterName, Object value) has been deprecated.  Use AddWithValue(String parameterName, Object value).  http://go.microsoft.com/fwlink/?linkid=14202", false)]
Add(string parameterName, object value)3687         public System.Data.OleDb.OleDbParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)3688         public override void AddRange(System.Array values) { }
AddRange(System.Data.OleDb.OleDbParameter[] values)3689         public void AddRange(System.Data.OleDb.OleDbParameter[] values) { }
AddWithValue(string parameterName, object value)3690         public System.Data.OleDb.OleDbParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()3691         public override void Clear() { }
Contains(System.Data.OleDb.OleDbParameter value)3692         public bool Contains(System.Data.OleDb.OleDbParameter value) { throw null; }
Contains(object value)3693         public override bool Contains(object value) { throw null; }
Contains(string value)3694         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)3695         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.OleDb.OleDbParameter[] array, int index)3696         public void CopyTo(System.Data.OleDb.OleDbParameter[] array, int index) { }
GetEnumerator()3697         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)3698         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)3699         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.OleDb.OleDbParameter value)3700         public int IndexOf(System.Data.OleDb.OleDbParameter value) { throw null; }
IndexOf(object value)3701         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)3702         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.OleDb.OleDbParameter value)3703         public void Insert(int index, System.Data.OleDb.OleDbParameter value) { }
Insert(int index, object value)3704         public override void Insert(int index, object value) { }
Remove(System.Data.OleDb.OleDbParameter value)3705         public void Remove(System.Data.OleDb.OleDbParameter value) { }
Remove(object value)3706         public override void Remove(object value) { }
RemoveAt(int index)3707         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)3708         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)3709         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)3710         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
3711     }
3712     [System.SerializableAttribute]
3713     public sealed partial class OleDbPermission : System.Data.Common.DBDataPermission
3714     {
3715         [System.ObsoleteAttribute("OleDbPermission() has been deprecated.  Use the OleDbPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
OleDbPermission()3716         public OleDbPermission() : base (default(System.Security.Permissions.PermissionState)) { }
OleDbPermission(System.Security.Permissions.PermissionState state)3717         public OleDbPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
3718         [System.ObsoleteAttribute("OleDbPermission(PermissionState state, Boolean allowBlankPassword) has been deprecated.  Use the OleDbPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
OleDbPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword)3719         public OleDbPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
3720         [System.ComponentModel.BrowsableAttribute(false)]
3721         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3722         [System.ObsoleteAttribute("Provider property has been deprecated.  Use the Add method.  http://go.microsoft.com/fwlink/?linkid=14202")]
3723         public string Provider { get { throw null; } set { } }
Copy()3724         public override System.Security.IPermission Copy() { throw null; }
3725     }
3726     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
3727     [System.SerializableAttribute]
3728     public sealed partial class OleDbPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
3729     {
OleDbPermissionAttribute(System.Security.Permissions.SecurityAction action)3730         public OleDbPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
3731         [System.ComponentModel.BrowsableAttribute(false)]
3732         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3733         [System.ObsoleteAttribute("Provider property has been deprecated.  Use the Add method.  http://go.microsoft.com/fwlink/?linkid=14202")]
3734         public string Provider { get { throw null; } set { } }
CreatePermission()3735         public override System.Security.IPermission CreatePermission() { throw null; }
3736     }
3737     public sealed partial class OleDbRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
3738     {
OleDbRowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3739         public OleDbRowUpdatedEventArgs(System.Data.DataRow dataRow, 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)) { }
3740         public new System.Data.OleDb.OleDbCommand Command { get { throw null; } }
3741     }
OleDbRowUpdatedEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatedEventArgs e)3742     public delegate void OleDbRowUpdatedEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatedEventArgs e);
3743     public sealed partial class OleDbRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
3744     {
OleDbRowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3745         public OleDbRowUpdatingEventArgs(System.Data.DataRow dataRow, 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)) { }
3746         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
3747         public new System.Data.OleDb.OleDbCommand Command { get { throw null; } set { } }
3748     }
OleDbRowUpdatingEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatingEventArgs e)3749     public delegate void OleDbRowUpdatingEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatingEventArgs e);
3750     public sealed partial class OleDbSchemaGuid
3751     {
3752         public static readonly System.Guid Assertions;
3753         public static readonly System.Guid Catalogs;
3754         public static readonly System.Guid Character_Sets;
3755         public static readonly System.Guid Check_Constraints;
3756         public static readonly System.Guid Check_Constraints_By_Table;
3757         public static readonly System.Guid Collations;
3758         public static readonly System.Guid Columns;
3759         public static readonly System.Guid Column_Domain_Usage;
3760         public static readonly System.Guid Column_Privileges;
3761         public static readonly System.Guid Constraint_Column_Usage;
3762         public static readonly System.Guid Constraint_Table_Usage;
3763         public static readonly System.Guid DbInfoKeywords;
3764         public static readonly System.Guid DbInfoLiterals;
3765         public static readonly System.Guid Foreign_Keys;
3766         public static readonly System.Guid Indexes;
3767         public static readonly System.Guid Key_Column_Usage;
3768         public static readonly System.Guid Primary_Keys;
3769         public static readonly System.Guid Procedures;
3770         public static readonly System.Guid Procedure_Columns;
3771         public static readonly System.Guid Procedure_Parameters;
3772         public static readonly System.Guid Provider_Types;
3773         public static readonly System.Guid Referential_Constraints;
3774         public static readonly System.Guid SchemaGuids;
3775         public static readonly System.Guid Schemata;
3776         public static readonly System.Guid Sql_Languages;
3777         public static readonly System.Guid Statistics;
3778         public static readonly System.Guid Tables;
3779         public static readonly System.Guid Tables_Info;
3780         public static readonly System.Guid Table_Constraints;
3781         public static readonly System.Guid Table_Privileges;
3782         public static readonly System.Guid Table_Statistics;
3783         public static readonly System.Guid Translations;
3784         public static readonly System.Guid Trustee;
3785         public static readonly System.Guid Usage_Privileges;
3786         public static readonly System.Guid Views;
3787         public static readonly System.Guid View_Column_Usage;
3788         public static readonly System.Guid View_Table_Usage;
OleDbSchemaGuid()3789         public OleDbSchemaGuid() { }
3790     }
3791     public sealed partial class OleDbTransaction : System.Data.Common.DbTransaction
3792     {
OleDbTransaction()3793         internal OleDbTransaction() { }
3794         public new System.Data.OleDb.OleDbConnection Connection { get { throw null; } }
3795         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
3796         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Begin()3797         public System.Data.OleDb.OleDbTransaction Begin() { throw null; }
Begin(System.Data.IsolationLevel isolevel)3798         public System.Data.OleDb.OleDbTransaction Begin(System.Data.IsolationLevel isolevel) { throw null; }
Commit()3799         public override void Commit() { }
Dispose(bool disposing)3800         protected override void Dispose(bool disposing) { }
Rollback()3801         public override void Rollback() { }
3802     }
3803     public enum OleDbType
3804     {
3805         BigInt = 20,
3806         Binary = 128,
3807         Boolean = 11,
3808         BSTR = 8,
3809         Char = 129,
3810         Currency = 6,
3811         Date = 7,
3812         DBDate = 133,
3813         DBTime = 134,
3814         DBTimeStamp = 135,
3815         Decimal = 14,
3816         Double = 5,
3817         Empty = 0,
3818         Error = 10,
3819         Filetime = 64,
3820         Guid = 72,
3821         IDispatch = 9,
3822         Integer = 3,
3823         IUnknown = 13,
3824         LongVarBinary = 205,
3825         LongVarChar = 201,
3826         LongVarWChar = 203,
3827         Numeric = 131,
3828         PropVariant = 138,
3829         Single = 4,
3830         SmallInt = 2,
3831         TinyInt = 16,
3832         UnsignedBigInt = 21,
3833         UnsignedInt = 19,
3834         UnsignedSmallInt = 18,
3835         UnsignedTinyInt = 17,
3836         VarBinary = 204,
3837         VarChar = 200,
3838         Variant = 12,
3839         VarNumeric = 139,
3840         VarWChar = 202,
3841         WChar = 130,
3842     }
3843 }
3844 namespace System.Data.Sql
3845 {
3846     public sealed partial class SqlDataSourceEnumerator : System.Data.Common.DbDataSourceEnumerator
3847     {
SqlDataSourceEnumerator()3848         internal SqlDataSourceEnumerator() { }
3849         public static System.Data.Sql.SqlDataSourceEnumerator Instance { get { throw null; } }
GetDataSources()3850         public override System.Data.DataTable GetDataSources() { throw null; }
3851     }
3852     public sealed partial class SqlNotificationRequest
3853     {
SqlNotificationRequest()3854         public SqlNotificationRequest() { }
SqlNotificationRequest(string userData, string options, int timeout)3855         public SqlNotificationRequest(string userData, string options, int timeout) { }
3856         public string Options { get { throw null; } set { } }
3857         public int Timeout { get { throw null; } set { } }
3858         public string UserData { get { throw null; } set { } }
3859     }
3860 }
3861 namespace System.Data.SqlClient
3862 {
3863     [System.SerializableAttribute]
3864     public enum ApplicationIntent
3865     {
3866         ReadOnly = 1,
3867         ReadWrite = 0,
3868     }
OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e)3869     public delegate void OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e);
3870     public enum SortOrder
3871     {
3872         Ascending = 0,
3873         Descending = 1,
3874         Unspecified = -1,
3875     }
3876     public enum SqlAuthenticationMethod
3877     {
3878         ActiveDirectoryIntegrated = 3,
3879         ActiveDirectoryPassword = 2,
3880         NotSpecified = 0,
3881         SqlPassword = 1,
3882     }
3883     public sealed partial class SqlBulkCopy : System.IDisposable
3884     {
SqlBulkCopy(System.Data.SqlClient.SqlConnection connection)3885         public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection) { }
3886         [System.MonoTODOAttribute]
SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction)3887         public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction) { }
SqlBulkCopy(string connectionString)3888         public SqlBulkCopy(string connectionString) { }
3889         [System.MonoTODOAttribute]
SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions)3890         public SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions) { }
3891         public int BatchSize { get { throw null; } set { } }
3892         public int BulkCopyTimeout { get { throw null; } set { } }
3893         public System.Data.SqlClient.SqlBulkCopyColumnMappingCollection ColumnMappings { get { throw null; } }
3894         public string DestinationTableName { get { throw null; } set { } }
3895         [System.MonoTODOAttribute]
3896         public bool EnableStreaming { get { throw null; } set { } }
3897         public int NotifyAfter { get { throw null; } set { } }
3898         public event System.Data.SqlClient.SqlRowsCopiedEventHandler SqlRowsCopied { add { } remove { } }
Close()3899         public void Close() { }
System.IDisposable.Dispose()3900         void System.IDisposable.Dispose() { }
3901         [System.MonoTODOAttribute]
WriteToServer(System.Data.Common.DbDataReader reader)3902         public void WriteToServer(System.Data.Common.DbDataReader reader) { }
WriteToServer(System.Data.DataRow[] rows)3903         public void WriteToServer(System.Data.DataRow[] rows) { }
WriteToServer(System.Data.DataTable table)3904         public void WriteToServer(System.Data.DataTable table) { }
WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState)3905         public void WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState) { }
WriteToServer(System.Data.IDataReader reader)3906         public void WriteToServer(System.Data.IDataReader reader) { }
3907         [System.MonoTODOAttribute]
WriteToServerAsync(System.Data.Common.DbDataReader reader)3908         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader) { throw null; }
3909         [System.MonoTODOAttribute]
WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken)3910         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataRow[] rows)3911         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows) { throw null; }
WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken)3912         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataTable table)3913         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table) { throw null; }
WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState)3914         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)3915         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)3916         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.IDataReader reader)3917         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader) { throw null; }
WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken)3918         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken) { throw null; }
3919     }
3920     public sealed partial class SqlBulkCopyColumnMapping
3921     {
SqlBulkCopyColumnMapping()3922         public SqlBulkCopyColumnMapping() { }
SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal)3923         public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal) { }
SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn)3924         public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn) { }
SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal)3925         public SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal) { }
SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn)3926         public SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn) { }
3927         public string DestinationColumn { get { throw null; } set { } }
3928         public int DestinationOrdinal { get { throw null; } set { } }
3929         public string SourceColumn { get { throw null; } set { } }
3930         public int SourceOrdinal { get { throw null; } set { } }
3931     }
3932     public sealed partial class SqlBulkCopyColumnMappingCollection : System.Collections.CollectionBase
3933     {
SqlBulkCopyColumnMappingCollection()3934         internal SqlBulkCopyColumnMappingCollection() { }
3935         public System.Data.SqlClient.SqlBulkCopyColumnMapping this[int index] { get { throw null; } }
Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping)3936         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping) { throw null; }
Add(int sourceColumnIndex, int destinationColumnIndex)3937         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, int destinationColumnIndex) { throw null; }
Add(int sourceColumnIndex, string destinationColumn)3938         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, string destinationColumn) { throw null; }
Add(string sourceColumn, int destinationColumnIndex)3939         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, int destinationColumnIndex) { throw null; }
Add(string sourceColumn, string destinationColumn)3940         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, string destinationColumn) { throw null; }
Clear()3941         public new void Clear() { }
Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value)3942         public bool Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw null; }
CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index)3943         public void CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index) { }
IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value)3944         public int IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw null; }
Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value)3945         public void Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value) { }
Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value)3946         public void Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { }
RemoveAt(int index)3947         public new void RemoveAt(int index) { }
3948     }
3949     [System.FlagsAttribute]
3950     public enum SqlBulkCopyOptions
3951     {
3952         CheckConstraints = 2,
3953         Default = 0,
3954         FireTriggers = 16,
3955         KeepIdentity = 1,
3956         KeepNulls = 8,
3957         TableLock = 4,
3958         UseInternalTransaction = 32,
3959     }
3960     public sealed partial class SqlClientFactory : System.Data.Common.DbProviderFactory, System.IServiceProvider
3961     {
SqlClientFactory()3962         internal SqlClientFactory() { }
3963         public static readonly System.Data.SqlClient.SqlClientFactory Instance;
3964         public override bool CanCreateDataSourceEnumerator { get { throw null; } }
CreateCommand()3965         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()3966         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()3967         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()3968         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()3969         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateDataSourceEnumerator()3970         public override System.Data.Common.DbDataSourceEnumerator CreateDataSourceEnumerator() { throw null; }
CreateParameter()3971         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)3972         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
System.IServiceProvider.GetService(System.Type serviceType)3973         object System.IServiceProvider.GetService(System.Type serviceType) { throw null; }
3974     }
3975     public static partial class SqlClientMetaDataCollectionNames
3976     {
3977         public static readonly string Columns;
3978         public static readonly string Databases;
3979         public static readonly string ForeignKeys;
3980         public static readonly string IndexColumns;
3981         public static readonly string Indexes;
3982         public static readonly string Parameters;
3983         public static readonly string ProcedureColumns;
3984         public static readonly string Procedures;
3985         public static readonly string Tables;
3986         public static readonly string UserDefinedTypes;
3987         public static readonly string Users;
3988         public static readonly string ViewColumns;
3989         public static readonly string Views;
3990     }
3991     [System.SerializableAttribute]
3992     public sealed partial class SqlClientPermission : System.Data.Common.DBDataPermission
3993     {
3994         [System.ObsoleteAttribute("SqlClientPermission() has been deprecated.  Use the SqlClientPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
SqlClientPermission()3995         public SqlClientPermission() : base (default(System.Security.Permissions.PermissionState)) { }
SqlClientPermission(System.Security.Permissions.PermissionState state)3996         public SqlClientPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
3997         [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)3998         public SqlClientPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)3999         public override void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Copy()4000         public override System.Security.IPermission Copy() { throw null; }
4001     }
4002     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
4003     [System.SerializableAttribute]
4004     public sealed partial class SqlClientPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
4005     {
SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction action)4006         public SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()4007         public override System.Security.IPermission CreatePermission() { throw null; }
4008     }
4009     public sealed partial class SqlColumnEncryptionCertificateStoreProvider : System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider
4010     {
SqlColumnEncryptionCertificateStoreProvider()4011         public SqlColumnEncryptionCertificateStoreProvider() { }
DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)4012         public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey) { throw null; }
EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)4013         public override byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey) { throw null; }
4014     }
4015     public abstract partial class SqlColumnEncryptionKeyStoreProvider
4016     {
SqlColumnEncryptionKeyStoreProvider()4017         protected SqlColumnEncryptionKeyStoreProvider() { }
DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)4018         public abstract byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey);
EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)4019         public abstract byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey);
4020     }
4021     [System.ComponentModel.DefaultEventAttribute("RecordsAffected")]
4022     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.SqlCommandDesigner, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")]
4023     [System.ComponentModel.ToolboxItemAttribute("System.Drawing.Design.ToolboxItem, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4024     public sealed partial class SqlCommand : System.Data.Common.DbCommand, System.ICloneable
4025     {
SqlCommand()4026         public SqlCommand() { }
SqlCommand(string cmdText)4027         public SqlCommand(string cmdText) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection)4028         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction)4029         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction, System.Data.SqlClient.SqlCommandColumnEncryptionSetting columnEncryptionSetting)4030         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction, System.Data.SqlClient.SqlCommandColumnEncryptionSetting columnEncryptionSetting) { }
4031         public System.Data.SqlClient.SqlCommandColumnEncryptionSetting ColumnEncryptionSetting { get { throw null; } }
4032         [System.ComponentModel.DefaultValueAttribute("")]
4033         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.SQL.Design.SqlCommandTextEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4034         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4035         public override string CommandText { get { throw null; } set { } }
4036         public override int CommandTimeout { get { throw null; } set { } }
4037         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
4038         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4039         public override System.Data.CommandType CommandType { get { throw null; } set { } }
4040         [System.ComponentModel.DefaultValueAttribute(null)]
4041         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4042         public new System.Data.SqlClient.SqlConnection Connection { get { throw null; } set { } }
4043         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
4044         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
4045         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
4046         [System.ComponentModel.BrowsableAttribute(false)]
4047         [System.ComponentModel.DefaultValueAttribute(true)]
4048         [System.ComponentModel.DesignOnlyAttribute(true)]
4049         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4050         public override bool DesignTimeVisible { get { throw null; } set { } }
4051         [System.ComponentModel.BrowsableAttribute(false)]
4052         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4053         public System.Data.Sql.SqlNotificationRequest Notification { get { throw null; } set { } }
4054         [System.ComponentModel.DefaultValueAttribute(true)]
4055         public bool NotificationAutoEnlist { get { throw null; } set { } }
4056         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
4057         public new System.Data.SqlClient.SqlParameterCollection Parameters { get { throw null; } }
4058         [System.ComponentModel.BrowsableAttribute(false)]
4059         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4060         public new System.Data.SqlClient.SqlTransaction Transaction { get { throw null; } set { } }
4061         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
4062         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
4063         public event System.Data.StatementCompletedEventHandler StatementCompleted { add { } remove { } }
BeginExecuteNonQuery()4064         public System.IAsyncResult BeginExecuteNonQuery() { throw null; }
BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject)4065         public System.IAsyncResult BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject) { throw null; }
BeginExecuteReader()4066         public System.IAsyncResult BeginExecuteReader() { throw null; }
BeginExecuteReader(System.AsyncCallback callback, object stateObject)4067         public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject) { throw null; }
BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior)4068         public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior) { throw null; }
BeginExecuteReader(System.Data.CommandBehavior behavior)4069         public System.IAsyncResult BeginExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
BeginExecuteXmlReader()4070         public System.IAsyncResult BeginExecuteXmlReader() { throw null; }
BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject)4071         public System.IAsyncResult BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject) { throw null; }
Cancel()4072         public override void Cancel() { }
Clone()4073         public System.Data.SqlClient.SqlCommand Clone() { throw null; }
CreateDbParameter()4074         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()4075         public new System.Data.SqlClient.SqlParameter CreateParameter() { throw null; }
Dispose(bool disposing)4076         protected override void Dispose(bool disposing) { }
EndExecuteNonQuery(System.IAsyncResult asyncResult)4077         public int EndExecuteNonQuery(System.IAsyncResult asyncResult) { throw null; }
EndExecuteReader(System.IAsyncResult asyncResult)4078         public System.Data.SqlClient.SqlDataReader EndExecuteReader(System.IAsyncResult asyncResult) { throw null; }
EndExecuteXmlReader(System.IAsyncResult asyncResult)4079         public System.Xml.XmlReader EndExecuteXmlReader(System.IAsyncResult asyncResult) { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)4080         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)4081         protected override System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteNonQuery()4082         public override int ExecuteNonQuery() { throw null; }
ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken)4083         public override System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReader()4084         public new System.Data.SqlClient.SqlDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)4085         public new System.Data.SqlClient.SqlDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync()4086         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync() { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior)4087         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)4088         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)4089         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteScalar()4090         public override object ExecuteScalar() { throw null; }
ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken)4091         public override System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteXmlReader()4092         public System.Xml.XmlReader ExecuteXmlReader() { throw null; }
ExecuteXmlReaderAsync()4093         public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync() { throw null; }
ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken)4094         public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Prepare()4095         public override void Prepare() { }
ResetCommandTimeout()4096         public void ResetCommandTimeout() { }
System.ICloneable.Clone()4097         object System.ICloneable.Clone() { throw null; }
4098     }
4099     public sealed partial class SqlCommandBuilder : System.Data.Common.DbCommandBuilder
4100     {
SqlCommandBuilder()4101         public SqlCommandBuilder() { }
SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter)4102         public SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter) { }
4103         [System.ComponentModel.BrowsableAttribute(false)]
4104         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4105         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4106         public override System.Data.Common.CatalogLocation CatalogLocation { get { throw null; } set { } }
4107         [System.ComponentModel.BrowsableAttribute(false)]
4108         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4109         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4110         public override string CatalogSeparator { get { throw null; } set { } }
4111         [System.ComponentModel.DefaultValueAttribute(null)]
4112         public new System.Data.SqlClient.SqlDataAdapter DataAdapter { get { throw null; } set { } }
4113         [System.ComponentModel.BrowsableAttribute(false)]
4114         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4115         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4116         public override string QuotePrefix { get { throw null; } set { } }
4117         [System.ComponentModel.BrowsableAttribute(false)]
4118         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4119         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4120         public override string QuoteSuffix { get { throw null; } set { } }
4121         [System.ComponentModel.BrowsableAttribute(false)]
4122         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4123         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4124         public override string SchemaSeparator { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause)4125         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)4126         public static void DeriveParameters(System.Data.SqlClient.SqlCommand command) { }
GetDeleteCommand()4127         public new System.Data.SqlClient.SqlCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)4128         public new System.Data.SqlClient.SqlCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()4129         public new System.Data.SqlClient.SqlCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)4130         public new System.Data.SqlClient.SqlCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)4131         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)4132         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)4133         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetSchemaTable(System.Data.Common.DbCommand srcCommand)4134         protected override System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand srcCommand) { throw null; }
GetUpdateCommand()4135         public new System.Data.SqlClient.SqlCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)4136         public new System.Data.SqlClient.SqlCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
InitializeCommand(System.Data.Common.DbCommand command)4137         protected override System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw null; }
QuoteIdentifier(string unquotedIdentifier)4138         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)4139         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)4140         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
4141     }
4142     public enum SqlCommandColumnEncryptionSetting
4143     {
4144         Disabled = 3,
4145         Enabled = 1,
4146         ResultSetOnly = 2,
4147         UseConnectionSetting = 0,
4148     }
4149     [System.ComponentModel.DefaultEventAttribute("InfoMessage")]
4150     public sealed partial class SqlConnection : System.Data.Common.DbConnection, System.ICloneable
4151     {
SqlConnection()4152         public SqlConnection() { }
SqlConnection(string connectionString)4153         public SqlConnection(string connectionString) { }
SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential)4154         public SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential) { }
4155         public string AccessToken { get { throw null; } set { } }
4156         [System.MonoTODOAttribute]
4157         public System.Guid ClientConnectionId { get { throw null; } }
4158         public static System.Collections.Generic.IDictionary<string, System.Collections.Generic.IList<string>> ColumnEncryptionTrustedMasterKeyPaths { get { throw null; } }
4159         [System.ComponentModel.DefaultValueAttribute("")]
4160         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.SQL.Design.SqlConnectionStringEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4161         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
4162         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4163         public override string ConnectionString { get { throw null; } [System.MonoTODOAttribute("persist security info, encrypt, enlist keyword not implemented")]set { } }
4164         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4165         public override int ConnectionTimeout { get { throw null; } }
4166         public System.Data.SqlClient.SqlCredential Credential { get { throw null; } set { } }
4167         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4168         public override string Database { get { throw null; } }
4169         [System.ComponentModel.BrowsableAttribute(true)]
4170         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4171         public override string DataSource { get { throw null; } }
4172         protected override System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
4173         public bool FireInfoMessageEventOnUserErrors { get { throw null; } set { } }
4174         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4175         public int PacketSize { get { throw null; } }
4176         [System.ComponentModel.BrowsableAttribute(false)]
4177         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4178         public override string ServerVersion { get { throw null; } }
4179         [System.ComponentModel.BrowsableAttribute(false)]
4180         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4181         public override System.Data.ConnectionState State { get { throw null; } }
4182         [System.ComponentModel.DefaultValueAttribute(false)]
4183         public bool StatisticsEnabled { get { throw null; } set { } }
4184         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4185         public string WorkstationId { get { throw null; } }
4186         public event System.Data.SqlClient.SqlInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)4187         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()4188         public new System.Data.SqlClient.SqlTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel iso)4189         public new System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso) { throw null; }
BeginTransaction(System.Data.IsolationLevel iso, string transactionName)4190         public System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso, string transactionName) { throw null; }
BeginTransaction(string transactionName)4191         public System.Data.SqlClient.SqlTransaction BeginTransaction(string transactionName) { throw null; }
ChangeDatabase(string database)4192         public override void ChangeDatabase(string database) { }
ChangePassword(string connectionString, System.Data.SqlClient.SqlCredential credential, System.Security.SecureString newSecurePassword)4193         public static void ChangePassword(string connectionString, System.Data.SqlClient.SqlCredential credential, System.Security.SecureString newSecurePassword) { }
ChangePassword(string connectionString, string newPassword)4194         public static void ChangePassword(string connectionString, string newPassword) { }
ClearAllPools()4195         public static void ClearAllPools() { }
ClearPool(System.Data.SqlClient.SqlConnection connection)4196         public static void ClearPool(System.Data.SqlClient.SqlConnection connection) { }
Close()4197         public override void Close() { }
CreateCommand()4198         public new System.Data.SqlClient.SqlCommand CreateCommand() { throw null; }
CreateDbCommand()4199         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)4200         protected override void Dispose(bool disposing) { }
4201         [System.MonoTODOAttribute("Not sure what this means at present.")]
EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)4202         public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) { }
EnlistTransaction(System.Transactions.Transaction transaction)4203         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()4204         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)4205         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)4206         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
Open()4207         public override void Open() { }
OpenAsync(System.Threading.CancellationToken cancellationToken)4208         public override System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
RegisterColumnEncryptionKeyStoreProviders(System.Collections.Generic.IDictionary<string, System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider> customProviders)4209         public static void RegisterColumnEncryptionKeyStoreProviders(System.Collections.Generic.IDictionary<string, System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider> customProviders) { }
4210         [System.MonoTODOAttribute]
ResetStatistics()4211         public void ResetStatistics() { }
4212         [System.MonoTODOAttribute]
RetrieveStatistics()4213         public System.Collections.IDictionary RetrieveStatistics() { throw null; }
System.ICloneable.Clone()4214         object System.ICloneable.Clone() { throw null; }
4215     }
4216     public enum SqlConnectionColumnEncryptionSetting
4217     {
4218         Disabled = 0,
4219         Enabled = 1,
4220     }
4221     [System.ComponentModel.DefaultPropertyAttribute("DataSource")]
4222     [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlConnectionStringBuilderConverter")]
4223     public sealed partial class SqlConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
4224     {
SqlConnectionStringBuilder()4225         public SqlConnectionStringBuilder() { }
SqlConnectionStringBuilder(string connectionString)4226         public SqlConnectionStringBuilder(string connectionString) { }
4227         [System.ComponentModel.DisplayNameAttribute("ApplicationIntent")]
4228         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4229         public System.Data.SqlClient.ApplicationIntent ApplicationIntent { get { throw null; } set { } }
4230         [System.ComponentModel.DisplayNameAttribute("Application Name")]
4231         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4232         public string ApplicationName { get { throw null; } set { } }
4233         [System.ComponentModel.DisplayNameAttribute("Asynchronous Processing")]
4234         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4235         public bool AsynchronousProcessing { get { throw null; } set { } }
4236         [System.ComponentModel.DisplayNameAttribute("AttachDbFilename")]
4237         [System.ComponentModel.EditorAttribute("System.Windows.Forms.Design.FileNameEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4238         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4239         public string AttachDBFilename { get { throw null; } set { } }
4240         [System.ComponentModel.DisplayNameAttribute("Authentication")]
4241         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4242         public System.Data.SqlClient.SqlAuthenticationMethod Authentication { get { throw null; } set { } }
4243         [System.ComponentModel.DisplayNameAttribute("Column Encryption Setting")]
4244         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4245         public System.Data.SqlClient.SqlConnectionColumnEncryptionSetting ColumnEncryptionSetting { get { throw null; } set { } }
4246         [System.ComponentModel.BrowsableAttribute(false)]
4247         [System.ComponentModel.DisplayNameAttribute("Connection Reset")]
4248         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4249         [System.ObsoleteAttribute("ConnectionReset has been deprecated.  SqlConnection will ignore the 'connection reset' keyword and always reset the connection")]
4250         public bool ConnectionReset { get { throw null; } set { } }
4251         [System.ComponentModel.DisplayNameAttribute("ConnectRetryCount")]
4252         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4253         public int ConnectRetryCount { get { throw null; } set { } }
4254         [System.ComponentModel.DisplayNameAttribute("ConnectRetryInterval")]
4255         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4256         public int ConnectRetryInterval { get { throw null; } set { } }
4257         [System.ComponentModel.DisplayNameAttribute("Connect Timeout")]
4258         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4259         public int ConnectTimeout { get { throw null; } set { } }
4260         [System.ComponentModel.DisplayNameAttribute("Context Connection")]
4261         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4262         public bool ContextConnection { get { throw null; } set { } }
4263         [System.ComponentModel.DisplayNameAttribute("Current Language")]
4264         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4265         public string CurrentLanguage { get { throw null; } set { } }
4266         [System.ComponentModel.DisplayNameAttribute("Data Source")]
4267         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4268         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlDataSourceConverter")]
4269         public string DataSource { get { throw null; } set { } }
4270         [System.ComponentModel.DisplayNameAttribute("Encrypt")]
4271         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4272         public bool Encrypt { get { throw null; } set { } }
4273         [System.ComponentModel.DisplayNameAttribute("Enlist")]
4274         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4275         public bool Enlist { get { throw null; } set { } }
4276         [System.ComponentModel.DisplayNameAttribute("Failover Partner")]
4277         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4278         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlDataSourceConverter")]
4279         public string FailoverPartner { get { throw null; } set { } }
4280         [System.ComponentModel.DisplayNameAttribute("Initial Catalog")]
4281         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4282         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlInitialCatalogConverter")]
4283         public string InitialCatalog { get { throw null; } set { } }
4284         [System.ComponentModel.DisplayNameAttribute("Integrated Security")]
4285         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4286         public bool IntegratedSecurity { get { throw null; } set { } }
4287         public override bool IsFixedSize { get { throw null; } }
4288         public override object this[string keyword] { get { throw null; } set { } }
4289         public override System.Collections.ICollection Keys { get { throw null; } }
4290         [System.ComponentModel.DisplayNameAttribute("Load Balance Timeout")]
4291         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4292         public int LoadBalanceTimeout { get { throw null; } set { } }
4293         [System.ComponentModel.DisplayNameAttribute("Max Pool Size")]
4294         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4295         public int MaxPoolSize { get { throw null; } set { } }
4296         [System.ComponentModel.DisplayNameAttribute("Min Pool Size")]
4297         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4298         public int MinPoolSize { get { throw null; } set { } }
4299         [System.ComponentModel.DisplayNameAttribute("MultipleActiveResultSets")]
4300         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4301         public bool MultipleActiveResultSets { get { throw null; } set { } }
4302         [System.ComponentModel.DisplayNameAttribute("MultiSubnetFailover")]
4303         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4304         public bool MultiSubnetFailover { get { throw null; } set { } }
4305         [System.ComponentModel.DisplayNameAttribute("Network Library")]
4306         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4307         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.NetworkLibraryConverter")]
4308         public string NetworkLibrary { get { throw null; } set { } }
4309         [System.ComponentModel.DisplayNameAttribute("Packet Size")]
4310         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4311         public int PacketSize { get { throw null; } set { } }
4312         [System.ComponentModel.DisplayNameAttribute("Password")]
4313         [System.ComponentModel.PasswordPropertyTextAttribute(true)]
4314         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4315         public string Password { get { throw null; } set { } }
4316         [System.ComponentModel.DisplayNameAttribute("Persist Security Info")]
4317         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4318         public bool PersistSecurityInfo { get { throw null; } set { } }
4319         [System.ComponentModel.DisplayNameAttribute("Pooling")]
4320         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4321         public bool Pooling { get { throw null; } set { } }
4322         [System.ComponentModel.DisplayNameAttribute("Replication")]
4323         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4324         public bool Replication { get { throw null; } set { } }
4325         [System.ComponentModel.DisplayNameAttribute("Transaction Binding")]
4326         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4327         public string TransactionBinding { get { throw null; } set { } }
4328         [System.ComponentModel.DisplayNameAttribute("TrustServerCertificate")]
4329         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4330         public bool TrustServerCertificate { get { throw null; } set { } }
4331         [System.ComponentModel.DisplayNameAttribute("Type System Version")]
4332         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4333         public string TypeSystemVersion { get { throw null; } set { } }
4334         [System.ComponentModel.DisplayNameAttribute("User ID")]
4335         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4336         public string UserID { get { throw null; } set { } }
4337         [System.ComponentModel.DisplayNameAttribute("User Instance")]
4338         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4339         public bool UserInstance { get { throw null; } set { } }
4340         public override System.Collections.ICollection Values { get { throw null; } }
4341         [System.ComponentModel.DisplayNameAttribute("Workstation ID")]
4342         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4343         public string WorkstationID { get { throw null; } set { } }
Clear()4344         public override void Clear() { }
ContainsKey(string keyword)4345         public override bool ContainsKey(string keyword) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)4346         protected override void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)4347         public override bool Remove(string keyword) { throw null; }
ShouldSerialize(string keyword)4348         public override bool ShouldSerialize(string keyword) { throw null; }
TryGetValue(string keyword, out object value)4349         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
4350     }
4351     [System.SerializableAttribute]
4352     public sealed partial class SqlCredential
4353     {
SqlCredential(string userId, System.Security.SecureString password)4354         public SqlCredential(string userId, System.Security.SecureString password) { }
4355         public System.Security.SecureString Password { get { throw null; } }
4356         public string UserId { get { throw null; } }
4357     }
4358     [System.ComponentModel.DefaultEventAttribute("RowUpdated")]
4359     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.SqlDataAdapterDesigner, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")]
4360     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.SqlDataAdapterToolboxItem, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4361     public sealed partial class SqlDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
4362     {
SqlDataAdapter()4363         public SqlDataAdapter() { }
SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand)4364         public SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand) { }
SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection)4365         public SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection) { }
SqlDataAdapter(string selectCommandText, string selectConnectionString)4366         public SqlDataAdapter(string selectCommandText, string selectConnectionString) { }
4367         [System.ComponentModel.DefaultValueAttribute(null)]
4368         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4369         public new System.Data.SqlClient.SqlCommand DeleteCommand { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4370         [System.ComponentModel.DefaultValueAttribute(null)]
4371         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4372         public new System.Data.SqlClient.SqlCommand InsertCommand { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4373         [System.ComponentModel.DefaultValueAttribute(null)]
4374         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4375         public new System.Data.SqlClient.SqlCommand SelectCommand { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4376         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
4377         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
4378         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
4379         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
4380         public override int UpdateBatchSize { get { throw null; } set { } }
4381         [System.ComponentModel.DefaultValueAttribute(null)]
4382         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4383         public new System.Data.SqlClient.SqlCommand UpdateCommand { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4384         public event System.Data.SqlClient.SqlRowUpdatedEventHandler RowUpdated { add { } remove { } }
4385         public event System.Data.SqlClient.SqlRowUpdatingEventHandler RowUpdating { add { } remove { } }
4386         [System.MonoTODOAttribute]
AddToBatch(System.Data.IDbCommand command)4387         protected override int AddToBatch(System.Data.IDbCommand command) { throw null; }
4388         [System.MonoTODOAttribute]
ClearBatch()4389         protected override void ClearBatch() { }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)4390         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)4391         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; }
4392         [System.MonoTODOAttribute]
ExecuteBatch()4393         protected override int ExecuteBatch() { throw null; }
4394         [System.MonoTODOAttribute]
GetBatchedParameter(int commandIdentifier, int parameterIndex)4395         protected override System.Data.IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex) { throw null; }
GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error)4396         protected override bool GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error) { recordsAffected = default(int); error = default(System.Exception); throw null; }
4397         [System.MonoTODOAttribute]
InitializeBatching()4398         protected override void InitializeBatching() { }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)4399         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)4400         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
4401         [System.MonoTODOAttribute]
System.ICloneable.Clone()4402         object System.ICloneable.Clone() { throw null; }
4403         [System.MonoTODOAttribute]
TerminateBatching()4404         protected override void TerminateBatching() { }
4405     }
4406     public partial class SqlDataReader : System.Data.Common.DbDataReader, System.Data.IDataReader, System.Data.IDataRecord, System.IDisposable
4407     {
SqlDataReader()4408         internal SqlDataReader() { }
4409         protected System.Data.SqlClient.SqlConnection Connection { get { throw null; } }
4410         public override int Depth { get { throw null; } }
4411         public override int FieldCount { get { throw null; } }
4412         public override bool HasRows { get { throw null; } }
4413         public override bool IsClosed { get { throw null; } }
4414         public override object this[int i] { get { throw null; } }
4415         public override object this[string name] { get { throw null; } }
4416         public override int RecordsAffected { get { throw null; } }
4417         public override int VisibleFieldCount { get { throw null; } }
Close()4418         public override void Close() { }
GetBoolean(int i)4419         public override bool GetBoolean(int i) { throw null; }
GetByte(int i)4420         public override byte GetByte(int i) { throw null; }
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)4421         public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
4422         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetChar(int i)4423         public override char GetChar(int i) { throw null; }
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)4424         public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int i)4425         public override string GetDataTypeName(int i) { throw null; }
GetDateTime(int i)4426         public override System.DateTime GetDateTime(int i) { throw null; }
4427         [System.MonoTODOAttribute]
GetDateTimeOffset(int i)4428         public virtual System.DateTimeOffset GetDateTimeOffset(int i) { throw null; }
GetDecimal(int i)4429         public override decimal GetDecimal(int i) { throw null; }
GetDouble(int i)4430         public override double GetDouble(int i) { throw null; }
GetEnumerator()4431         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int i)4432         public override System.Type GetFieldType(int i) { throw null; }
GetFieldValueAsync(int i, System.Threading.CancellationToken cancellationToken)4433         public override System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int i, System.Threading.CancellationToken cancellationToken) { throw null; }
GetFieldValue(int i)4434         public override T GetFieldValue<T>(int i) { throw null; }
GetFloat(int i)4435         public override float GetFloat(int i) { throw null; }
GetGuid(int i)4436         public override System.Guid GetGuid(int i) { throw null; }
GetInt16(int i)4437         public override short GetInt16(int i) { throw null; }
GetInt32(int i)4438         public override int GetInt32(int i) { throw null; }
GetInt64(int i)4439         public override long GetInt64(int i) { throw null; }
GetName(int i)4440         public override string GetName(int i) { throw null; }
GetOrdinal(string name)4441         public override int GetOrdinal(string name) { throw null; }
GetProviderSpecificFieldType(int i)4442         public override System.Type GetProviderSpecificFieldType(int i) { throw null; }
GetProviderSpecificValue(int i)4443         public override object GetProviderSpecificValue(int i) { throw null; }
GetProviderSpecificValues(object[] values)4444         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()4445         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetSqlBinary(int i)4446         public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int i) { throw null; }
GetSqlBoolean(int i)4447         public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int i) { throw null; }
GetSqlByte(int i)4448         public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int i) { throw null; }
GetSqlBytes(int i)4449         public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int i) { throw null; }
4450         [System.MonoTODOAttribute]
GetSqlChars(int i)4451         public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int i) { throw null; }
GetSqlDateTime(int i)4452         public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int i) { throw null; }
GetSqlDecimal(int i)4453         public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int i) { throw null; }
GetSqlDouble(int i)4454         public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int i) { throw null; }
GetSqlGuid(int i)4455         public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int i) { throw null; }
GetSqlInt16(int i)4456         public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int i) { throw null; }
GetSqlInt32(int i)4457         public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int i) { throw null; }
GetSqlInt64(int i)4458         public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int i) { throw null; }
GetSqlMoney(int i)4459         public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int i) { throw null; }
GetSqlSingle(int i)4460         public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int i) { throw null; }
GetSqlString(int i)4461         public virtual System.Data.SqlTypes.SqlString GetSqlString(int i) { throw null; }
GetSqlValue(int i)4462         public virtual object GetSqlValue(int i) { throw null; }
GetSqlValues(object[] values)4463         public virtual int GetSqlValues(object[] values) { throw null; }
GetSqlXml(int i)4464         public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int i) { throw null; }
GetStream(int i)4465         public override System.IO.Stream GetStream(int i) { throw null; }
GetString(int i)4466         public override string GetString(int i) { throw null; }
GetTextReader(int i)4467         public override System.IO.TextReader GetTextReader(int i) { throw null; }
4468         [System.MonoTODOAttribute]
GetTimeSpan(int i)4469         public virtual System.TimeSpan GetTimeSpan(int i) { throw null; }
GetValue(int i)4470         public override object GetValue(int i) { throw null; }
GetValues(object[] values)4471         public override int GetValues(object[] values) { throw null; }
4472         [System.MonoTODOAttribute]
GetXmlReader(int i)4473         public virtual System.Xml.XmlReader GetXmlReader(int i) { throw null; }
IsCommandBehavior(System.Data.CommandBehavior condition)4474         protected internal bool IsCommandBehavior(System.Data.CommandBehavior condition) { throw null; }
IsDBNull(int i)4475         public override bool IsDBNull(int i) { throw null; }
IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken)4476         public override System.Threading.Tasks.Task<bool> IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken) { throw null; }
NextResult()4477         public override bool NextResult() { throw null; }
NextResultAsync(System.Threading.CancellationToken cancellationToken)4478         public override System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read()4479         public override bool Read() { throw null; }
ReadAsync(System.Threading.CancellationToken cancellationToken)4480         public override System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDataRecord.GetData(int i)4481         System.Data.IDataReader System.Data.IDataRecord.GetData(int i) { throw null; }
4482     }
4483     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(0))]
4484     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4485     [System.Runtime.InteropServices.GuidAttribute("afef65ad-4577-447a-a148-83acadd3d4b9")]
4486     public sealed partial class SQLDebugging
4487     {
4488         [System.MonoTODOAttribute]
SQLDebugging()4489         public SQLDebugging() { }
4490     }
4491     public sealed partial class SqlDependency
4492     {
4493         [System.MonoTODOAttribute]
SqlDependency()4494         public SqlDependency() { }
4495         [System.MonoTODOAttribute]
SqlDependency(System.Data.SqlClient.SqlCommand command)4496         public SqlDependency(System.Data.SqlClient.SqlCommand command) { }
4497         [System.MonoTODOAttribute]
SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout)4498         public SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout) { }
4499         [System.MonoTODOAttribute]
4500         public bool HasChanges { get { throw null; } }
4501         public string Id { get { throw null; } }
4502         [System.MonoTODOAttribute]
4503         public event System.Data.SqlClient.OnChangeEventHandler OnChange { add { } remove { } }
4504         [System.MonoTODOAttribute]
AddCommandDependency(System.Data.SqlClient.SqlCommand command)4505         public void AddCommandDependency(System.Data.SqlClient.SqlCommand command) { }
4506         [System.MonoTODOAttribute]
4507         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Start(string connectionString)4508         public static bool Start(string connectionString) { throw null; }
4509         [System.MonoTODOAttribute]
4510         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Start(string connectionString, string queue)4511         public static bool Start(string connectionString, string queue) { throw null; }
4512         [System.MonoTODOAttribute]
4513         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Stop(string connectionString)4514         public static bool Stop(string connectionString) { throw null; }
4515         [System.MonoTODOAttribute]
4516         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Stop(string connectionString, string queue)4517         public static bool Stop(string connectionString, string queue) { throw null; }
4518     }
4519     [System.SerializableAttribute]
4520     public sealed partial class SqlError
4521     {
SqlError()4522         internal SqlError() { }
4523         public byte Class { get { throw null; } }
4524         public int LineNumber { get { throw null; } }
4525         public string Message { get { throw null; } }
4526         public int Number { get { throw null; } }
4527         public string Procedure { get { throw null; } }
4528         public string Server { get { throw null; } }
4529         public string Source { get { throw null; } }
4530         public byte State { get { throw null; } }
ToString()4531         public override string ToString() { throw null; }
4532     }
4533     [System.SerializableAttribute]
4534     public sealed partial class SqlErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
4535     {
SqlErrorCollection()4536         internal SqlErrorCollection() { }
4537         public int Count { get { throw null; } }
4538         public System.Data.SqlClient.SqlError this[int index] { get { throw null; } }
4539         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4540         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)4541         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.SqlClient.SqlError[] array, int index)4542         public void CopyTo(System.Data.SqlClient.SqlError[] array, int index) { }
GetEnumerator()4543         public System.Collections.IEnumerator GetEnumerator() { throw null; }
4544     }
4545     [System.SerializableAttribute]
4546     public sealed partial class SqlException : System.Data.Common.DbException
4547     {
SqlException()4548         internal SqlException() { }
4549         public byte Class { get { throw null; } }
4550         [System.MonoTODOAttribute]
4551         public System.Guid ClientConnectionId { get { throw null; } }
4552         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
4553         public System.Data.SqlClient.SqlErrorCollection Errors { get { throw null; } }
4554         public int LineNumber { get { throw null; } }
4555         public int Number { get { throw null; } }
4556         public string Procedure { get { throw null; } }
4557         public string Server { get { throw null; } }
4558         public override string Source { get { throw null; } }
4559         public byte State { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)4560         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
ToString()4561         public override string ToString() { throw null; }
4562     }
4563     public sealed partial class SqlInfoMessageEventArgs : System.EventArgs
4564     {
SqlInfoMessageEventArgs()4565         internal SqlInfoMessageEventArgs() { }
4566         public System.Data.SqlClient.SqlErrorCollection Errors { get { throw null; } }
4567         public string Message { get { throw null; } }
4568         public string Source { get { throw null; } }
ToString()4569         public override string ToString() { throw null; }
4570     }
SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e)4571     public delegate void SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e);
4572     public partial class SqlNotificationEventArgs : System.EventArgs
4573     {
SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source)4574         public SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source) { }
4575         public System.Data.SqlClient.SqlNotificationInfo Info { get { throw null; } }
4576         public System.Data.SqlClient.SqlNotificationSource Source { get { throw null; } }
4577         public System.Data.SqlClient.SqlNotificationType Type { get { throw null; } }
4578     }
4579     public enum SqlNotificationInfo
4580     {
4581         AlreadyChanged = -2,
4582         Alter = 5,
4583         Delete = 3,
4584         Drop = 4,
4585         Error = 7,
4586         Expired = 12,
4587         Insert = 1,
4588         Invalid = 9,
4589         Isolation = 11,
4590         Merge = 16,
4591         Options = 10,
4592         PreviousFire = 14,
4593         Query = 8,
4594         Resource = 13,
4595         Restart = 6,
4596         TemplateLimit = 15,
4597         Truncate = 0,
4598         Unknown = -1,
4599         Update = 2,
4600     }
4601     public enum SqlNotificationSource
4602     {
4603         Client = -2,
4604         Data = 0,
4605         Database = 3,
4606         Environment = 6,
4607         Execution = 7,
4608         Object = 2,
4609         Owner = 8,
4610         Statement = 5,
4611         System = 4,
4612         Timeout = 1,
4613         Unknown = -1,
4614     }
4615     public enum SqlNotificationType
4616     {
4617         Change = 0,
4618         Subscribe = 1,
4619         Unknown = -1,
4620     }
4621     [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlParameter+SqlParameterConverter, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
4622     public sealed partial class SqlParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
4623     {
SqlParameter()4624         public SqlParameter() { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType)4625         public SqlParameter(string parameterName, System.Data.SqlDbType dbType) { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size)4626         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size) { }
4627         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
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)4628         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)4629         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)4630         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, string sourceColumn) { }
SqlParameter(string parameterName, object value)4631         public SqlParameter(string parameterName, object value) { }
4632         [System.ComponentModel.BrowsableAttribute(false)]
4633         public System.Data.SqlTypes.SqlCompareOptions CompareInfo { get { throw null; } set { } }
4634         public override System.Data.DbType DbType { get { throw null; } set { } }
4635         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4636         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
4637         public bool ForceColumnEncryption { get { throw null; } set { } }
4638         public override bool IsNullable { get { throw null; } set { } }
4639         [System.ComponentModel.BrowsableAttribute(false)]
4640         public int LocaleId { get { throw null; } set { } }
4641         [System.ComponentModel.BrowsableAttribute(false)]
4642         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4643         public int Offset { get { throw null; } set { } }
4644         public override string ParameterName { get { throw null; } set { } }
4645         [System.ComponentModel.DefaultValueAttribute(0)]
4646         public new byte Precision { get { throw null; } set { } }
4647         [System.ComponentModel.DefaultValueAttribute(0)]
4648         public new byte Scale { get { throw null; } set { } }
4649         public override int Size { get { throw null; } set { } }
4650         public override string SourceColumn { get { throw null; } set { } }
4651         public override bool SourceColumnNullMapping { get { throw null; } set { } }
4652         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
4653         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4654         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
4655         public System.Data.SqlDbType SqlDbType { get { throw null; } set { } }
4656         [System.ComponentModel.BrowsableAttribute(false)]
4657         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4658         public object SqlValue { get { throw null; } set { } }
4659         [System.ComponentModel.BrowsableAttribute(false)]
4660         public string TypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4661         [System.ComponentModel.BrowsableAttribute(false)]
4662         public string UdtTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4663         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4664         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
4665         public override object Value { get { throw null; } set { } }
4666         public string XmlSchemaCollectionDatabase { get { throw null; } set { } }
4667         public string XmlSchemaCollectionName { get { throw null; } set { } }
4668         public string XmlSchemaCollectionOwningSchema { get { throw null; } set { } }
ResetDbType()4669         public override void ResetDbType() { }
ResetSqlDbType()4670         public void ResetSqlDbType() { }
System.ICloneable.Clone()4671         object System.ICloneable.Clone() { throw null; }
ToString()4672         public override string ToString() { throw null; }
4673     }
4674     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4675     [System.ComponentModel.ListBindableAttribute(false)]
4676     public sealed partial class SqlParameterCollection : System.Data.Common.DbParameterCollection
4677     {
SqlParameterCollection()4678         internal SqlParameterCollection() { }
4679         public override int Count { get { throw null; } }
4680         public override bool IsFixedSize { get { throw null; } }
4681         public override bool IsReadOnly { get { throw null; } }
4682         public override bool IsSynchronized { get { throw null; } }
4683         [System.ComponentModel.BrowsableAttribute(false)]
4684         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4685         public new System.Data.SqlClient.SqlParameter this[int index] { get { throw null; } set { } }
4686         [System.ComponentModel.BrowsableAttribute(false)]
4687         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4688         public new System.Data.SqlClient.SqlParameter this[string parameterName] { get { throw null; } set { } }
4689         public override object SyncRoot { get { throw null; } }
Add(System.Data.SqlClient.SqlParameter value)4690         public System.Data.SqlClient.SqlParameter Add(System.Data.SqlClient.SqlParameter value) { throw null; }
4691         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)4692         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType)4693         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType, int size)4694         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)4695         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType, int size, string sourceColumn) { throw null; }
4696         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4697         [System.ObsoleteAttribute("Do not call this method.")]
Add(string parameterName, object value)4698         public System.Data.SqlClient.SqlParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)4699         public override void AddRange(System.Array values) { }
AddRange(System.Data.SqlClient.SqlParameter[] values)4700         public void AddRange(System.Data.SqlClient.SqlParameter[] values) { }
AddWithValue(string parameterName, object value)4701         public System.Data.SqlClient.SqlParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()4702         public override void Clear() { }
Contains(System.Data.SqlClient.SqlParameter value)4703         public bool Contains(System.Data.SqlClient.SqlParameter value) { throw null; }
Contains(object value)4704         public override bool Contains(object value) { throw null; }
Contains(string value)4705         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)4706         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.SqlClient.SqlParameter[] array, int index)4707         public void CopyTo(System.Data.SqlClient.SqlParameter[] array, int index) { }
GetEnumerator()4708         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)4709         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)4710         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.SqlClient.SqlParameter value)4711         public int IndexOf(System.Data.SqlClient.SqlParameter value) { throw null; }
IndexOf(object value)4712         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)4713         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.SqlClient.SqlParameter value)4714         public void Insert(int index, System.Data.SqlClient.SqlParameter value) { }
Insert(int index, object value)4715         public override void Insert(int index, object value) { }
Remove(System.Data.SqlClient.SqlParameter value)4716         public void Remove(System.Data.SqlClient.SqlParameter value) { }
Remove(object value)4717         public override void Remove(object value) { }
RemoveAt(int index)4718         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)4719         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)4720         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)4721         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
4722     }
4723     public partial class SqlRowsCopiedEventArgs : System.EventArgs
4724     {
SqlRowsCopiedEventArgs(long rowsCopied)4725         public SqlRowsCopiedEventArgs(long rowsCopied) { }
4726         public bool Abort { get { throw null; } set { } }
4727         public long RowsCopied { get { throw null; } }
4728     }
SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e)4729     public delegate void SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e);
4730     public sealed partial class SqlRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
4731     {
SqlRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)4732         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)) { }
4733         public new System.Data.SqlClient.SqlCommand Command { get { throw null; } }
4734     }
SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e)4735     public delegate void SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e);
4736     public sealed partial class SqlRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
4737     {
SqlRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)4738         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)) { }
4739         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
4740         public new System.Data.SqlClient.SqlCommand Command { get { throw null; } set { } }
4741     }
SqlRowUpdatingEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatingEventArgs e)4742     public delegate void SqlRowUpdatingEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatingEventArgs e);
4743     public sealed partial class SqlTransaction : System.Data.Common.DbTransaction
4744     {
SqlTransaction()4745         internal SqlTransaction() { }
4746         public new System.Data.SqlClient.SqlConnection Connection { get { throw null; } }
4747         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
4748         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()4749         public override void Commit() { }
Dispose(bool disposing)4750         protected override void Dispose(bool disposing) { }
Rollback()4751         public override void Rollback() { }
Rollback(string transactionName)4752         public void Rollback(string transactionName) { }
Save(string savePointName)4753         public void Save(string savePointName) { }
4754     }
4755 }
4756 namespace System.Data.SqlTypes
4757 {
4758     public partial interface INullable
4759     {
4760         bool IsNull { get; }
4761     }
4762     [System.SerializableAttribute]
4763     public sealed partial class SqlAlreadyFilledException : System.Data.SqlTypes.SqlTypeException
4764     {
SqlAlreadyFilledException()4765         public SqlAlreadyFilledException() { }
SqlAlreadyFilledException(string message)4766         public SqlAlreadyFilledException(string message) { }
SqlAlreadyFilledException(string message, System.Exception e)4767         public SqlAlreadyFilledException(string message, System.Exception e) { }
4768     }
4769     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4770     [System.SerializableAttribute]
4771     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4772     public partial struct SqlBinary : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4773     {
4774         public static readonly System.Data.SqlTypes.SqlBinary Null;
SqlBinarySystem.Data.SqlTypes.SqlBinary4775         public SqlBinary(byte[] value) { throw null;}
4776         public bool IsNull { get { throw null; } }
4777         public byte this[int index] { get { throw null; } }
4778         public int Length { get { throw null; } }
4779         public byte[] Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlBinary4780         public static System.Data.SqlTypes.SqlBinary Add(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBinary4781         public int CompareTo(System.Data.SqlTypes.SqlBinary value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBinary4782         public int CompareTo(object value) { throw null; }
ConcatSystem.Data.SqlTypes.SqlBinary4783         public static System.Data.SqlTypes.SqlBinary Concat(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBinary4784         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBinary4785         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlBinary4786         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlBinary4787         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlBinary4788         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlBinary4789         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlBinary4790         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlBinary4791         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlBinary4792         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator +System.Data.SqlTypes.SqlBinary4793         public static System.Data.SqlTypes.SqlBinary operator +(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator ==System.Data.SqlTypes.SqlBinary4794         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator byte[]System.Data.SqlTypes.SqlBinary4795         public static explicit operator byte[] (System.Data.SqlTypes.SqlBinary x) { throw null; }
operator System.Data.SqlTypes.SqlBinarySystem.Data.SqlTypes.SqlBinary4796         public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator >System.Data.SqlTypes.SqlBinary4797         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator >=System.Data.SqlTypes.SqlBinary4798         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.SqlBinary4799         public static implicit operator System.Data.SqlTypes.SqlBinary (byte[] x) { throw null; }
operator !=System.Data.SqlTypes.SqlBinary4800         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator <System.Data.SqlTypes.SqlBinary4801         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator <=System.Data.SqlTypes.SqlBinary4802         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.SqlBinary4803         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlBinary4804         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlBinary4805         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlGuidSystem.Data.SqlTypes.SqlBinary4806         public System.Data.SqlTypes.SqlGuid ToSqlGuid() { throw null; }
ToStringSystem.Data.SqlTypes.SqlBinary4807         public override string ToString() { throw null; }
4808     }
4809     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4810     [System.SerializableAttribute]
4811     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4812     public partial struct SqlBoolean : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4813     {
4814         public static readonly System.Data.SqlTypes.SqlBoolean False;
4815         public static readonly System.Data.SqlTypes.SqlBoolean Null;
4816         public static readonly System.Data.SqlTypes.SqlBoolean One;
4817         public static readonly System.Data.SqlTypes.SqlBoolean True;
4818         public static readonly System.Data.SqlTypes.SqlBoolean Zero;
SqlBooleanSystem.Data.SqlTypes.SqlBoolean4819         public SqlBoolean(bool value) { throw null;}
SqlBooleanSystem.Data.SqlTypes.SqlBoolean4820         public SqlBoolean(int value) { throw null;}
4821         public byte ByteValue { get { throw null; } }
4822         public bool IsFalse { get { throw null; } }
4823         public bool IsNull { get { throw null; } }
4824         public bool IsTrue { get { throw null; } }
4825         public bool Value { get { throw null; } }
AndSystem.Data.SqlTypes.SqlBoolean4826         public static System.Data.SqlTypes.SqlBoolean And(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBoolean4827         public int CompareTo(System.Data.SqlTypes.SqlBoolean value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBoolean4828         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBoolean4829         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBoolean4830         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlBoolean4831         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlBoolean4832         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlBoolean4833         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
GreaterThanOrEqualsSystem.Data.SqlTypes.SqlBoolean4834         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlBoolean4835         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
LessThanOrEqualsSystem.Data.SqlTypes.SqlBoolean4836         public static System.Data.SqlTypes.SqlBoolean LessThanOrEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlBoolean4837         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlBoolean4838         public static System.Data.SqlTypes.SqlBoolean OnesComplement(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator &System.Data.SqlTypes.SqlBoolean4839         public static System.Data.SqlTypes.SqlBoolean operator &(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator |System.Data.SqlTypes.SqlBoolean4840         public static System.Data.SqlTypes.SqlBoolean operator |(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator ==System.Data.SqlTypes.SqlBoolean4841         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator ^System.Data.SqlTypes.SqlBoolean4842         public static System.Data.SqlTypes.SqlBoolean operator ^(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator boolSystem.Data.SqlTypes.SqlBoolean4843         public static explicit operator bool (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4844         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4845         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4846         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4847         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4848         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4849         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4850         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4851         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4852         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlString x) { throw null; }
operator falseSystem.Data.SqlTypes.SqlBoolean4853         public static bool operator false(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator >System.Data.SqlTypes.SqlBoolean4854         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator >=System.Data.SqlTypes.SqlBoolean4855         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.SqlBoolean4856         public static implicit operator System.Data.SqlTypes.SqlBoolean (bool x) { throw null; }
operator !=System.Data.SqlTypes.SqlBoolean4857         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator <System.Data.SqlTypes.SqlBoolean4858         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator <=System.Data.SqlTypes.SqlBoolean4859         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator !System.Data.SqlTypes.SqlBoolean4860         public static System.Data.SqlTypes.SqlBoolean operator !(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator ~System.Data.SqlTypes.SqlBoolean4861         public static System.Data.SqlTypes.SqlBoolean operator ~(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator trueSystem.Data.SqlTypes.SqlBoolean4862         public static bool operator true(System.Data.SqlTypes.SqlBoolean x) { throw null; }
OrSystem.Data.SqlTypes.SqlBoolean4863         public static System.Data.SqlTypes.SqlBoolean Or(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
ParseSystem.Data.SqlTypes.SqlBoolean4864         public static System.Data.SqlTypes.SqlBoolean Parse(string s) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlBoolean4865         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlBoolean4866         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlBoolean4867         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlByteSystem.Data.SqlTypes.SqlBoolean4868         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlBoolean4869         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlBoolean4870         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlBoolean4871         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlBoolean4872         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlBoolean4873         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlBoolean4874         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlBoolean4875         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlBoolean4876         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlBoolean4877         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlBoolean4878         public static System.Data.SqlTypes.SqlBoolean Xor(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
4879     }
4880     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4881     [System.SerializableAttribute]
4882     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4883     public partial struct SqlByte : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4884     {
4885         public static readonly System.Data.SqlTypes.SqlByte MaxValue;
4886         public static readonly System.Data.SqlTypes.SqlByte MinValue;
4887         public static readonly System.Data.SqlTypes.SqlByte Null;
4888         public static readonly System.Data.SqlTypes.SqlByte Zero;
SqlByteSystem.Data.SqlTypes.SqlByte4889         public SqlByte(byte value) { throw null;}
4890         public bool IsNull { get { throw null; } }
4891         public byte Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlByte4892         public static System.Data.SqlTypes.SqlByte Add(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlByte4893         public static System.Data.SqlTypes.SqlByte BitwiseAnd(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlByte4894         public static System.Data.SqlTypes.SqlByte BitwiseOr(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlByte4895         public int CompareTo(System.Data.SqlTypes.SqlByte value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlByte4896         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlByte4897         public static System.Data.SqlTypes.SqlByte Divide(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlByte4898         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlByte4899         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlByte4900         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlByte4901         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlByte4902         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlByte4903         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlByte4904         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlByte4905         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ModSystem.Data.SqlTypes.SqlByte4906         public static System.Data.SqlTypes.SqlByte Mod(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlByte4907         public static System.Data.SqlTypes.SqlByte Modulus(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlByte4908         public static System.Data.SqlTypes.SqlByte Multiply(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlByte4909         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlByte4910         public static System.Data.SqlTypes.SqlByte OnesComplement(System.Data.SqlTypes.SqlByte x) { throw null; }
operator +System.Data.SqlTypes.SqlByte4911         public static System.Data.SqlTypes.SqlByte operator +(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator &System.Data.SqlTypes.SqlByte4912         public static System.Data.SqlTypes.SqlByte operator &(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator |System.Data.SqlTypes.SqlByte4913         public static System.Data.SqlTypes.SqlByte operator |(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator /System.Data.SqlTypes.SqlByte4914         public static System.Data.SqlTypes.SqlByte operator /(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ==System.Data.SqlTypes.SqlByte4915         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ^System.Data.SqlTypes.SqlByte4916         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.SqlByte4917         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator byteSystem.Data.SqlTypes.SqlByte4918         public static explicit operator byte (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4919         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4920         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4921         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4922         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4923         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4924         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4925         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4926         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlByte4927         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator >=System.Data.SqlTypes.SqlByte4928         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.SqlByte4929         public static implicit operator System.Data.SqlTypes.SqlByte (byte x) { throw null; }
operator !=System.Data.SqlTypes.SqlByte4930         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator <System.Data.SqlTypes.SqlByte4931         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator <=System.Data.SqlTypes.SqlByte4932         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator %System.Data.SqlTypes.SqlByte4933         public static System.Data.SqlTypes.SqlByte operator %(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator *System.Data.SqlTypes.SqlByte4934         public static System.Data.SqlTypes.SqlByte operator *(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ~System.Data.SqlTypes.SqlByte4935         public static System.Data.SqlTypes.SqlByte operator ~(System.Data.SqlTypes.SqlByte x) { throw null; }
operator -System.Data.SqlTypes.SqlByte4936         public static System.Data.SqlTypes.SqlByte operator -(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ParseSystem.Data.SqlTypes.SqlByte4937         public static System.Data.SqlTypes.SqlByte Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlByte4938         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.SqlByte4939         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlByte4940         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlByte4941         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlByte4942         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlByte4943         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlByte4944         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlByte4945         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlByte4946         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlByte4947         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlByte4948         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlByte4949         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlByte4950         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlByte4951         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlByte4952         public static System.Data.SqlTypes.SqlByte Xor(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
4953     }
4954     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4955     [System.SerializableAttribute]
4956     public sealed partial class SqlBytes : System.Data.SqlTypes.INullable, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
4957     {
SqlBytes()4958         public SqlBytes() { }
SqlBytes(byte[] buffer)4959         public SqlBytes(byte[] buffer) { }
SqlBytes(System.Data.SqlTypes.SqlBinary value)4960         public SqlBytes(System.Data.SqlTypes.SqlBinary value) { }
SqlBytes(System.IO.Stream s)4961         public SqlBytes(System.IO.Stream s) { }
4962         public byte[] Buffer { get { throw null; } }
4963         public bool IsNull { get { throw null; } }
4964         public byte this[long offset] { get { throw null; } set { } }
4965         public long Length { get { throw null; } }
4966         public long MaxLength { get { throw null; } }
4967         public static System.Data.SqlTypes.SqlBytes Null { get { throw null; } }
4968         public System.Data.SqlTypes.StorageState Storage { get { throw null; } }
4969         public System.IO.Stream Stream { get { throw null; } set { } }
4970         public byte[] Value { get { throw null; } }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)4971         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
operator System.Data.SqlTypes.SqlBytes(System.Data.SqlTypes.SqlBinary value)4972         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)4973         public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlBytes value) { throw null; }
Read(long offset, byte[] buffer, int offsetInBuffer, int count)4974         public long Read(long offset, byte[] buffer, int offsetInBuffer, int count) { throw null; }
SetLength(long value)4975         public void SetLength(long value) { }
SetNull()4976         public void SetNull() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)4977         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
System.Xml.Serialization.IXmlSerializable.GetSchema()4978         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)4979         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)4980         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBinary()4981         public System.Data.SqlTypes.SqlBinary ToSqlBinary() { throw null; }
Write(long offset, byte[] buffer, int offsetInBuffer, int count)4982         public void Write(long offset, byte[] buffer, int offsetInBuffer, int count) { }
4983     }
4984     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4985     [System.SerializableAttribute]
4986     public sealed partial class SqlChars : System.Data.SqlTypes.INullable, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
4987     {
SqlChars()4988         public SqlChars() { }
SqlChars(char[] buffer)4989         public SqlChars(char[] buffer) { }
SqlChars(System.Data.SqlTypes.SqlString value)4990         public SqlChars(System.Data.SqlTypes.SqlString value) { }
4991         public char[] Buffer { get { throw null; } }
4992         public bool IsNull { get { throw null; } }
4993         public char this[long offset] { get { throw null; } set { } }
4994         public long Length { get { throw null; } }
4995         public long MaxLength { get { throw null; } }
4996         public static System.Data.SqlTypes.SqlChars Null { get { throw null; } }
4997         public System.Data.SqlTypes.StorageState Storage { get { throw null; } }
4998         public char[] Value { get { throw null; } }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)4999         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
operator System.Data.SqlTypes.SqlString(System.Data.SqlTypes.SqlChars value)5000         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)5001         public static explicit operator System.Data.SqlTypes.SqlChars (System.Data.SqlTypes.SqlString value) { throw null; }
Read(long offset, char[] buffer, int offsetInBuffer, int count)5002         public long Read(long offset, char[] buffer, int offsetInBuffer, int count) { throw null; }
SetLength(long value)5003         public void SetLength(long value) { }
SetNull()5004         public void SetNull() { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5005         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
System.Xml.Serialization.IXmlSerializable.GetSchema()5006         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)5007         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)5008         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlString()5009         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
Write(long offset, char[] buffer, int offsetInBuffer, int count)5010         public void Write(long offset, char[] buffer, int offsetInBuffer, int count) { }
5011     }
5012     [System.FlagsAttribute]
5013     [System.SerializableAttribute]
5014     public enum SqlCompareOptions
5015     {
5016         BinarySort = 32768,
5017         BinarySort2 = 16384,
5018         IgnoreCase = 1,
5019         IgnoreKanaType = 8,
5020         IgnoreNonSpace = 2,
5021         IgnoreWidth = 16,
5022         None = 0,
5023     }
5024     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5025     [System.SerializableAttribute]
5026     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5027     public partial struct SqlDateTime : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5028     {
5029         public static readonly System.Data.SqlTypes.SqlDateTime MaxValue;
5030         public static readonly System.Data.SqlTypes.SqlDateTime MinValue;
5031         public static readonly System.Data.SqlTypes.SqlDateTime Null;
5032         public static readonly int SQLTicksPerHour;
5033         public static readonly int SQLTicksPerMinute;
5034         public static readonly int SQLTicksPerSecond;
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5035         public SqlDateTime(System.DateTime value) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5036         public SqlDateTime(int dayTicks, int timeTicks) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5037         public SqlDateTime(int year, int month, int day) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5038         public SqlDateTime(int year, int month, int day, int hour, int minute, int second) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5039         public SqlDateTime(int year, int month, int day, int hour, int minute, int second, double millisecond) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5040         public SqlDateTime(int year, int month, int day, int hour, int minute, int second, int bilisecond) { throw null;}
5041         public int DayTicks { get { throw null; } }
5042         public bool IsNull { get { throw null; } }
5043         public int TimeTicks { get { throw null; } }
5044         public System.DateTime Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlDateTime5045         public static System.Data.SqlTypes.SqlDateTime Add(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDateTime5046         public int CompareTo(System.Data.SqlTypes.SqlDateTime value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDateTime5047         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDateTime5048         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDateTime5049         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDateTime5050         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDateTime5051         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDateTime5052         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDateTime5053         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDateTime5054         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDateTime5055         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDateTime5056         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator +System.Data.SqlTypes.SqlDateTime5057         public static System.Data.SqlTypes.SqlDateTime operator +(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
operator ==System.Data.SqlTypes.SqlDateTime5058         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator System.DateTimeSystem.Data.SqlTypes.SqlDateTime5059         public static explicit operator System.DateTime (System.Data.SqlTypes.SqlDateTime x) { throw null; }
operator System.Data.SqlTypes.SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5060         public static explicit operator System.Data.SqlTypes.SqlDateTime (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlDateTime5061         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator >=System.Data.SqlTypes.SqlDateTime5062         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.SqlDateTime5063         public static implicit operator System.Data.SqlTypes.SqlDateTime (System.DateTime value) { throw null; }
operator !=System.Data.SqlTypes.SqlDateTime5064         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator <System.Data.SqlTypes.SqlDateTime5065         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator <=System.Data.SqlTypes.SqlDateTime5066         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator -System.Data.SqlTypes.SqlDateTime5067         public static System.Data.SqlTypes.SqlDateTime operator -(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
ParseSystem.Data.SqlTypes.SqlDateTime5068         public static System.Data.SqlTypes.SqlDateTime Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDateTime5069         public static System.Data.SqlTypes.SqlDateTime Subtract(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlDateTime5070         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDateTime5071         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDateTime5072         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlStringSystem.Data.SqlTypes.SqlDateTime5073         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDateTime5074         public override string ToString() { throw null; }
5075     }
5076     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5077     [System.SerializableAttribute]
5078     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5079     public partial struct SqlDecimal : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5080     {
5081         public static readonly byte MaxPrecision;
5082         public static readonly byte MaxScale;
5083         public static readonly System.Data.SqlTypes.SqlDecimal MaxValue;
5084         public static readonly System.Data.SqlTypes.SqlDecimal MinValue;
5085         public static readonly System.Data.SqlTypes.SqlDecimal Null;
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5086         public SqlDecimal(byte bPrecision, byte bScale, bool fPositive, int data1, int data2, int data3, int data4) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5087         public SqlDecimal(byte bPrecision, byte bScale, bool fPositive, int[] bits) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5088         public SqlDecimal(decimal value) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5089         public SqlDecimal(double dVal) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5090         public SqlDecimal(int value) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5091         public SqlDecimal(long value) { throw null;}
5092         public byte[] BinData { get { throw null; } }
5093         public int[] Data { get { throw null; } }
5094         public bool IsNull { get { throw null; } }
5095         public bool IsPositive { get { throw null; } }
5096         public byte Precision { get { throw null; } }
5097         public byte Scale { get { throw null; } }
5098         public decimal Value { get { throw null; } }
AbsSystem.Data.SqlTypes.SqlDecimal5099         public static System.Data.SqlTypes.SqlDecimal Abs(System.Data.SqlTypes.SqlDecimal n) { throw null; }
AddSystem.Data.SqlTypes.SqlDecimal5100         public static System.Data.SqlTypes.SqlDecimal Add(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
AdjustScaleSystem.Data.SqlTypes.SqlDecimal5101         public static System.Data.SqlTypes.SqlDecimal AdjustScale(System.Data.SqlTypes.SqlDecimal n, int digits, bool fRound) { throw null; }
CeilingSystem.Data.SqlTypes.SqlDecimal5102         public static System.Data.SqlTypes.SqlDecimal Ceiling(System.Data.SqlTypes.SqlDecimal n) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDecimal5103         public int CompareTo(System.Data.SqlTypes.SqlDecimal value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDecimal5104         public int CompareTo(object value) { throw null; }
ConvertToPrecScaleSystem.Data.SqlTypes.SqlDecimal5105         public static System.Data.SqlTypes.SqlDecimal ConvertToPrecScale(System.Data.SqlTypes.SqlDecimal n, int precision, int scale) { throw null; }
DivideSystem.Data.SqlTypes.SqlDecimal5106         public static System.Data.SqlTypes.SqlDecimal Divide(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDecimal5107         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDecimal5108         public override bool Equals(object value) { throw null; }
FloorSystem.Data.SqlTypes.SqlDecimal5109         public static System.Data.SqlTypes.SqlDecimal Floor(System.Data.SqlTypes.SqlDecimal n) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDecimal5110         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDecimal5111         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDecimal5112         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDecimal5113         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDecimal5114         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDecimal5115         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlDecimal5116         public static System.Data.SqlTypes.SqlDecimal Multiply(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDecimal5117         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator +System.Data.SqlTypes.SqlDecimal5118         public static System.Data.SqlTypes.SqlDecimal operator +(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator /System.Data.SqlTypes.SqlDecimal5119         public static System.Data.SqlTypes.SqlDecimal operator /(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator ==System.Data.SqlTypes.SqlDecimal5120         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.SqlDecimal5121         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator decimalSystem.Data.SqlTypes.SqlDecimal5122         public static explicit operator decimal (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5123         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5124         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5125         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlString x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5126         public static explicit operator System.Data.SqlTypes.SqlDecimal (double x) { throw null; }
operator >System.Data.SqlTypes.SqlDecimal5127         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator >=System.Data.SqlTypes.SqlDecimal5128         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.SqlDecimal5129         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5130         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5131         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5132         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5133         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5134         public static implicit operator System.Data.SqlTypes.SqlDecimal (decimal x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5135         public static implicit operator System.Data.SqlTypes.SqlDecimal (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlDecimal5136         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator <System.Data.SqlTypes.SqlDecimal5137         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator <=System.Data.SqlTypes.SqlDecimal5138         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator *System.Data.SqlTypes.SqlDecimal5139         public static System.Data.SqlTypes.SqlDecimal operator *(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator -System.Data.SqlTypes.SqlDecimal5140         public static System.Data.SqlTypes.SqlDecimal operator -(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator -System.Data.SqlTypes.SqlDecimal5141         public static System.Data.SqlTypes.SqlDecimal operator -(System.Data.SqlTypes.SqlDecimal x) { throw null; }
ParseSystem.Data.SqlTypes.SqlDecimal5142         public static System.Data.SqlTypes.SqlDecimal Parse(string s) { throw null; }
PowerSystem.Data.SqlTypes.SqlDecimal5143         public static System.Data.SqlTypes.SqlDecimal Power(System.Data.SqlTypes.SqlDecimal n, double exp) { throw null; }
RoundSystem.Data.SqlTypes.SqlDecimal5144         public static System.Data.SqlTypes.SqlDecimal Round(System.Data.SqlTypes.SqlDecimal n, int position) { throw null; }
SignSystem.Data.SqlTypes.SqlDecimal5145         public static System.Data.SqlTypes.SqlInt32 Sign(System.Data.SqlTypes.SqlDecimal n) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDecimal5146         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.SqlDecimal5147         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDecimal5148         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDecimal5149         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToDoubleSystem.Data.SqlTypes.SqlDecimal5150         public double ToDouble() { throw null; }
ToSqlBooleanSystem.Data.SqlTypes.SqlDecimal5151         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlDecimal5152         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlDecimal5153         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlDecimal5154         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlDecimal5155         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlDecimal5156         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlDecimal5157         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlDecimal5158         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlDecimal5159         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDecimal5160         public override string ToString() { throw null; }
TruncateSystem.Data.SqlTypes.SqlDecimal5161         public static System.Data.SqlTypes.SqlDecimal Truncate(System.Data.SqlTypes.SqlDecimal n, int position) { throw null; }
5162     }
5163     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5164     [System.SerializableAttribute]
5165     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5166     public partial struct SqlDouble : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5167     {
5168         public static readonly System.Data.SqlTypes.SqlDouble MaxValue;
5169         public static readonly System.Data.SqlTypes.SqlDouble MinValue;
5170         public static readonly System.Data.SqlTypes.SqlDouble Null;
5171         public static readonly System.Data.SqlTypes.SqlDouble Zero;
SqlDoubleSystem.Data.SqlTypes.SqlDouble5172         public SqlDouble(double value) { throw null;}
5173         public bool IsNull { get { throw null; } }
5174         public double Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlDouble5175         public static System.Data.SqlTypes.SqlDouble Add(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDouble5176         public int CompareTo(System.Data.SqlTypes.SqlDouble value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDouble5177         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlDouble5178         public static System.Data.SqlTypes.SqlDouble Divide(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDouble5179         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDouble5180         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDouble5181         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDouble5182         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDouble5183         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDouble5184         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDouble5185         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDouble5186         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlDouble5187         public static System.Data.SqlTypes.SqlDouble Multiply(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDouble5188         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator +System.Data.SqlTypes.SqlDouble5189         public static System.Data.SqlTypes.SqlDouble operator +(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator /System.Data.SqlTypes.SqlDouble5190         public static System.Data.SqlTypes.SqlDouble operator /(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator ==System.Data.SqlTypes.SqlDouble5191         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.SqlDouble5192         public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator doubleSystem.Data.SqlTypes.SqlDouble5193         public static explicit operator double (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5194         public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlDouble5195         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator >=System.Data.SqlTypes.SqlDouble5196         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.SqlDouble5197         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5198         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5199         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5200         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5201         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5202         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5203         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5204         public static implicit operator System.Data.SqlTypes.SqlDouble (double x) { throw null; }
operator !=System.Data.SqlTypes.SqlDouble5205         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator <System.Data.SqlTypes.SqlDouble5206         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator <=System.Data.SqlTypes.SqlDouble5207         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator *System.Data.SqlTypes.SqlDouble5208         public static System.Data.SqlTypes.SqlDouble operator *(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator -System.Data.SqlTypes.SqlDouble5209         public static System.Data.SqlTypes.SqlDouble operator -(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator -System.Data.SqlTypes.SqlDouble5210         public static System.Data.SqlTypes.SqlDouble operator -(System.Data.SqlTypes.SqlDouble x) { throw null; }
ParseSystem.Data.SqlTypes.SqlDouble5211         public static System.Data.SqlTypes.SqlDouble Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDouble5212         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.SqlDouble5213         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDouble5214         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDouble5215         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlDouble5216         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlDouble5217         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlDouble5218         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlDouble5219         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlDouble5220         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlDouble5221         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlDouble5222         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlDouble5223         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlDouble5224         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDouble5225         public override string ToString() { throw null; }
5226     }
5227     public sealed partial class SqlFileStream : System.IO.Stream
5228     {
SqlFileStream(string path, byte[] transactionContext, System.IO.FileAccess access)5229         public SqlFileStream(string path, byte[] transactionContext, System.IO.FileAccess access) { }
SqlFileStream(string path, byte[] transactionContext, System.IO.FileAccess access, System.IO.FileOptions options, long allocationSize)5230         public SqlFileStream(string path, byte[] transactionContext, System.IO.FileAccess access, System.IO.FileOptions options, long allocationSize) { }
5231         public override bool CanRead { get { throw null; } }
5232         public override bool CanSeek { get { throw null; } }
5233         public override bool CanTimeout { get { throw null; } }
5234         public override bool CanWrite { get { throw null; } }
5235         public override long Length { get { throw null; } }
5236         public string Name { get { throw null; } }
5237         public override long Position { get { throw null; } set { } }
5238         public override int ReadTimeout { get { throw null; } set { } }
5239         public byte[] TransactionContext { get { throw null; } }
5240         public override int WriteTimeout { get { throw null; } set { } }
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state)5241         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; }
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state)5242         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; }
Dispose(bool disposing)5243         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)5244         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)5245         public override void EndWrite(System.IAsyncResult asyncResult) { }
~SqlFileStream()5246         ~SqlFileStream() { }
Flush()5247         public override void Flush() { }
Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] buffer, int offset, int count)5248         public override int Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] buffer, int offset, int count) { buffer = default(byte[]); throw null; }
ReadByte()5249         public override int ReadByte() { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)5250         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)5251         public override void SetLength(long value) { }
Write(byte[] buffer, int offset, int count)5252         public override void Write(byte[] buffer, int offset, int count) { }
WriteByte(byte value)5253         public override void WriteByte(byte value) { }
5254     }
5255     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5256     [System.SerializableAttribute]
5257     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5258     public partial struct SqlGuid : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5259     {
5260         public static readonly System.Data.SqlTypes.SqlGuid Null;
SqlGuidSystem.Data.SqlTypes.SqlGuid5261         public SqlGuid(byte[] value) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid5262         public SqlGuid(System.Guid g) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid5263         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.SqlGuid5264         public SqlGuid(string s) { throw null;}
5265         public bool IsNull { get { throw null; } }
5266         public System.Guid Value { get { throw null; } }
CompareToSystem.Data.SqlTypes.SqlGuid5267         public int CompareTo(System.Data.SqlTypes.SqlGuid value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlGuid5268         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlGuid5269         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlGuid5270         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlGuid5271         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlGuid5272         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlGuid5273         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlGuid5274         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlGuid5275         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlGuid5276         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlGuid5277         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator ==System.Data.SqlTypes.SqlGuid5278         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.SqlGuid5279         public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlBinary x) { throw null; }
operator System.GuidSystem.Data.SqlTypes.SqlGuid5280         public static explicit operator System.Guid (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator System.Data.SqlTypes.SqlGuidSystem.Data.SqlTypes.SqlGuid5281         public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlGuid5282         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator >=System.Data.SqlTypes.SqlGuid5283         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.SqlGuid5284         public static implicit operator System.Data.SqlTypes.SqlGuid (System.Guid x) { throw null; }
operator !=System.Data.SqlTypes.SqlGuid5285         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator <System.Data.SqlTypes.SqlGuid5286         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator <=System.Data.SqlTypes.SqlGuid5287         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
ParseSystem.Data.SqlTypes.SqlGuid5288         public static System.Data.SqlTypes.SqlGuid Parse(string s) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlGuid5289         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlGuid5290         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlGuid5291         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToByteArraySystem.Data.SqlTypes.SqlGuid5292         public byte[] ToByteArray() { throw null; }
ToSqlBinarySystem.Data.SqlTypes.SqlGuid5293         public System.Data.SqlTypes.SqlBinary ToSqlBinary() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlGuid5294         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlGuid5295         public override string ToString() { throw null; }
5296     }
5297     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5298     [System.SerializableAttribute]
5299     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5300     public partial struct SqlInt16 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5301     {
5302         public static readonly System.Data.SqlTypes.SqlInt16 MaxValue;
5303         public static readonly System.Data.SqlTypes.SqlInt16 MinValue;
5304         public static readonly System.Data.SqlTypes.SqlInt16 Null;
5305         public static readonly System.Data.SqlTypes.SqlInt16 Zero;
SqlInt16System.Data.SqlTypes.SqlInt165306         public SqlInt16(short value) { throw null;}
5307         public bool IsNull { get { throw null; } }
5308         public short Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt165309         public static System.Data.SqlTypes.SqlInt16 Add(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt165310         public static System.Data.SqlTypes.SqlInt16 BitwiseAnd(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt165311         public static System.Data.SqlTypes.SqlInt16 BitwiseOr(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt165312         public int CompareTo(System.Data.SqlTypes.SqlInt16 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt165313         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt165314         public static System.Data.SqlTypes.SqlInt16 Divide(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt165315         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt165316         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt165317         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt165318         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt165319         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt165320         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt165321         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt165322         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt165323         public static System.Data.SqlTypes.SqlInt16 Mod(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt165324         public static System.Data.SqlTypes.SqlInt16 Modulus(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt165325         public static System.Data.SqlTypes.SqlInt16 Multiply(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt165326         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt165327         public static System.Data.SqlTypes.SqlInt16 OnesComplement(System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt165328         public static System.Data.SqlTypes.SqlInt16 operator +(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt165329         public static System.Data.SqlTypes.SqlInt16 operator &(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt165330         public static System.Data.SqlTypes.SqlInt16 operator |(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt165331         public static System.Data.SqlTypes.SqlInt16 operator /(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt165332         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt165333         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.SqlInt165334         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165335         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165336         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator shortSystem.Data.SqlTypes.SqlInt165337         public static explicit operator short (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165338         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165339         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165340         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165341         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165342         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt165343         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt165344         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.SqlInt165345         public static implicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165346         public static implicit operator System.Data.SqlTypes.SqlInt16 (short x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt165347         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt165348         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt165349         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt165350         public static System.Data.SqlTypes.SqlInt16 operator %(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt165351         public static System.Data.SqlTypes.SqlInt16 operator *(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt165352         public static System.Data.SqlTypes.SqlInt16 operator ~(System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt165353         public static System.Data.SqlTypes.SqlInt16 operator -(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt165354         public static System.Data.SqlTypes.SqlInt16 operator -(System.Data.SqlTypes.SqlInt16 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt165355         public static System.Data.SqlTypes.SqlInt16 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt165356         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.SqlInt165357         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt165358         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt165359         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt165360         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt165361         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt165362         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt165363         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlInt165364         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlInt165365         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt165366         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt165367         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt165368         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt165369         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt165370         public static System.Data.SqlTypes.SqlInt16 Xor(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
5371     }
5372     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5373     [System.SerializableAttribute]
5374     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5375     public partial struct SqlInt32 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5376     {
5377         public static readonly System.Data.SqlTypes.SqlInt32 MaxValue;
5378         public static readonly System.Data.SqlTypes.SqlInt32 MinValue;
5379         public static readonly System.Data.SqlTypes.SqlInt32 Null;
5380         public static readonly System.Data.SqlTypes.SqlInt32 Zero;
SqlInt32System.Data.SqlTypes.SqlInt325381         public SqlInt32(int value) { throw null;}
5382         public bool IsNull { get { throw null; } }
5383         public int Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt325384         public static System.Data.SqlTypes.SqlInt32 Add(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt325385         public static System.Data.SqlTypes.SqlInt32 BitwiseAnd(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt325386         public static System.Data.SqlTypes.SqlInt32 BitwiseOr(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt325387         public int CompareTo(System.Data.SqlTypes.SqlInt32 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt325388         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt325389         public static System.Data.SqlTypes.SqlInt32 Divide(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt325390         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt325391         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt325392         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt325393         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt325394         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt325395         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt325396         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt325397         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt325398         public static System.Data.SqlTypes.SqlInt32 Mod(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt325399         public static System.Data.SqlTypes.SqlInt32 Modulus(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt325400         public static System.Data.SqlTypes.SqlInt32 Multiply(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt325401         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt325402         public static System.Data.SqlTypes.SqlInt32 OnesComplement(System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt325403         public static System.Data.SqlTypes.SqlInt32 operator +(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt325404         public static System.Data.SqlTypes.SqlInt32 operator &(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt325405         public static System.Data.SqlTypes.SqlInt32 operator |(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt325406         public static System.Data.SqlTypes.SqlInt32 operator /(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt325407         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt325408         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.SqlInt325409         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325410         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325411         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator intSystem.Data.SqlTypes.SqlInt325412         public static explicit operator int (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325413         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325414         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325415         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325416         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt325417         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt325418         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.SqlInt325419         public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325420         public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325421         public static implicit operator System.Data.SqlTypes.SqlInt32 (int x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt325422         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt325423         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt325424         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt325425         public static System.Data.SqlTypes.SqlInt32 operator %(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt325426         public static System.Data.SqlTypes.SqlInt32 operator *(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt325427         public static System.Data.SqlTypes.SqlInt32 operator ~(System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt325428         public static System.Data.SqlTypes.SqlInt32 operator -(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt325429         public static System.Data.SqlTypes.SqlInt32 operator -(System.Data.SqlTypes.SqlInt32 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt325430         public static System.Data.SqlTypes.SqlInt32 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt325431         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.SqlInt325432         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt325433         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt325434         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt325435         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt325436         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt325437         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt325438         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlInt325439         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlInt325440         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt325441         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt325442         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt325443         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt325444         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt325445         public static System.Data.SqlTypes.SqlInt32 Xor(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
5446     }
5447     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5448     [System.SerializableAttribute]
5449     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5450     public partial struct SqlInt64 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5451     {
5452         public static readonly System.Data.SqlTypes.SqlInt64 MaxValue;
5453         public static readonly System.Data.SqlTypes.SqlInt64 MinValue;
5454         public static readonly System.Data.SqlTypes.SqlInt64 Null;
5455         public static readonly System.Data.SqlTypes.SqlInt64 Zero;
SqlInt64System.Data.SqlTypes.SqlInt645456         public SqlInt64(long value) { throw null;}
5457         public bool IsNull { get { throw null; } }
5458         public long Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt645459         public static System.Data.SqlTypes.SqlInt64 Add(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt645460         public static System.Data.SqlTypes.SqlInt64 BitwiseAnd(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt645461         public static System.Data.SqlTypes.SqlInt64 BitwiseOr(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt645462         public int CompareTo(System.Data.SqlTypes.SqlInt64 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt645463         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt645464         public static System.Data.SqlTypes.SqlInt64 Divide(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt645465         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt645466         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt645467         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt645468         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt645469         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt645470         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt645471         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt645472         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt645473         public static System.Data.SqlTypes.SqlInt64 Mod(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt645474         public static System.Data.SqlTypes.SqlInt64 Modulus(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt645475         public static System.Data.SqlTypes.SqlInt64 Multiply(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt645476         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt645477         public static System.Data.SqlTypes.SqlInt64 OnesComplement(System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt645478         public static System.Data.SqlTypes.SqlInt64 operator +(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt645479         public static System.Data.SqlTypes.SqlInt64 operator &(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt645480         public static System.Data.SqlTypes.SqlInt64 operator |(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt645481         public static System.Data.SqlTypes.SqlInt64 operator /(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt645482         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt645483         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.SqlInt645484         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645485         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645486         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator longSystem.Data.SqlTypes.SqlInt645487         public static explicit operator long (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645488         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645489         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645490         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt645491         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt645492         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.SqlInt645493         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645494         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645495         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645496         public static implicit operator System.Data.SqlTypes.SqlInt64 (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt645497         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt645498         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt645499         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt645500         public static System.Data.SqlTypes.SqlInt64 operator %(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt645501         public static System.Data.SqlTypes.SqlInt64 operator *(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt645502         public static System.Data.SqlTypes.SqlInt64 operator ~(System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt645503         public static System.Data.SqlTypes.SqlInt64 operator -(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt645504         public static System.Data.SqlTypes.SqlInt64 operator -(System.Data.SqlTypes.SqlInt64 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt645505         public static System.Data.SqlTypes.SqlInt64 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt645506         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.SqlInt645507         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt645508         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt645509         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt645510         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt645511         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt645512         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt645513         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlInt645514         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlInt645515         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt645516         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt645517         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt645518         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt645519         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt645520         public static System.Data.SqlTypes.SqlInt64 Xor(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
5521     }
5522     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5523     [System.SerializableAttribute]
5524     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5525     public partial struct SqlMoney : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5526     {
5527         public static readonly System.Data.SqlTypes.SqlMoney MaxValue;
5528         public static readonly System.Data.SqlTypes.SqlMoney MinValue;
5529         public static readonly System.Data.SqlTypes.SqlMoney Null;
5530         public static readonly System.Data.SqlTypes.SqlMoney Zero;
SqlMoneySystem.Data.SqlTypes.SqlMoney5531         public SqlMoney(decimal value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney5532         public SqlMoney(double value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney5533         public SqlMoney(int value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney5534         public SqlMoney(long value) { throw null;}
5535         public bool IsNull { get { throw null; } }
5536         public decimal Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlMoney5537         public static System.Data.SqlTypes.SqlMoney Add(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlMoney5538         public int CompareTo(System.Data.SqlTypes.SqlMoney value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlMoney5539         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlMoney5540         public static System.Data.SqlTypes.SqlMoney Divide(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlMoney5541         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlMoney5542         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlMoney5543         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlMoney5544         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlMoney5545         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlMoney5546         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlMoney5547         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlMoney5548         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlMoney5549         public static System.Data.SqlTypes.SqlMoney Multiply(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlMoney5550         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator +System.Data.SqlTypes.SqlMoney5551         public static System.Data.SqlTypes.SqlMoney operator +(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator /System.Data.SqlTypes.SqlMoney5552         public static System.Data.SqlTypes.SqlMoney operator /(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator ==System.Data.SqlTypes.SqlMoney5553         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.SqlMoney5554         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5555         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5556         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator decimalSystem.Data.SqlTypes.SqlMoney5557         public static explicit operator decimal (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5558         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5559         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlString x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5560         public static explicit operator System.Data.SqlTypes.SqlMoney (double x) { throw null; }
operator >System.Data.SqlTypes.SqlMoney5561         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator >=System.Data.SqlTypes.SqlMoney5562         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.SqlMoney5563         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5564         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5565         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5566         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5567         public static implicit operator System.Data.SqlTypes.SqlMoney (decimal x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5568         public static implicit operator System.Data.SqlTypes.SqlMoney (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlMoney5569         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator <System.Data.SqlTypes.SqlMoney5570         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator <=System.Data.SqlTypes.SqlMoney5571         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator *System.Data.SqlTypes.SqlMoney5572         public static System.Data.SqlTypes.SqlMoney operator *(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator -System.Data.SqlTypes.SqlMoney5573         public static System.Data.SqlTypes.SqlMoney operator -(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator -System.Data.SqlTypes.SqlMoney5574         public static System.Data.SqlTypes.SqlMoney operator -(System.Data.SqlTypes.SqlMoney x) { throw null; }
ParseSystem.Data.SqlTypes.SqlMoney5575         public static System.Data.SqlTypes.SqlMoney Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlMoney5576         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.SqlMoney5577         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlMoney5578         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlMoney5579         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToDecimalSystem.Data.SqlTypes.SqlMoney5580         public decimal ToDecimal() { throw null; }
ToDoubleSystem.Data.SqlTypes.SqlMoney5581         public double ToDouble() { throw null; }
ToInt32System.Data.SqlTypes.SqlMoney5582         public int ToInt32() { throw null; }
ToInt64System.Data.SqlTypes.SqlMoney5583         public long ToInt64() { throw null; }
ToSqlBooleanSystem.Data.SqlTypes.SqlMoney5584         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlMoney5585         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlMoney5586         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlMoney5587         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlMoney5588         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlMoney5589         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlMoney5590         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlMoney5591         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlMoney5592         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlMoney5593         public override string ToString() { throw null; }
5594     }
5595     [System.SerializableAttribute]
5596     public sealed partial class SqlNotFilledException : System.Data.SqlTypes.SqlTypeException
5597     {
SqlNotFilledException()5598         public SqlNotFilledException() { }
SqlNotFilledException(string message)5599         public SqlNotFilledException(string message) { }
SqlNotFilledException(string message, System.Exception e)5600         public SqlNotFilledException(string message, System.Exception e) { }
5601     }
5602     [System.SerializableAttribute]
5603     public sealed partial class SqlNullValueException : System.Data.SqlTypes.SqlTypeException
5604     {
SqlNullValueException()5605         public SqlNullValueException() { }
SqlNullValueException(string message)5606         public SqlNullValueException(string message) { }
SqlNullValueException(string message, System.Exception e)5607         public SqlNullValueException(string message, System.Exception e) { }
5608     }
5609     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5610     [System.SerializableAttribute]
5611     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5612     public partial struct SqlSingle : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5613     {
5614         public static readonly System.Data.SqlTypes.SqlSingle MaxValue;
5615         public static readonly System.Data.SqlTypes.SqlSingle MinValue;
5616         public static readonly System.Data.SqlTypes.SqlSingle Null;
5617         public static readonly System.Data.SqlTypes.SqlSingle Zero;
SqlSingleSystem.Data.SqlTypes.SqlSingle5618         public SqlSingle(double value) { throw null;}
SqlSingleSystem.Data.SqlTypes.SqlSingle5619         public SqlSingle(float value) { throw null;}
5620         public bool IsNull { get { throw null; } }
5621         public float Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlSingle5622         public static System.Data.SqlTypes.SqlSingle Add(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlSingle5623         public int CompareTo(System.Data.SqlTypes.SqlSingle value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlSingle5624         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlSingle5625         public static System.Data.SqlTypes.SqlSingle Divide(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlSingle5626         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlSingle5627         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlSingle5628         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlSingle5629         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlSingle5630         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlSingle5631         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlSingle5632         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlSingle5633         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlSingle5634         public static System.Data.SqlTypes.SqlSingle Multiply(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlSingle5635         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator +System.Data.SqlTypes.SqlSingle5636         public static System.Data.SqlTypes.SqlSingle operator +(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator /System.Data.SqlTypes.SqlSingle5637         public static System.Data.SqlTypes.SqlSingle operator /(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator ==System.Data.SqlTypes.SqlSingle5638         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.SqlSingle5639         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5640         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator floatSystem.Data.SqlTypes.SqlSingle5641         public static explicit operator float (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5642         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlSingle5643         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator >=System.Data.SqlTypes.SqlSingle5644         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.SqlSingle5645         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5646         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5647         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5648         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5649         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5650         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5651         public static implicit operator System.Data.SqlTypes.SqlSingle (float x) { throw null; }
operator !=System.Data.SqlTypes.SqlSingle5652         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator <System.Data.SqlTypes.SqlSingle5653         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator <=System.Data.SqlTypes.SqlSingle5654         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator *System.Data.SqlTypes.SqlSingle5655         public static System.Data.SqlTypes.SqlSingle operator *(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator -System.Data.SqlTypes.SqlSingle5656         public static System.Data.SqlTypes.SqlSingle operator -(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator -System.Data.SqlTypes.SqlSingle5657         public static System.Data.SqlTypes.SqlSingle operator -(System.Data.SqlTypes.SqlSingle x) { throw null; }
ParseSystem.Data.SqlTypes.SqlSingle5658         public static System.Data.SqlTypes.SqlSingle Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlSingle5659         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.SqlSingle5660         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlSingle5661         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlSingle5662         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlSingle5663         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlSingle5664         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlSingle5665         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlSingle5666         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlSingle5667         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlSingle5668         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlSingle5669         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlSingle5670         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlSingle5671         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlSingle5672         public override string ToString() { throw null; }
5673     }
5674     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5675     [System.SerializableAttribute]
5676     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5677     public partial struct SqlString : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5678     {
5679         public static readonly int BinarySort;
5680         public static readonly int BinarySort2;
5681         public static readonly int IgnoreCase;
5682         public static readonly int IgnoreKanaType;
5683         public static readonly int IgnoreNonSpace;
5684         public static readonly int IgnoreWidth;
5685         public static readonly System.Data.SqlTypes.SqlString Null;
SqlStringSystem.Data.SqlTypes.SqlString5686         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5687         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, bool fUnicode) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5688         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5689         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count, bool fUnicode) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5690         public SqlString(string data) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5691         public SqlString(string data, int lcid) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5692         public SqlString(string data, int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw null;}
5693         public System.Globalization.CompareInfo CompareInfo { get { throw null; } }
5694         public System.Globalization.CultureInfo CultureInfo { get { throw null; } }
5695         public bool IsNull { get { throw null; } }
5696         public int LCID { get { throw null; } }
5697         public System.Data.SqlTypes.SqlCompareOptions SqlCompareOptions { get { throw null; } }
5698         public string Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlString5699         public static System.Data.SqlTypes.SqlString Add(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
CloneSystem.Data.SqlTypes.SqlString5700         public System.Data.SqlTypes.SqlString Clone() { throw null; }
CompareOptionsFromSqlCompareOptionsSystem.Data.SqlTypes.SqlString5701         public static System.Globalization.CompareOptions CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw null; }
CompareToSystem.Data.SqlTypes.SqlString5702         public int CompareTo(System.Data.SqlTypes.SqlString value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlString5703         public int CompareTo(object value) { throw null; }
ConcatSystem.Data.SqlTypes.SqlString5704         public static System.Data.SqlTypes.SqlString Concat(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlString5705         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlString5706         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlString5707         public override int GetHashCode() { throw null; }
GetNonUnicodeBytesSystem.Data.SqlTypes.SqlString5708         public byte[] GetNonUnicodeBytes() { throw null; }
GetUnicodeBytesSystem.Data.SqlTypes.SqlString5709         public byte[] GetUnicodeBytes() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlString5710         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlString5711         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlString5712         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlString5713         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlString5714         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlString5715         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator +System.Data.SqlTypes.SqlString5716         public static System.Data.SqlTypes.SqlString operator +(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator ==System.Data.SqlTypes.SqlString5717         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.SqlString5718         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5719         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5720         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDateTime x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5721         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5722         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5723         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5724         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5725         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5726         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5727         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5728         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator stringSystem.Data.SqlTypes.SqlString5729         public static explicit operator string (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlString5730         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator >=System.Data.SqlTypes.SqlString5731         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.SqlString5732         public static implicit operator System.Data.SqlTypes.SqlString (string x) { throw null; }
operator !=System.Data.SqlTypes.SqlString5733         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator <System.Data.SqlTypes.SqlString5734         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator <=System.Data.SqlTypes.SqlString5735         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.SqlString5736         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlString5737         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlString5738         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlString5739         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlString5740         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDateTimeSystem.Data.SqlTypes.SqlString5741         public System.Data.SqlTypes.SqlDateTime ToSqlDateTime() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlString5742         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlString5743         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlGuidSystem.Data.SqlTypes.SqlString5744         public System.Data.SqlTypes.SqlGuid ToSqlGuid() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlString5745         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlString5746         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlString5747         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlString5748         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlString5749         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToStringSystem.Data.SqlTypes.SqlString5750         public override string ToString() { throw null; }
5751     }
5752     [System.SerializableAttribute]
5753     public sealed partial class SqlTruncateException : System.Data.SqlTypes.SqlTypeException
5754     {
SqlTruncateException()5755         public SqlTruncateException() { }
SqlTruncateException(string message)5756         public SqlTruncateException(string message) { }
SqlTruncateException(string message, System.Exception e)5757         public SqlTruncateException(string message, System.Exception e) { }
5758     }
5759     [System.SerializableAttribute]
5760     public partial class SqlTypeException : System.SystemException
5761     {
SqlTypeException()5762         public SqlTypeException() { }
SqlTypeException(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc)5763         protected SqlTypeException(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc) { }
SqlTypeException(string message)5764         public SqlTypeException(string message) { }
SqlTypeException(string message, System.Exception e)5765         public SqlTypeException(string message, System.Exception e) { }
5766     }
5767     public partial class SqlTypesSchemaImporterExtensionHelper : System.Xml.Serialization.Advanced.SchemaImporterExtension
5768     {
5769         protected static readonly string SqlTypesNamespace;
SqlTypesSchemaImporterExtensionHelper(string name, string destinationType)5770         public SqlTypesSchemaImporterExtensionHelper(string name, string destinationType) { }
SqlTypesSchemaImporterExtensionHelper(string name, string destinationType, bool direct)5771         public SqlTypesSchemaImporterExtensionHelper(string name, string destinationType, bool direct) { }
SqlTypesSchemaImporterExtensionHelper(string name, string targetNamespace, string[] references, System.CodeDom.CodeNamespaceImport[] namespaceImports, string destinationType, bool direct)5772         public SqlTypesSchemaImporterExtensionHelper(string name, string targetNamespace, string[] references, System.CodeDom.CodeNamespaceImport[] namespaceImports, string destinationType, bool direct) { }
ImportSchemaType(string name, string xmlNamespace, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)5773         public override string ImportSchemaType(string name, string xmlNamespace, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
ImportSchemaType(System.Xml.Schema.XmlSchemaType type, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)5774         public override string ImportSchemaType(System.Xml.Schema.XmlSchemaType type, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
5775     }
5776     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5777     [System.SerializableAttribute]
5778     public sealed partial class SqlXml : System.Data.SqlTypes.INullable, System.Xml.Serialization.IXmlSerializable
5779     {
SqlXml()5780         public SqlXml() { }
SqlXml(System.IO.Stream value)5781         public SqlXml(System.IO.Stream value) { }
SqlXml(System.Xml.XmlReader value)5782         public SqlXml(System.Xml.XmlReader value) { }
5783         public bool IsNull { get { throw null; } }
5784         public static System.Data.SqlTypes.SqlXml Null { get { throw null; } }
5785         public string Value { get { throw null; } }
CreateReader()5786         public System.Xml.XmlReader CreateReader() { throw null; }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)5787         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()5788         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)5789         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)5790         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
5791     }
5792     public enum StorageState
5793     {
5794         Buffer = 0,
5795         Stream = 1,
5796         UnmanagedBuffer = 2,
5797     }
5798     public sealed partial class TypeBigIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5799     {
TypeBigIntSchemaImporterExtension()5800         public TypeBigIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5801     }
5802     public sealed partial class TypeBinarySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5803     {
TypeBinarySchemaImporterExtension()5804         public TypeBinarySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5805     }
5806     public sealed partial class TypeBitSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5807     {
TypeBitSchemaImporterExtension()5808         public TypeBitSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5809     }
5810     public sealed partial class TypeCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5811     {
TypeCharSchemaImporterExtension()5812         public TypeCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5813     }
5814     public sealed partial class TypeDateTimeSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5815     {
TypeDateTimeSchemaImporterExtension()5816         public TypeDateTimeSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5817     }
5818     public sealed partial class TypeDecimalSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5819     {
TypeDecimalSchemaImporterExtension()5820         public TypeDecimalSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5821     }
5822     public sealed partial class TypeFloatSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5823     {
TypeFloatSchemaImporterExtension()5824         public TypeFloatSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5825     }
5826     public sealed partial class TypeIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5827     {
TypeIntSchemaImporterExtension()5828         public TypeIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5829     }
5830     public sealed partial class TypeMoneySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5831     {
TypeMoneySchemaImporterExtension()5832         public TypeMoneySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5833     }
5834     public sealed partial class TypeNCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5835     {
TypeNCharSchemaImporterExtension()5836         public TypeNCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5837     }
5838     public sealed partial class TypeNTextSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5839     {
TypeNTextSchemaImporterExtension()5840         public TypeNTextSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5841     }
5842     public sealed partial class TypeNumericSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5843     {
TypeNumericSchemaImporterExtension()5844         public TypeNumericSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5845     }
5846     public sealed partial class TypeNVarCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5847     {
TypeNVarCharSchemaImporterExtension()5848         public TypeNVarCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5849     }
5850     public sealed partial class TypeRealSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5851     {
TypeRealSchemaImporterExtension()5852         public TypeRealSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5853     }
5854     public sealed partial class TypeSmallDateTimeSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5855     {
TypeSmallDateTimeSchemaImporterExtension()5856         public TypeSmallDateTimeSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5857     }
5858     public sealed partial class TypeSmallIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5859     {
TypeSmallIntSchemaImporterExtension()5860         public TypeSmallIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5861     }
5862     public sealed partial class TypeSmallMoneySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5863     {
TypeSmallMoneySchemaImporterExtension()5864         public TypeSmallMoneySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5865     }
5866     public sealed partial class TypeTextSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5867     {
TypeTextSchemaImporterExtension()5868         public TypeTextSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5869     }
5870     public sealed partial class TypeTinyIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5871     {
TypeTinyIntSchemaImporterExtension()5872         public TypeTinyIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5873     }
5874     public sealed partial class TypeUniqueIdentifierSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5875     {
TypeUniqueIdentifierSchemaImporterExtension()5876         public TypeUniqueIdentifierSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5877     }
5878     public sealed partial class TypeVarBinarySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5879     {
TypeVarBinarySchemaImporterExtension()5880         public TypeVarBinarySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5881     }
5882     public sealed partial class TypeVarCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5883     {
TypeVarCharSchemaImporterExtension()5884         public TypeVarCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5885     }
5886     public sealed partial class TypeVarImageSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5887     {
TypeVarImageSchemaImporterExtension()5888         public TypeVarImageSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5889     }
5890 }
5891 namespace System.Xml
5892 {
5893     [System.ObsoleteAttribute("XmlDataDocument class will be removed in a future release.")]
5894     public partial class XmlDataDocument : System.Xml.XmlDocument
5895     {
XmlDataDocument()5896         public XmlDataDocument() { }
XmlDataDocument(System.Data.DataSet dataset)5897         public XmlDataDocument(System.Data.DataSet dataset) { }
5898         public System.Data.DataSet DataSet { get { throw null; } }
CloneNode(bool deep)5899         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
CreateElement(string prefix, string localName, string namespaceURI)5900         public override System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceURI) { throw null; }
CreateEntityReference(string name)5901         public override System.Xml.XmlEntityReference CreateEntityReference(string name) { throw null; }
CreateNavigator(System.Xml.XmlNode node)5902         protected override System.Xml.XPath.XPathNavigator CreateNavigator(System.Xml.XmlNode node) { throw null; }
GetElementById(string elemId)5903         public override System.Xml.XmlElement GetElementById(string elemId) { throw null; }
GetElementFromRow(System.Data.DataRow r)5904         public System.Xml.XmlElement GetElementFromRow(System.Data.DataRow r) { throw null; }
GetElementsByTagName(string name)5905         public override System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetRowFromElement(System.Xml.XmlElement e)5906         public System.Data.DataRow GetRowFromElement(System.Xml.XmlElement e) { throw null; }
Load(System.IO.Stream inStream)5907         public override void Load(System.IO.Stream inStream) { }
Load(System.IO.TextReader txtReader)5908         public override void Load(System.IO.TextReader txtReader) { }
Load(string filename)5909         public override void Load(string filename) { }
Load(System.Xml.XmlReader reader)5910         public override void Load(System.Xml.XmlReader reader) { }
5911     }
5912 }
5913