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.Reflection.AssemblyCompanyAttribute("Mono development team")]
8 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
9 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Data.dll")]
10 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Data.dll")]
11 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.7.2558.0")]
12 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.7.2558.0")]
13 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
14 [assembly:System.Reflection.AssemblyTitleAttribute("System.Data.dll")]
15 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
16 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
17 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
18 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
19 [assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)]
20 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
21 [assembly:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute((System.Runtime.InteropServices.DllImportSearchPath)(2050))]
22 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
23 [assembly:System.Security.SecurityRulesAttribute((System.Security.SecurityRuleSet)(1))]
24 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
25 namespace Microsoft.SqlServer.Server
26 {
27     [System.SerializableAttribute]
28     public enum DataAccessKind
29     {
30         None = 0,
31         Read = 1,
32     }
33     public enum Format
34     {
35         Native = 1,
36         Unknown = 0,
37         UserDefined = 2,
38     }
39     public partial interface IBinarySerialize
40     {
Read(System.IO.BinaryReader r)41         void Read(System.IO.BinaryReader r);
Write(System.IO.BinaryWriter w)42         void Write(System.IO.BinaryWriter w);
43     }
44     [System.SerializableAttribute]
45     public sealed partial class InvalidUdtException : System.SystemException
46     {
InvalidUdtException()47         internal InvalidUdtException() { }
48         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context)49         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
50     }
51     public sealed partial class SqlContext
52     {
SqlContext()53         internal SqlContext() { }
54         public static bool IsAvailable { get { throw null; } }
55         public static Microsoft.SqlServer.Server.SqlPipe Pipe { get { throw null; } }
56         public static Microsoft.SqlServer.Server.SqlTriggerContext TriggerContext { get { throw null; } }
57         public static System.Security.Principal.WindowsIdentity WindowsIdentity { get { throw null; } }
58     }
59     public partial class SqlDataRecord : System.Data.IDataRecord
60     {
SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData)61         public SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData) { }
62         public virtual int FieldCount { get { throw null; } }
63         public virtual object this[int ordinal] { get { throw null; } }
64         public virtual object this[string name] { get { throw null; } }
GetBoolean(int ordinal)65         public virtual bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)66         public virtual byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)67         public virtual long GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { throw null; }
GetChar(int ordinal)68         public virtual char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)69         public virtual long GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { throw null; }
GetDataTypeName(int ordinal)70         public virtual string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)71         public virtual System.DateTime GetDateTime(int ordinal) { throw null; }
GetDateTimeOffset(int ordinal)72         public virtual System.DateTimeOffset GetDateTimeOffset(int ordinal) { throw null; }
GetDecimal(int ordinal)73         public virtual decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)74         public virtual double GetDouble(int ordinal) { throw null; }
GetFieldType(int ordinal)75         public virtual System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)76         public virtual float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)77         public virtual System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)78         public virtual short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)79         public virtual int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)80         public virtual long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)81         public virtual string GetName(int ordinal) { throw null; }
GetOrdinal(string name)82         public virtual int GetOrdinal(string name) { throw null; }
GetSqlBinary(int ordinal)83         public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int ordinal) { throw null; }
GetSqlBoolean(int ordinal)84         public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int ordinal) { throw null; }
GetSqlByte(int ordinal)85         public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int ordinal) { throw null; }
GetSqlBytes(int ordinal)86         public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int ordinal) { throw null; }
GetSqlChars(int ordinal)87         public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int ordinal) { throw null; }
GetSqlDateTime(int ordinal)88         public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int ordinal) { throw null; }
GetSqlDecimal(int ordinal)89         public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int ordinal) { throw null; }
GetSqlDouble(int ordinal)90         public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int ordinal) { throw null; }
GetSqlFieldType(int ordinal)91         public virtual System.Type GetSqlFieldType(int ordinal) { throw null; }
GetSqlGuid(int ordinal)92         public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int ordinal) { throw null; }
GetSqlInt16(int ordinal)93         public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int ordinal) { throw null; }
GetSqlInt32(int ordinal)94         public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int ordinal) { throw null; }
GetSqlInt64(int ordinal)95         public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int ordinal) { throw null; }
GetSqlMetaData(int ordinal)96         public virtual Microsoft.SqlServer.Server.SqlMetaData GetSqlMetaData(int ordinal) { throw null; }
GetSqlMoney(int ordinal)97         public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int ordinal) { throw null; }
GetSqlSingle(int ordinal)98         public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int ordinal) { throw null; }
GetSqlString(int ordinal)99         public virtual System.Data.SqlTypes.SqlString GetSqlString(int ordinal) { throw null; }
GetSqlValue(int ordinal)100         public virtual object GetSqlValue(int ordinal) { throw null; }
GetSqlValues(object[] values)101         public virtual int GetSqlValues(object[] values) { throw null; }
GetSqlXml(int ordinal)102         public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int ordinal) { throw null; }
GetString(int ordinal)103         public virtual string GetString(int ordinal) { throw null; }
GetTimeSpan(int ordinal)104         public virtual System.TimeSpan GetTimeSpan(int ordinal) { throw null; }
GetValue(int ordinal)105         public virtual object GetValue(int ordinal) { throw null; }
GetValues(object[] values)106         public virtual int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)107         public virtual bool IsDBNull(int ordinal) { throw null; }
SetBoolean(int ordinal, bool value)108         public virtual void SetBoolean(int ordinal, bool value) { }
SetByte(int ordinal, byte value)109         public virtual void SetByte(int ordinal, byte value) { }
SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)110         public virtual void SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { }
SetChar(int ordinal, char value)111         public virtual void SetChar(int ordinal, char value) { }
SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)112         public virtual void SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { }
SetDateTime(int ordinal, System.DateTime value)113         public virtual void SetDateTime(int ordinal, System.DateTime value) { }
SetDateTimeOffset(int ordinal, System.DateTimeOffset value)114         public virtual void SetDateTimeOffset(int ordinal, System.DateTimeOffset value) { }
SetDBNull(int ordinal)115         public virtual void SetDBNull(int ordinal) { }
SetDecimal(int ordinal, decimal value)116         public virtual void SetDecimal(int ordinal, decimal value) { }
SetDouble(int ordinal, double value)117         public virtual void SetDouble(int ordinal, double value) { }
SetFloat(int ordinal, float value)118         public virtual void SetFloat(int ordinal, float value) { }
SetGuid(int ordinal, System.Guid value)119         public virtual void SetGuid(int ordinal, System.Guid value) { }
SetInt16(int ordinal, short value)120         public virtual void SetInt16(int ordinal, short value) { }
SetInt32(int ordinal, int value)121         public virtual void SetInt32(int ordinal, int value) { }
SetInt64(int ordinal, long value)122         public virtual void SetInt64(int ordinal, long value) { }
SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value)123         public virtual void SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value) { }
SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value)124         public virtual void SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value) { }
SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value)125         public virtual void SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value) { }
SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value)126         public virtual void SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value) { }
SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value)127         public virtual void SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value) { }
SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value)128         public virtual void SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value) { }
SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value)129         public virtual void SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value) { }
SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value)130         public virtual void SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value) { }
SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value)131         public virtual void SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value) { }
SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value)132         public virtual void SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value) { }
SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value)133         public virtual void SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value) { }
SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value)134         public virtual void SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value) { }
SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value)135         public virtual void SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value) { }
SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value)136         public virtual void SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value) { }
SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value)137         public virtual void SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value) { }
SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value)138         public virtual void SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value) { }
SetString(int ordinal, string value)139         public virtual void SetString(int ordinal, string value) { }
SetTimeSpan(int ordinal, System.TimeSpan value)140         public virtual void SetTimeSpan(int ordinal, System.TimeSpan value) { }
SetValue(int ordinal, object value)141         public virtual void SetValue(int ordinal, object value) { }
SetValues(params object[] values)142         public virtual int SetValues(params object[] values) { throw null; }
143         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
System.Data.IDataRecord.GetData(int ordinal)144         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
145     }
146     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false, Inherited=false)]
147     public partial class SqlFacetAttribute : System.Attribute
148     {
SqlFacetAttribute()149         public SqlFacetAttribute() { }
150         public bool IsFixedLength { get { throw null; } set { } }
151         public bool IsNullable { get { throw null; } set { } }
152         public int MaxSize { get { throw null; } set { } }
153         public int Precision { get { throw null; } set { } }
154         public int Scale { get { throw null; } set { } }
155     }
156     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
157     [System.SerializableAttribute]
158     public partial class SqlFunctionAttribute : System.Attribute
159     {
SqlFunctionAttribute()160         public SqlFunctionAttribute() { }
161         public Microsoft.SqlServer.Server.DataAccessKind DataAccess { get { throw null; } set { } }
162         public string FillRowMethodName { get { throw null; } set { } }
163         public bool IsDeterministic { get { throw null; } set { } }
164         public bool IsPrecise { get { throw null; } set { } }
165         public string Name { get { throw null; } set { } }
166         public Microsoft.SqlServer.Server.SystemDataAccessKind SystemDataAccess { get { throw null; } set { } }
167         public string TableDefinition { get { throw null; } set { } }
168     }
169     public sealed partial class SqlMetaData
170     {
SqlMetaData(string name, System.Data.SqlDbType dbType)171         public SqlMetaData(string name, System.Data.SqlDbType dbType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)172         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)173         public SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)174         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)175         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)176         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)177         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long localeId, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)178         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)179         public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)180         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)181         public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal)182         public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType)183         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType) { }
SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName)184         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)185         public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { }
186         public System.Data.SqlTypes.SqlCompareOptions CompareOptions { get { throw null; } }
187         public System.Data.DbType DbType { get { throw null; } }
188         public bool IsUniqueKey { get { throw null; } }
189         public long LocaleId { get { throw null; } }
190         public static long Max { get { throw null; } }
191         public long MaxLength { get { throw null; } }
192         public string Name { get { throw null; } }
193         public byte Precision { get { throw null; } }
194         public byte Scale { get { throw null; } }
195         public System.Data.SqlClient.SortOrder SortOrder { get { throw null; } }
196         public int SortOrdinal { get { throw null; } }
197         public System.Data.SqlDbType SqlDbType { get { throw null; } }
198         public System.Type Type { get { throw null; } }
199         public string TypeName { get { throw null; } }
200         public bool UseServerDefault { get { throw null; } }
201         public string XmlSchemaCollectionDatabase { get { throw null; } }
202         public string XmlSchemaCollectionName { get { throw null; } }
203         public string XmlSchemaCollectionOwningSchema { get { throw null; } }
Adjust(bool value)204         public bool Adjust(bool value) { throw null; }
Adjust(byte value)205         public byte Adjust(byte value) { throw null; }
Adjust(byte[] value)206         public byte[] Adjust(byte[] value) { throw null; }
Adjust(char value)207         public char Adjust(char value) { throw null; }
Adjust(char[] value)208         public char[] Adjust(char[] value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBinary value)209         public System.Data.SqlTypes.SqlBinary Adjust(System.Data.SqlTypes.SqlBinary value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBoolean value)210         public System.Data.SqlTypes.SqlBoolean Adjust(System.Data.SqlTypes.SqlBoolean value) { throw null; }
Adjust(System.Data.SqlTypes.SqlByte value)211         public System.Data.SqlTypes.SqlByte Adjust(System.Data.SqlTypes.SqlByte value) { throw null; }
Adjust(System.Data.SqlTypes.SqlBytes value)212         public System.Data.SqlTypes.SqlBytes Adjust(System.Data.SqlTypes.SqlBytes value) { throw null; }
Adjust(System.Data.SqlTypes.SqlChars value)213         public System.Data.SqlTypes.SqlChars Adjust(System.Data.SqlTypes.SqlChars value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDateTime value)214         public System.Data.SqlTypes.SqlDateTime Adjust(System.Data.SqlTypes.SqlDateTime value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDecimal value)215         public System.Data.SqlTypes.SqlDecimal Adjust(System.Data.SqlTypes.SqlDecimal value) { throw null; }
Adjust(System.Data.SqlTypes.SqlDouble value)216         public System.Data.SqlTypes.SqlDouble Adjust(System.Data.SqlTypes.SqlDouble value) { throw null; }
Adjust(System.Data.SqlTypes.SqlGuid value)217         public System.Data.SqlTypes.SqlGuid Adjust(System.Data.SqlTypes.SqlGuid value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt16 value)218         public System.Data.SqlTypes.SqlInt16 Adjust(System.Data.SqlTypes.SqlInt16 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt32 value)219         public System.Data.SqlTypes.SqlInt32 Adjust(System.Data.SqlTypes.SqlInt32 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlInt64 value)220         public System.Data.SqlTypes.SqlInt64 Adjust(System.Data.SqlTypes.SqlInt64 value) { throw null; }
Adjust(System.Data.SqlTypes.SqlMoney value)221         public System.Data.SqlTypes.SqlMoney Adjust(System.Data.SqlTypes.SqlMoney value) { throw null; }
Adjust(System.Data.SqlTypes.SqlSingle value)222         public System.Data.SqlTypes.SqlSingle Adjust(System.Data.SqlTypes.SqlSingle value) { throw null; }
Adjust(System.Data.SqlTypes.SqlString value)223         public System.Data.SqlTypes.SqlString Adjust(System.Data.SqlTypes.SqlString value) { throw null; }
Adjust(System.Data.SqlTypes.SqlXml value)224         public System.Data.SqlTypes.SqlXml Adjust(System.Data.SqlTypes.SqlXml value) { throw null; }
Adjust(System.DateTime value)225         public System.DateTime Adjust(System.DateTime value) { throw null; }
Adjust(System.DateTimeOffset value)226         public System.DateTimeOffset Adjust(System.DateTimeOffset value) { throw null; }
Adjust(decimal value)227         public decimal Adjust(decimal value) { throw null; }
Adjust(double value)228         public double Adjust(double value) { throw null; }
Adjust(System.Guid value)229         public System.Guid Adjust(System.Guid value) { throw null; }
Adjust(short value)230         public short Adjust(short value) { throw null; }
Adjust(int value)231         public int Adjust(int value) { throw null; }
Adjust(long value)232         public long Adjust(long value) { throw null; }
Adjust(object value)233         public object Adjust(object value) { throw null; }
Adjust(float value)234         public float Adjust(float value) { throw null; }
Adjust(string value)235         public string Adjust(string value) { throw null; }
Adjust(System.TimeSpan value)236         public System.TimeSpan Adjust(System.TimeSpan value) { throw null; }
InferFromValue(object value, string name)237         public static Microsoft.SqlServer.Server.SqlMetaData InferFromValue(object value, string name) { throw null; }
238     }
239     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
240     [System.SerializableAttribute]
241     public sealed partial class SqlMethodAttribute : Microsoft.SqlServer.Server.SqlFunctionAttribute
242     {
SqlMethodAttribute()243         public SqlMethodAttribute() { }
244         public bool InvokeIfReceiverIsNull { get { throw null; } set { } }
245         public bool IsMutator { get { throw null; } set { } }
246         public bool OnNullCall { get { throw null; } set { } }
247     }
248     public sealed partial class SqlPipe
249     {
SqlPipe()250         internal SqlPipe() { }
251         public bool IsSendingResults { get { throw null; } }
ExecuteAndSend(System.Data.SqlClient.SqlCommand command)252         public void ExecuteAndSend(System.Data.SqlClient.SqlCommand command) { }
Send(Microsoft.SqlServer.Server.SqlDataRecord record)253         public void Send(Microsoft.SqlServer.Server.SqlDataRecord record) { }
Send(System.Data.SqlClient.SqlDataReader reader)254         public void Send(System.Data.SqlClient.SqlDataReader reader) { }
Send(string message)255         public void Send(string message) { }
SendResultsEnd()256         public void SendResultsEnd() { }
SendResultsRow(Microsoft.SqlServer.Server.SqlDataRecord record)257         public void SendResultsRow(Microsoft.SqlServer.Server.SqlDataRecord record) { }
SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord record)258         public void SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord record) { }
259     }
260     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
261     [System.SerializableAttribute]
262     public sealed partial class SqlProcedureAttribute : System.Attribute
263     {
SqlProcedureAttribute()264         public SqlProcedureAttribute() { }
265         public string Name { get { throw null; } set { } }
266     }
267     [System.AttributeUsageAttribute((System.AttributeTargets)(64), AllowMultiple=false, Inherited=false)]
268     [System.SerializableAttribute]
269     public sealed partial class SqlTriggerAttribute : System.Attribute
270     {
SqlTriggerAttribute()271         public SqlTriggerAttribute() { }
272         public string Event { get { throw null; } set { } }
273         public string Name { get { throw null; } set { } }
274         public string Target { get { throw null; } set { } }
275     }
276     public sealed partial class SqlTriggerContext
277     {
SqlTriggerContext()278         internal SqlTriggerContext() { }
279         public int ColumnCount { get { throw null; } }
280         public System.Data.SqlTypes.SqlXml EventData { get { throw null; } }
281         public Microsoft.SqlServer.Server.TriggerAction TriggerAction { get { throw null; } }
IsUpdatedColumn(int columnOrdinal)282         public bool IsUpdatedColumn(int columnOrdinal) { throw null; }
283     }
284     [System.AttributeUsageAttribute((System.AttributeTargets)(12), AllowMultiple=false, Inherited=false)]
285     public sealed partial class SqlUserDefinedAggregateAttribute : System.Attribute
286     {
287         public const int MaxByteSizeValue = 8000;
SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format)288         public SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format) { }
289         public Microsoft.SqlServer.Server.Format Format { get { throw null; } }
290         public bool IsInvariantToDuplicates { get { throw null; } set { } }
291         public bool IsInvariantToNulls { get { throw null; } set { } }
292         public bool IsInvariantToOrder { get { throw null; } set { } }
293         public bool IsNullIfEmpty { get { throw null; } set { } }
294         public int MaxByteSize { get { throw null; } set { } }
295         public string Name { get { throw null; } set { } }
296     }
297     [System.AttributeUsageAttribute((System.AttributeTargets)(12), AllowMultiple=false, Inherited=true)]
298     public sealed partial class SqlUserDefinedTypeAttribute : System.Attribute
299     {
SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format)300         public SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format) { }
301         public Microsoft.SqlServer.Server.Format Format { get { throw null; } }
302         public bool IsByteOrdered { get { throw null; } set { } }
303         public bool IsFixedLength { get { throw null; } set { } }
304         public int MaxByteSize { get { throw null; } set { } }
305         public string Name { get { throw null; } set { } }
306         public string ValidationMethodName { get { throw null; } set { } }
307     }
308     [System.SerializableAttribute]
309     public enum SystemDataAccessKind
310     {
311         None = 0,
312         Read = 1,
313     }
314     public enum TriggerAction
315     {
316         AlterAppRole = 138,
317         AlterAssembly = 102,
318         AlterBinding = 175,
319         AlterFunction = 62,
320         AlterIndex = 25,
321         AlterLogin = 145,
322         AlterPartitionFunction = 192,
323         AlterPartitionScheme = 195,
324         AlterProcedure = 52,
325         AlterQueue = 158,
326         AlterRole = 135,
327         AlterRoute = 165,
328         AlterSchema = 142,
329         AlterService = 162,
330         AlterTable = 22,
331         AlterTrigger = 72,
332         AlterUser = 132,
333         AlterView = 42,
334         CreateAppRole = 137,
335         CreateAssembly = 101,
336         CreateBinding = 174,
337         CreateContract = 154,
338         CreateEventNotification = 74,
339         CreateFunction = 61,
340         CreateIndex = 24,
341         CreateLogin = 144,
342         CreateMsgType = 151,
343         CreatePartitionFunction = 191,
344         CreatePartitionScheme = 194,
345         CreateProcedure = 51,
346         CreateQueue = 157,
347         CreateRole = 134,
348         CreateRoute = 164,
349         CreateSchema = 141,
350         CreateSecurityExpression = 31,
351         CreateService = 161,
352         CreateSynonym = 34,
353         CreateTable = 21,
354         CreateTrigger = 71,
355         CreateType = 91,
356         CreateUser = 131,
357         CreateView = 41,
358         Delete = 3,
359         DenyObject = 171,
360         DenyStatement = 168,
361         DropAppRole = 139,
362         DropAssembly = 103,
363         DropBinding = 176,
364         DropContract = 156,
365         DropEventNotification = 76,
366         DropFunction = 63,
367         DropIndex = 26,
368         DropLogin = 146,
369         DropMsgType = 153,
370         DropPartitionFunction = 193,
371         DropPartitionScheme = 196,
372         DropProcedure = 53,
373         DropQueue = 159,
374         DropRole = 136,
375         DropRoute = 166,
376         DropSchema = 143,
377         DropSecurityExpression = 33,
378         DropService = 163,
379         DropSynonym = 36,
380         DropTable = 23,
381         DropTrigger = 73,
382         DropType = 93,
383         DropUser = 133,
384         DropView = 43,
385         GrantObject = 170,
386         GrantStatement = 167,
387         Insert = 1,
388         Invalid = 0,
389         RevokeObject = 172,
390         RevokeStatement = 169,
391         Update = 2,
392     }
393 }
394 namespace System.Data
395 {
396     public enum AcceptRejectRule
397     {
398         Cascade = 1,
399         None = 0,
400     }
401     [System.FlagsAttribute]
402     public enum CommandBehavior
403     {
404         CloseConnection = 32,
405         Default = 0,
406         KeyInfo = 4,
407         SchemaOnly = 2,
408         SequentialAccess = 16,
409         SingleResult = 1,
410         SingleRow = 8,
411     }
412     public enum CommandType
413     {
414         StoredProcedure = 4,
415         TableDirect = 512,
416         Text = 1,
417     }
418     public enum ConflictOption
419     {
420         CompareAllSearchableValues = 1,
421         CompareRowVersion = 2,
422         OverwriteChanges = 3,
423     }
424     [System.FlagsAttribute]
425     public enum ConnectionState
426     {
427         Broken = 16,
428         Closed = 0,
429         Connecting = 2,
430         Executing = 4,
431         Fetching = 8,
432         Open = 1,
433     }
434     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
435     [System.ComponentModel.TypeConverterAttribute("System.Data.ConstraintConverter")]
436     public abstract partial class Constraint
437     {
Constraint()438         protected Constraint() { }
439         [System.ComponentModel.DefaultValueAttribute("")]
440         public virtual string ConstraintName { get { throw null; } set { } }
441         [System.ComponentModel.BrowsableAttribute(false)]
442         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
443         public abstract System.Data.DataTable Table { get; }
444         [System.CLSCompliantAttribute(false)]
445         protected virtual System.Data.DataSet _DataSet { get { throw null; } }
CheckStateForProperty()446         protected void CheckStateForProperty() { }
SetDataSet(System.Data.DataSet dataSet)447         protected internal void SetDataSet(System.Data.DataSet dataSet) { }
ToString()448         public override string ToString() { throw null; }
449     }
450     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
451     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.ConstraintsCollectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
452     public sealed partial class ConstraintCollection : System.Data.InternalDataCollectionBase
453     {
ConstraintCollection()454         internal ConstraintCollection() { }
455         public System.Data.Constraint this[int index] { get { throw null; } }
456         public System.Data.Constraint this[string name] { get { throw null; } }
457         protected override System.Collections.ArrayList List { get { throw null; } }
458         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add(System.Data.Constraint constraint)459         public void Add(System.Data.Constraint constraint) { }
Add(string name, System.Data.DataColumn column, bool primaryKey)460         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)461         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)462         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)463         public System.Data.Constraint Add(string name, System.Data.DataColumn[] primaryKeyColumns, System.Data.DataColumn[] foreignKeyColumns) { throw null; }
AddRange(System.Data.Constraint[] constraints)464         public void AddRange(System.Data.Constraint[] constraints) { }
CanRemove(System.Data.Constraint constraint)465         public bool CanRemove(System.Data.Constraint constraint) { throw null; }
Clear()466         public void Clear() { }
Contains(string name)467         public bool Contains(string name) { throw null; }
CopyTo(System.Data.Constraint[] array, int index)468         public void CopyTo(System.Data.Constraint[] array, int index) { }
IndexOf(System.Data.Constraint constraint)469         public int IndexOf(System.Data.Constraint constraint) { throw null; }
IndexOf(string constraintName)470         public int IndexOf(string constraintName) { throw null; }
Remove(System.Data.Constraint constraint)471         public void Remove(System.Data.Constraint constraint) { }
Remove(string name)472         public void Remove(string name) { }
RemoveAt(int index)473         public void RemoveAt(int index) { }
474     }
475     [System.SerializableAttribute]
476     public partial class ConstraintException : System.Data.DataException
477     {
ConstraintException()478         public ConstraintException() { }
ConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)479         protected ConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ConstraintException(string s)480         public ConstraintException(string s) { }
ConstraintException(string message, System.Exception innerException)481         public ConstraintException(string message, System.Exception innerException) { }
482     }
483     [System.ComponentModel.DefaultPropertyAttribute("ColumnName")]
484     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
485     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataColumnEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
486     [System.ComponentModel.ToolboxItemAttribute(false)]
487     public partial class DataColumn : System.ComponentModel.MarshalByValueComponent
488     {
DataColumn()489         public DataColumn() { }
DataColumn(string columnName)490         public DataColumn(string columnName) { }
DataColumn(string columnName, System.Type dataType)491         public DataColumn(string columnName, System.Type dataType) { }
DataColumn(string columnName, System.Type dataType, string expr)492         public DataColumn(string columnName, System.Type dataType, string expr) { }
DataColumn(string columnName, System.Type dataType, string expr, System.Data.MappingType type)493         public DataColumn(string columnName, System.Type dataType, string expr, System.Data.MappingType type) { }
494         [System.ComponentModel.DefaultValueAttribute(true)]
495         public bool AllowDBNull { get { throw null; } set { } }
496         [System.ComponentModel.DefaultValueAttribute(false)]
497         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
498         public bool AutoIncrement { get { throw null; } set { } }
499         [System.ComponentModel.DefaultValueAttribute((long)0)]
500         public long AutoIncrementSeed { get { throw null; } set { } }
501         [System.ComponentModel.DefaultValueAttribute((long)1)]
502         public long AutoIncrementStep { get { throw null; } set { } }
503         public string Caption { get { throw null; } set { } }
504         [System.ComponentModel.DefaultValueAttribute((System.Data.MappingType)(1))]
505         public virtual System.Data.MappingType ColumnMapping { get { throw null; } set { } }
506         [System.ComponentModel.DefaultValueAttribute("")]
507         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
508         public string ColumnName { get { throw null; } set { } }
509         [System.ComponentModel.DefaultValueAttribute(typeof(string))]
510         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
511         [System.ComponentModel.TypeConverterAttribute("System.Data.ColumnTypeConverter")]
512         public System.Type DataType { get { throw null; } set { } }
513         [System.ComponentModel.DefaultValueAttribute((System.Data.DataSetDateTime)(3))]
514         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
515         public System.Data.DataSetDateTime DateTimeMode { get { throw null; } set { } }
516         [System.ComponentModel.TypeConverterAttribute("System.Data.DefaultValueTypeConverter")]
517         public object DefaultValue { get { throw null; } set { } }
518         [System.ComponentModel.DefaultValueAttribute("")]
519         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
520         public string Expression { get { throw null; } set { } }
521         [System.ComponentModel.BrowsableAttribute(false)]
522         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
523         [System.ComponentModel.DefaultValueAttribute(-1)]
524         public int MaxLength { get { throw null; } set { } }
525         public string Namespace { get { throw null; } set { } }
526         [System.ComponentModel.BrowsableAttribute(false)]
527         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
528         public int Ordinal { get { throw null; } }
529         [System.ComponentModel.DefaultValueAttribute("")]
530         public string Prefix { get { throw null; } set { } }
531         [System.ComponentModel.DefaultValueAttribute(false)]
532         public bool ReadOnly { get { throw null; } set { } }
533         [System.ComponentModel.BrowsableAttribute(false)]
534         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
535         public System.Data.DataTable Table { get { throw null; } }
536         [System.ComponentModel.DefaultValueAttribute(false)]
537         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
538         public bool Unique { get { throw null; } set { } }
CheckNotAllowNull()539         protected internal void CheckNotAllowNull() { }
CheckUnique()540         protected void CheckUnique() { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)541         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
RaisePropertyChanging(string name)542         protected internal void RaisePropertyChanging(string name) { }
SetOrdinal(int ordinal)543         public void SetOrdinal(int ordinal) { }
ToString()544         public override string ToString() { throw null; }
545     }
546     public partial class DataColumnChangeEventArgs : System.EventArgs
547     {
DataColumnChangeEventArgs(System.Data.DataRow row, System.Data.DataColumn column, object value)548         public DataColumnChangeEventArgs(System.Data.DataRow row, System.Data.DataColumn column, object value) { }
549         public System.Data.DataColumn Column { get { throw null; } }
550         public object ProposedValue { get { throw null; } set { } }
551         public System.Data.DataRow Row { get { throw null; } }
552     }
DataColumnChangeEventHandler(object sender, System.Data.DataColumnChangeEventArgs e)553     public delegate void DataColumnChangeEventHandler(object sender, System.Data.DataColumnChangeEventArgs e);
554     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
555     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.ColumnsCollectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
556     public sealed partial class DataColumnCollection : System.Data.InternalDataCollectionBase
557     {
DataColumnCollection()558         internal DataColumnCollection() { }
559         public System.Data.DataColumn this[int index] { get { throw null; } }
560         public System.Data.DataColumn this[string name] { get { throw null; } }
561         protected override System.Collections.ArrayList List { get { throw null; } }
562         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add()563         public System.Data.DataColumn Add() { throw null; }
Add(System.Data.DataColumn column)564         public void Add(System.Data.DataColumn column) { }
Add(string columnName)565         public System.Data.DataColumn Add(string columnName) { throw null; }
Add(string columnName, System.Type type)566         public System.Data.DataColumn Add(string columnName, System.Type type) { throw null; }
Add(string columnName, System.Type type, string expression)567         public System.Data.DataColumn Add(string columnName, System.Type type, string expression) { throw null; }
AddRange(System.Data.DataColumn[] columns)568         public void AddRange(System.Data.DataColumn[] columns) { }
CanRemove(System.Data.DataColumn column)569         public bool CanRemove(System.Data.DataColumn column) { throw null; }
Clear()570         public void Clear() { }
Contains(string name)571         public bool Contains(string name) { throw null; }
CopyTo(System.Data.DataColumn[] array, int index)572         public void CopyTo(System.Data.DataColumn[] array, int index) { }
IndexOf(System.Data.DataColumn column)573         public int IndexOf(System.Data.DataColumn column) { throw null; }
IndexOf(string columnName)574         public int IndexOf(string columnName) { throw null; }
Remove(System.Data.DataColumn column)575         public void Remove(System.Data.DataColumn column) { }
Remove(string name)576         public void Remove(string name) { }
RemoveAt(int index)577         public void RemoveAt(int index) { }
578     }
579     [System.SerializableAttribute]
580     public partial class DataException : System.SystemException
581     {
DataException()582         public DataException() { }
DataException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)583         protected DataException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataException(string s)584         public DataException(string s) { }
DataException(string s, System.Exception innerException)585         public DataException(string s, System.Exception innerException) { }
586     }
587     [System.ComponentModel.DefaultPropertyAttribute("RelationName")]
588     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataRelationEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
589     [System.ComponentModel.TypeConverterAttribute("System.Data.RelationshipConverter")]
590     public partial class DataRelation
591     {
DataRelation(string relationName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)592         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)593         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)594         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)595         public DataRelation(string relationName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns, bool createConstraints) { }
596         [System.ComponentModel.BrowsableAttribute(false)]
DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested)597         public DataRelation(string relationName, string parentTableName, string parentTableNamespace, string childTableName, string childTableNamespace, string[] parentColumnNames, string[] childColumnNames, bool nested) { }
598         [System.ComponentModel.BrowsableAttribute(false)]
DataRelation(string relationName, string parentTableName, string childTableName, string[] parentColumnNames, string[] childColumnNames, bool nested)599         public DataRelation(string relationName, string parentTableName, string childTableName, string[] parentColumnNames, string[] childColumnNames, bool nested) { }
600         public virtual System.Data.DataColumn[] ChildColumns { get { throw null; } }
601         public virtual System.Data.ForeignKeyConstraint ChildKeyConstraint { get { throw null; } }
602         public virtual System.Data.DataTable ChildTable { get { throw null; } }
603         [System.ComponentModel.BrowsableAttribute(false)]
604         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
605         public virtual System.Data.DataSet DataSet { get { throw null; } }
606         [System.ComponentModel.BrowsableAttribute(false)]
607         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
608         [System.ComponentModel.DefaultValueAttribute(false)]
609         public virtual bool Nested { get { throw null; } set { } }
610         public virtual System.Data.DataColumn[] ParentColumns { get { throw null; } }
611         public virtual System.Data.UniqueConstraint ParentKeyConstraint { get { throw null; } }
612         public virtual System.Data.DataTable ParentTable { get { throw null; } }
613         [System.ComponentModel.DefaultValueAttribute("")]
614         public virtual string RelationName { get { throw null; } set { } }
CheckStateForProperty()615         protected void CheckStateForProperty() { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)616         protected internal void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
RaisePropertyChanging(string name)617         protected internal void RaisePropertyChanging(string name) { }
ToString()618         public override string ToString() { throw null; }
619     }
620     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
621     [System.ComponentModel.DefaultPropertyAttribute("Table")]
622     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataRelationCollectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
623     public abstract partial class DataRelationCollection : System.Data.InternalDataCollectionBase
624     {
DataRelationCollection()625         protected DataRelationCollection() { }
626         public abstract System.Data.DataRelation this[int index] { get; }
627         public abstract System.Data.DataRelation this[string name] { get; }
628         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
Add(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)629         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)630         public virtual System.Data.DataRelation Add(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { throw null; }
Add(System.Data.DataRelation relation)631         public void Add(System.Data.DataRelation relation) { }
Add(string name, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)632         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)633         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)634         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)635         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)636         protected virtual void AddCore(System.Data.DataRelation relation) { }
AddRange(System.Data.DataRelation[] relations)637         public virtual void AddRange(System.Data.DataRelation[] relations) { }
CanRemove(System.Data.DataRelation relation)638         public virtual bool CanRemove(System.Data.DataRelation relation) { throw null; }
Clear()639         public virtual void Clear() { }
Contains(string name)640         public virtual bool Contains(string name) { throw null; }
CopyTo(System.Data.DataRelation[] array, int index)641         public void CopyTo(System.Data.DataRelation[] array, int index) { }
GetDataSet()642         protected abstract System.Data.DataSet GetDataSet();
IndexOf(System.Data.DataRelation relation)643         public virtual int IndexOf(System.Data.DataRelation relation) { throw null; }
IndexOf(string relationName)644         public virtual int IndexOf(string relationName) { throw null; }
OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent)645         protected virtual void OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent) { }
OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs ccevent)646         protected virtual void OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs ccevent) { }
Remove(System.Data.DataRelation relation)647         public void Remove(System.Data.DataRelation relation) { }
Remove(string name)648         public void Remove(string name) { }
RemoveAt(int index)649         public void RemoveAt(int index) { }
RemoveCore(System.Data.DataRelation relation)650         protected virtual void RemoveCore(System.Data.DataRelation relation) { }
651     }
652     public partial class DataRow
653     {
DataRow(System.Data.DataRowBuilder builder)654         protected internal DataRow(System.Data.DataRowBuilder builder) { }
655         public bool HasErrors { get { throw null; } }
656         public object this[System.Data.DataColumn column] { get { throw null; } set { } }
657         public object this[System.Data.DataColumn column, System.Data.DataRowVersion version] { get { throw null; } }
658         public object this[int columnIndex] { get { throw null; } set { } }
659         public object this[int columnIndex, System.Data.DataRowVersion version] { get { throw null; } }
660         public object this[string columnName] { get { throw null; } set { } }
661         public object this[string columnName, System.Data.DataRowVersion version] { get { throw null; } }
662         public object[] ItemArray { get { throw null; } set { } }
663         public string RowError { get { throw null; } set { } }
664         public System.Data.DataRowState RowState { get { throw null; } }
665         public System.Data.DataTable Table { get { throw null; } }
AcceptChanges()666         public void AcceptChanges() { }
667         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
BeginEdit()668         public void BeginEdit() { }
669         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
CancelEdit()670         public void CancelEdit() { }
ClearErrors()671         public void ClearErrors() { }
Delete()672         public void Delete() { }
673         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
EndEdit()674         public void EndEdit() { }
GetChildRows(System.Data.DataRelation relation)675         public System.Data.DataRow[] GetChildRows(System.Data.DataRelation relation) { throw null; }
GetChildRows(System.Data.DataRelation relation, System.Data.DataRowVersion version)676         public System.Data.DataRow[] GetChildRows(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetChildRows(string relationName)677         public System.Data.DataRow[] GetChildRows(string relationName) { throw null; }
GetChildRows(string relationName, System.Data.DataRowVersion version)678         public System.Data.DataRow[] GetChildRows(string relationName, System.Data.DataRowVersion version) { throw null; }
GetColumnError(System.Data.DataColumn column)679         public string GetColumnError(System.Data.DataColumn column) { throw null; }
GetColumnError(int columnIndex)680         public string GetColumnError(int columnIndex) { throw null; }
GetColumnError(string columnName)681         public string GetColumnError(string columnName) { throw null; }
GetColumnsInError()682         public System.Data.DataColumn[] GetColumnsInError() { throw null; }
GetParentRow(System.Data.DataRelation relation)683         public System.Data.DataRow GetParentRow(System.Data.DataRelation relation) { throw null; }
GetParentRow(System.Data.DataRelation relation, System.Data.DataRowVersion version)684         public System.Data.DataRow GetParentRow(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetParentRow(string relationName)685         public System.Data.DataRow GetParentRow(string relationName) { throw null; }
GetParentRow(string relationName, System.Data.DataRowVersion version)686         public System.Data.DataRow GetParentRow(string relationName, System.Data.DataRowVersion version) { throw null; }
GetParentRows(System.Data.DataRelation relation)687         public System.Data.DataRow[] GetParentRows(System.Data.DataRelation relation) { throw null; }
GetParentRows(System.Data.DataRelation relation, System.Data.DataRowVersion version)688         public System.Data.DataRow[] GetParentRows(System.Data.DataRelation relation, System.Data.DataRowVersion version) { throw null; }
GetParentRows(string relationName)689         public System.Data.DataRow[] GetParentRows(string relationName) { throw null; }
GetParentRows(string relationName, System.Data.DataRowVersion version)690         public System.Data.DataRow[] GetParentRows(string relationName, System.Data.DataRowVersion version) { throw null; }
HasVersion(System.Data.DataRowVersion version)691         public bool HasVersion(System.Data.DataRowVersion version) { throw null; }
IsNull(System.Data.DataColumn column)692         public bool IsNull(System.Data.DataColumn column) { throw null; }
IsNull(System.Data.DataColumn column, System.Data.DataRowVersion version)693         public bool IsNull(System.Data.DataColumn column, System.Data.DataRowVersion version) { throw null; }
IsNull(int columnIndex)694         public bool IsNull(int columnIndex) { throw null; }
IsNull(string columnName)695         public bool IsNull(string columnName) { throw null; }
RejectChanges()696         public void RejectChanges() { }
SetAdded()697         public void SetAdded() { }
SetColumnError(System.Data.DataColumn column, string error)698         public void SetColumnError(System.Data.DataColumn column, string error) { }
SetColumnError(int columnIndex, string error)699         public void SetColumnError(int columnIndex, string error) { }
SetColumnError(string columnName, string error)700         public void SetColumnError(string columnName, string error) { }
SetModified()701         public void SetModified() { }
SetNull(System.Data.DataColumn column)702         protected void SetNull(System.Data.DataColumn column) { }
SetParentRow(System.Data.DataRow parentRow)703         public void SetParentRow(System.Data.DataRow parentRow) { }
SetParentRow(System.Data.DataRow parentRow, System.Data.DataRelation relation)704         public void SetParentRow(System.Data.DataRow parentRow, System.Data.DataRelation relation) { }
705     }
706     [System.FlagsAttribute]
707     public enum DataRowAction
708     {
709         Add = 16,
710         Change = 2,
711         ChangeCurrentAndOriginal = 64,
712         ChangeOriginal = 32,
713         Commit = 8,
714         Delete = 1,
715         Nothing = 0,
716         Rollback = 4,
717     }
718     public sealed partial class DataRowBuilder
719     {
DataRowBuilder()720         internal DataRowBuilder() { }
721     }
722     public partial class DataRowChangeEventArgs : System.EventArgs
723     {
DataRowChangeEventArgs(System.Data.DataRow row, System.Data.DataRowAction action)724         public DataRowChangeEventArgs(System.Data.DataRow row, System.Data.DataRowAction action) { }
725         public System.Data.DataRowAction Action { get { throw null; } }
726         public System.Data.DataRow Row { get { throw null; } }
727     }
DataRowChangeEventHandler(object sender, System.Data.DataRowChangeEventArgs e)728     public delegate void DataRowChangeEventHandler(object sender, System.Data.DataRowChangeEventArgs e);
729     public sealed partial class DataRowCollection : System.Data.InternalDataCollectionBase
730     {
DataRowCollection()731         internal DataRowCollection() { }
732         public override int Count { get { throw null; } }
733         public System.Data.DataRow this[int index] { get { throw null; } }
Add(System.Data.DataRow row)734         public void Add(System.Data.DataRow row) { }
Add(params object[] values)735         public System.Data.DataRow Add(params object[] values) { throw null; }
Clear()736         public void Clear() { }
Contains(object key)737         public bool Contains(object key) { throw null; }
Contains(object[] keys)738         public bool Contains(object[] keys) { throw null; }
CopyTo(System.Array ar, int index)739         public override void CopyTo(System.Array ar, int index) { }
CopyTo(System.Data.DataRow[] array, int index)740         public void CopyTo(System.Data.DataRow[] array, int index) { }
Find(object key)741         public System.Data.DataRow Find(object key) { throw null; }
Find(object[] keys)742         public System.Data.DataRow Find(object[] keys) { throw null; }
GetEnumerator()743         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(System.Data.DataRow row)744         public int IndexOf(System.Data.DataRow row) { throw null; }
InsertAt(System.Data.DataRow row, int pos)745         public void InsertAt(System.Data.DataRow row, int pos) { }
Remove(System.Data.DataRow row)746         public void Remove(System.Data.DataRow row) { }
RemoveAt(int index)747         public void RemoveAt(int index) { }
748     }
749     [System.FlagsAttribute]
750     public enum DataRowState
751     {
752         Added = 4,
753         Deleted = 8,
754         Detached = 1,
755         Modified = 16,
756         Unchanged = 2,
757     }
758     public enum DataRowVersion
759     {
760         Current = 512,
761         Default = 1536,
762         Original = 256,
763         Proposed = 1024,
764     }
765     public partial class DataRowView : System.ComponentModel.ICustomTypeDescriptor, System.ComponentModel.IDataErrorInfo, System.ComponentModel.IEditableObject, System.ComponentModel.INotifyPropertyChanged
766     {
DataRowView()767         internal DataRowView() { }
768         public System.Data.DataView DataView { get { throw null; } }
769         public bool IsEdit { get { throw null; } }
770         public bool IsNew { get { throw null; } }
771         public object this[int ndx] { get { throw null; } set { } }
772         public object this[string property] { get { throw null; } set { } }
773         public System.Data.DataRow Row { get { throw null; } }
774         public System.Data.DataRowVersion RowVersion { get { throw null; } }
775         string System.ComponentModel.IDataErrorInfo.Error { get { throw null; } }
776         string System.ComponentModel.IDataErrorInfo.this[string colName] { get { throw null; } }
777         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
BeginEdit()778         public void BeginEdit() { }
CancelEdit()779         public void CancelEdit() { }
CreateChildView(System.Data.DataRelation relation)780         public System.Data.DataView CreateChildView(System.Data.DataRelation relation) { throw null; }
CreateChildView(System.Data.DataRelation relation, bool followParent)781         public System.Data.DataView CreateChildView(System.Data.DataRelation relation, bool followParent) { throw null; }
CreateChildView(string relationName)782         public System.Data.DataView CreateChildView(string relationName) { throw null; }
CreateChildView(string relationName, bool followParent)783         public System.Data.DataView CreateChildView(string relationName, bool followParent) { throw null; }
Delete()784         public void Delete() { }
EndEdit()785         public void EndEdit() { }
Equals(object other)786         public override bool Equals(object other) { throw null; }
GetHashCode()787         public override int GetHashCode() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()788         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()789         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()790         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()791         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()792         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()793         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)794         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()795         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)796         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()797         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)798         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)799         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
800     }
801     [System.ComponentModel.DefaultPropertyAttribute("DataSetName")]
802     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.DataSetDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
803     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.DataSetToolboxItem, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
804     [System.Xml.Serialization.XmlRootAttribute("DataSet")]
805     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetDataSetSchema")]
806     [System.SerializableAttribute]
807     public partial class DataSet : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
808     {
DataSet()809         public DataSet() { }
DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)810         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)811         protected DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context, bool ConstructSchema) { }
DataSet(string dataSetName)812         public DataSet(string dataSetName) { }
813         [System.ComponentModel.DefaultValueAttribute(false)]
814         public bool CaseSensitive { get { throw null; } set { } }
815         [System.ComponentModel.DefaultValueAttribute("")]
816         public string DataSetName { get { throw null; } set { } }
817         [System.ComponentModel.BrowsableAttribute(false)]
818         public System.Data.DataViewManager DefaultViewManager { get { throw null; } }
819         [System.ComponentModel.DefaultValueAttribute(true)]
820         public bool EnforceConstraints { get { throw null; } set { } }
821         [System.ComponentModel.BrowsableAttribute(false)]
822         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
823         [System.ComponentModel.BrowsableAttribute(false)]
824         public bool HasErrors { get { throw null; } }
825         [System.ComponentModel.BrowsableAttribute(false)]
826         public bool IsInitialized { get { throw null; } }
827         public System.Globalization.CultureInfo Locale { get { throw null; } set { } }
828         [System.ComponentModel.DefaultValueAttribute("")]
829         public string Namespace { get { throw null; } set { } }
830         [System.ComponentModel.DefaultValueAttribute("")]
831         public string Prefix { get { throw null; } set { } }
832         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
833         public System.Data.DataRelationCollection Relations { get { throw null; } }
834         [System.ComponentModel.DefaultValueAttribute((System.Data.SerializationFormat)(0))]
835         public System.Data.SerializationFormat RemotingFormat { get { throw null; } set { } }
836         [System.ComponentModel.BrowsableAttribute(false)]
837         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
838         public virtual System.Data.SchemaSerializationMode SchemaSerializationMode { get { throw null; } set { } }
839         [System.ComponentModel.BrowsableAttribute(false)]
840         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
841         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
842         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
843         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
844         public System.Data.DataTableCollection Tables { get { throw null; } }
845         public event System.EventHandler Initialized { add { } remove { } }
846         public event System.Data.MergeFailedEventHandler MergeFailed { add { } remove { } }
AcceptChanges()847         public void AcceptChanges() { }
BeginInit()848         public void BeginInit() { }
Clear()849         public void Clear() { }
Clone()850         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public virtual System.Data.DataSet Clone() { throw null; }
Copy()851         public System.Data.DataSet Copy() { throw null; }
CreateDataReader()852         public System.Data.DataTableReader CreateDataReader() { throw null; }
CreateDataReader(params System.Data.DataTable[] dataTables)853         public System.Data.DataTableReader CreateDataReader(params System.Data.DataTable[] dataTables) { throw null; }
DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)854         protected System.Data.SchemaSerializationMode DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { throw null; }
DetermineSchemaSerializationMode(System.Xml.XmlReader reader)855         protected System.Data.SchemaSerializationMode DetermineSchemaSerializationMode(System.Xml.XmlReader reader) { throw null; }
EndInit()856         public void EndInit() { }
GetChanges()857         public System.Data.DataSet GetChanges() { throw null; }
GetChanges(System.Data.DataRowState rowStates)858         public System.Data.DataSet GetChanges(System.Data.DataRowState rowStates) { throw null; }
GetDataSetSchema(System.Xml.Schema.XmlSchemaSet schemaSet)859         public static System.Xml.Schema.XmlSchemaComplexType GetDataSetSchema(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
860         [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)861         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetSchemaSerializable()862         protected virtual System.Xml.Schema.XmlSchema GetSchemaSerializable() { throw null; }
GetSerializationData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)863         protected void GetSerializationData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetXml()864         public string GetXml() { throw null; }
GetXmlSchema()865         public string GetXmlSchema() { throw null; }
HasChanges()866         public bool HasChanges() { throw null; }
HasChanges(System.Data.DataRowState rowStates)867         public bool HasChanges(System.Data.DataRowState rowStates) { throw null; }
InferXmlSchema(System.IO.Stream stream, string[] nsArray)868         public void InferXmlSchema(System.IO.Stream stream, string[] nsArray) { }
InferXmlSchema(System.IO.TextReader reader, string[] nsArray)869         public void InferXmlSchema(System.IO.TextReader reader, string[] nsArray) { }
InferXmlSchema(string fileName, string[] nsArray)870         public void InferXmlSchema(string fileName, string[] nsArray) { }
InferXmlSchema(System.Xml.XmlReader reader, string[] nsArray)871         public void InferXmlSchema(System.Xml.XmlReader reader, string[] nsArray) { }
InitializeDerivedDataSet()872         protected virtual void InitializeDerivedDataSet() { }
IsBinarySerialized(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)873         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)874         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)875         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)876         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, params string[] tables) { }
Merge(System.Data.DataRow[] rows)877         public void Merge(System.Data.DataRow[] rows) { }
Merge(System.Data.DataRow[] rows, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)878         public void Merge(System.Data.DataRow[] rows, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
Merge(System.Data.DataSet dataSet)879         public void Merge(System.Data.DataSet dataSet) { }
Merge(System.Data.DataSet dataSet, bool preserveChanges)880         public void Merge(System.Data.DataSet dataSet, bool preserveChanges) { }
Merge(System.Data.DataSet dataSet, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)881         public void Merge(System.Data.DataSet dataSet, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
Merge(System.Data.DataTable table)882         public void Merge(System.Data.DataTable table) { }
Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)883         public void Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)884         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
OnRemoveRelation(System.Data.DataRelation relation)885         protected virtual void OnRemoveRelation(System.Data.DataRelation relation) { }
OnRemoveTable(System.Data.DataTable table)886         protected internal virtual void OnRemoveTable(System.Data.DataTable table) { }
RaisePropertyChanging(string name)887         protected internal void RaisePropertyChanging(string name) { }
ReadXml(System.IO.Stream stream)888         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream) { throw null; }
ReadXml(System.IO.Stream stream, System.Data.XmlReadMode mode)889         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream, System.Data.XmlReadMode mode) { throw null; }
ReadXml(System.IO.TextReader reader)890         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader) { throw null; }
ReadXml(System.IO.TextReader reader, System.Data.XmlReadMode mode)891         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader, System.Data.XmlReadMode mode) { throw null; }
ReadXml(string fileName)892         public System.Data.XmlReadMode ReadXml(string fileName) { throw null; }
ReadXml(string fileName, System.Data.XmlReadMode mode)893         public System.Data.XmlReadMode ReadXml(string fileName, System.Data.XmlReadMode mode) { throw null; }
ReadXml(System.Xml.XmlReader reader)894         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader) { throw null; }
ReadXml(System.Xml.XmlReader reader, System.Data.XmlReadMode mode)895         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader, System.Data.XmlReadMode mode) { throw null; }
ReadXmlSchema(System.IO.Stream stream)896         public void ReadXmlSchema(System.IO.Stream stream) { }
ReadXmlSchema(System.IO.TextReader reader)897         public void ReadXmlSchema(System.IO.TextReader reader) { }
ReadXmlSchema(string fileName)898         public void ReadXmlSchema(string fileName) { }
ReadXmlSchema(System.Xml.XmlReader reader)899         public void ReadXmlSchema(System.Xml.XmlReader reader) { }
ReadXmlSerializable(System.Xml.XmlReader reader)900         protected virtual void ReadXmlSerializable(System.Xml.XmlReader reader) { }
RejectChanges()901         public virtual void RejectChanges() { }
Reset()902         public virtual void Reset() { }
ShouldSerializeRelations()903         protected virtual bool ShouldSerializeRelations() { throw null; }
ShouldSerializeTables()904         protected virtual bool ShouldSerializeTables() { throw null; }
System.ComponentModel.IListSource.GetList()905         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()906         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader)907         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)908         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.IO.Stream stream)909         public void WriteXml(System.IO.Stream stream) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode)910         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.TextWriter writer)911         public void WriteXml(System.IO.TextWriter writer) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode)912         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(string fileName)913         public void WriteXml(string fileName) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode)914         public void WriteXml(string fileName, System.Data.XmlWriteMode mode) { }
WriteXml(System.Xml.XmlWriter writer)915         public void WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode)916         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode) { }
WriteXmlSchema(System.IO.Stream stream)917         public void WriteXmlSchema(System.IO.Stream stream) { }
WriteXmlSchema(System.IO.Stream stream, System.Converter<System.Type, string> multipleTargetConverter)918         public void WriteXmlSchema(System.IO.Stream stream, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(System.IO.TextWriter writer)919         public void WriteXmlSchema(System.IO.TextWriter writer) { }
WriteXmlSchema(System.IO.TextWriter writer, System.Converter<System.Type, string> multipleTargetConverter)920         public void WriteXmlSchema(System.IO.TextWriter writer, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(string fileName)921         public void WriteXmlSchema(string fileName) { }
WriteXmlSchema(string fileName, System.Converter<System.Type, string> multipleTargetConverter)922         public void WriteXmlSchema(string fileName, System.Converter<System.Type, string> multipleTargetConverter) { }
WriteXmlSchema(System.Xml.XmlWriter writer)923         public void WriteXmlSchema(System.Xml.XmlWriter writer) { }
WriteXmlSchema(System.Xml.XmlWriter writer, System.Converter<System.Type, string> multipleTargetConverter)924         public void WriteXmlSchema(System.Xml.XmlWriter writer, System.Converter<System.Type, string> multipleTargetConverter) { }
925     }
926     public enum DataSetDateTime
927     {
928         Local = 1,
929         Unspecified = 2,
930         UnspecifiedLocal = 3,
931         Utc = 4,
932     }
933     public partial class DataSetSchemaImporterExtension : System.Xml.Serialization.Advanced.SchemaImporterExtension
934     {
DataSetSchemaImporterExtension()935         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)936         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)937         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; }
938     }
939     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
940     [System.ObsoleteAttribute("DataSysDescriptionAttribute has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202", false)]
941     public partial class DataSysDescriptionAttribute : System.ComponentModel.DescriptionAttribute
942     {
943         [System.ObsoleteAttribute("DataSysDescriptionAttribute has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202", false)]
DataSysDescriptionAttribute(string description)944         public DataSysDescriptionAttribute(string description) { }
945         public override string Description { get { throw null; } }
946     }
947     [System.ComponentModel.DefaultEventAttribute("RowChanging")]
948     [System.ComponentModel.DefaultPropertyAttribute("TableName")]
949     [System.ComponentModel.DesignTimeVisibleAttribute(false)]
950     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataTableEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
951     [System.ComponentModel.ToolboxItemAttribute(false)]
952     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetDataTableSchema")]
953     [System.SerializableAttribute]
954     public partial class DataTable : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitialize, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
955     {
956         protected internal bool fInitInProgress;
DataTable()957         public DataTable() { }
DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)958         protected DataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DataTable(string tableName)959         public DataTable(string tableName) { }
DataTable(string tableName, string tableNamespace)960         public DataTable(string tableName, string tableNamespace) { }
961         public bool CaseSensitive { get { throw null; } set { } }
962         [System.ComponentModel.BrowsableAttribute(false)]
963         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
964         public System.Data.DataRelationCollection ChildRelations { get { throw null; } }
965         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
966         public System.Data.DataColumnCollection Columns { get { throw null; } }
967         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
968         public System.Data.ConstraintCollection Constraints { get { throw null; } }
969         [System.ComponentModel.BrowsableAttribute(false)]
970         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
971         public System.Data.DataSet DataSet { get { throw null; } }
972         [System.ComponentModel.BrowsableAttribute(false)]
973         public System.Data.DataView DefaultView { get { throw null; } }
974         [System.ComponentModel.DefaultValueAttribute("")]
975         public string DisplayExpression { get { throw null; } set { } }
976         [System.ComponentModel.BrowsableAttribute(false)]
977         public System.Data.PropertyCollection ExtendedProperties { get { throw null; } }
978         [System.ComponentModel.BrowsableAttribute(false)]
979         public bool HasErrors { get { throw null; } }
980         [System.ComponentModel.BrowsableAttribute(false)]
981         public bool IsInitialized { get { throw null; } }
982         public System.Globalization.CultureInfo Locale { get { throw null; } set { } }
983         [System.ComponentModel.DefaultValueAttribute(50)]
984         public int MinimumCapacity { get { throw null; } set { } }
985         public string Namespace { get { throw null; } set { } }
986         [System.ComponentModel.BrowsableAttribute(false)]
987         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
988         public System.Data.DataRelationCollection ParentRelations { get { throw null; } }
989         [System.ComponentModel.DefaultValueAttribute("")]
990         public string Prefix { get { throw null; } set { } }
991         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.PrimaryKeyEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
992         [System.ComponentModel.TypeConverterAttribute("System.Data.PrimaryKeyTypeConverter")]
993         public System.Data.DataColumn[] PrimaryKey { get { throw null; } set { } }
994         [System.ComponentModel.DefaultValueAttribute((System.Data.SerializationFormat)(0))]
995         public System.Data.SerializationFormat RemotingFormat { get { throw null; } set { } }
996         [System.ComponentModel.BrowsableAttribute(false)]
997         public System.Data.DataRowCollection Rows { get { throw null; } }
998         [System.ComponentModel.BrowsableAttribute(false)]
999         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
1000         public override System.ComponentModel.ISite Site { get { throw null; } set { } }
1001         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
1002         [System.ComponentModel.DefaultValueAttribute("")]
1003         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1004         public string TableName { get { throw null; } set { } }
1005         public event System.Data.DataColumnChangeEventHandler ColumnChanged { add { } remove { } }
1006         public event System.Data.DataColumnChangeEventHandler ColumnChanging { add { } remove { } }
1007         public event System.EventHandler Initialized { add { } remove { } }
1008         public event System.Data.DataRowChangeEventHandler RowChanged { add { } remove { } }
1009         public event System.Data.DataRowChangeEventHandler RowChanging { add { } remove { } }
1010         public event System.Data.DataRowChangeEventHandler RowDeleted { add { } remove { } }
1011         public event System.Data.DataRowChangeEventHandler RowDeleting { add { } remove { } }
1012         public event System.Data.DataTableClearEventHandler TableCleared { add { } remove { } }
1013         public event System.Data.DataTableClearEventHandler TableClearing { add { } remove { } }
1014         public event System.Data.DataTableNewRowEventHandler TableNewRow { add { } remove { } }
AcceptChanges()1015         public void AcceptChanges() { }
BeginInit()1016         public virtual void BeginInit() { }
BeginLoadData()1017         public void BeginLoadData() { }
Clear()1018         public void Clear() { }
Clone()1019         public virtual System.Data.DataTable Clone() { throw null; }
Compute(string expression, string filter)1020         public object Compute(string expression, string filter) { throw null; }
Copy()1021         public System.Data.DataTable Copy() { throw null; }
CreateDataReader()1022         public System.Data.DataTableReader CreateDataReader() { throw null; }
CreateInstance()1023         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]protected virtual System.Data.DataTable CreateInstance() { throw null; }
EndInit()1024         public virtual void EndInit() { }
EndLoadData()1025         public void EndLoadData() { }
GetChanges()1026         public System.Data.DataTable GetChanges() { throw null; }
GetChanges(System.Data.DataRowState rowStates)1027         public System.Data.DataTable GetChanges(System.Data.DataRowState rowStates) { throw null; }
GetDataTableSchema(System.Xml.Schema.XmlSchemaSet schemaSet)1028         public static System.Xml.Schema.XmlSchemaComplexType GetDataTableSchema(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GetErrors()1029         public System.Data.DataRow[] GetErrors() { throw null; }
1030         [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)1031         public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
GetRowType()1032         protected virtual System.Type GetRowType() { throw null; }
GetSchema()1033         protected virtual System.Xml.Schema.XmlSchema GetSchema() { throw null; }
ImportRow(System.Data.DataRow row)1034         public void ImportRow(System.Data.DataRow row) { }
Load(System.Data.IDataReader reader)1035         public void Load(System.Data.IDataReader reader) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption)1036         public void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption) { }
Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler)1037         public virtual void Load(System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler) { }
LoadDataRow(object[] values, bool fAcceptChanges)1038         public System.Data.DataRow LoadDataRow(object[] values, bool fAcceptChanges) { throw null; }
LoadDataRow(object[] values, System.Data.LoadOption loadOption)1039         public System.Data.DataRow LoadDataRow(object[] values, System.Data.LoadOption loadOption) { throw null; }
Merge(System.Data.DataTable table)1040         public void Merge(System.Data.DataTable table) { }
Merge(System.Data.DataTable table, bool preserveChanges)1041         public void Merge(System.Data.DataTable table, bool preserveChanges) { }
Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction)1042         public void Merge(System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction) { }
NewRow()1043         public System.Data.DataRow NewRow() { throw null; }
NewRowArray(int size)1044         [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]protected internal System.Data.DataRow[] NewRowArray(int size) { throw null; }
NewRowFromBuilder(System.Data.DataRowBuilder builder)1045         protected virtual System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) { throw null; }
OnColumnChanged(System.Data.DataColumnChangeEventArgs e)1046         protected internal virtual void OnColumnChanged(System.Data.DataColumnChangeEventArgs e) { }
OnColumnChanging(System.Data.DataColumnChangeEventArgs e)1047         protected internal virtual void OnColumnChanging(System.Data.DataColumnChangeEventArgs e) { }
OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent)1048         protected virtual void OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs pcevent) { }
OnRemoveColumn(System.Data.DataColumn column)1049         protected virtual void OnRemoveColumn(System.Data.DataColumn column) { }
OnRowChanged(System.Data.DataRowChangeEventArgs e)1050         protected virtual void OnRowChanged(System.Data.DataRowChangeEventArgs e) { }
OnRowChanging(System.Data.DataRowChangeEventArgs e)1051         protected virtual void OnRowChanging(System.Data.DataRowChangeEventArgs e) { }
OnRowDeleted(System.Data.DataRowChangeEventArgs e)1052         protected virtual void OnRowDeleted(System.Data.DataRowChangeEventArgs e) { }
OnRowDeleting(System.Data.DataRowChangeEventArgs e)1053         protected virtual void OnRowDeleting(System.Data.DataRowChangeEventArgs e) { }
OnTableCleared(System.Data.DataTableClearEventArgs e)1054         protected virtual void OnTableCleared(System.Data.DataTableClearEventArgs e) { }
OnTableClearing(System.Data.DataTableClearEventArgs e)1055         protected virtual void OnTableClearing(System.Data.DataTableClearEventArgs e) { }
OnTableNewRow(System.Data.DataTableNewRowEventArgs e)1056         protected virtual void OnTableNewRow(System.Data.DataTableNewRowEventArgs e) { }
ReadXml(System.IO.Stream stream)1057         public System.Data.XmlReadMode ReadXml(System.IO.Stream stream) { throw null; }
ReadXml(System.IO.TextReader reader)1058         public System.Data.XmlReadMode ReadXml(System.IO.TextReader reader) { throw null; }
ReadXml(string fileName)1059         public System.Data.XmlReadMode ReadXml(string fileName) { throw null; }
ReadXml(System.Xml.XmlReader reader)1060         public System.Data.XmlReadMode ReadXml(System.Xml.XmlReader reader) { throw null; }
ReadXmlSchema(System.IO.Stream stream)1061         public void ReadXmlSchema(System.IO.Stream stream) { }
ReadXmlSchema(System.IO.TextReader reader)1062         public void ReadXmlSchema(System.IO.TextReader reader) { }
ReadXmlSchema(string fileName)1063         public void ReadXmlSchema(string fileName) { }
ReadXmlSchema(System.Xml.XmlReader reader)1064         public void ReadXmlSchema(System.Xml.XmlReader reader) { }
ReadXmlSerializable(System.Xml.XmlReader reader)1065         protected virtual void ReadXmlSerializable(System.Xml.XmlReader reader) { }
RejectChanges()1066         public void RejectChanges() { }
Reset()1067         public virtual void Reset() { }
Select()1068         public System.Data.DataRow[] Select() { throw null; }
Select(string filterExpression)1069         public System.Data.DataRow[] Select(string filterExpression) { throw null; }
Select(string filterExpression, string sort)1070         public System.Data.DataRow[] Select(string filterExpression, string sort) { throw null; }
Select(string filterExpression, string sort, System.Data.DataViewRowState recordStates)1071         public System.Data.DataRow[] Select(string filterExpression, string sort, System.Data.DataViewRowState recordStates) { throw null; }
System.ComponentModel.IListSource.GetList()1072         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()1073         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader)1074         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)1075         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToString()1076         public override string ToString() { throw null; }
WriteXml(System.IO.Stream stream)1077         public void WriteXml(System.IO.Stream stream) { }
WriteXml(System.IO.Stream stream, bool writeHierarchy)1078         public void WriteXml(System.IO.Stream stream, bool writeHierarchy) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode)1079         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy)1080         public void WriteXml(System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(System.IO.TextWriter writer)1081         public void WriteXml(System.IO.TextWriter writer) { }
WriteXml(System.IO.TextWriter writer, bool writeHierarchy)1082         public void WriteXml(System.IO.TextWriter writer, bool writeHierarchy) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode)1083         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy)1084         public void WriteXml(System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(string fileName)1085         public void WriteXml(string fileName) { }
WriteXml(string fileName, bool writeHierarchy)1086         public void WriteXml(string fileName, bool writeHierarchy) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode)1087         public void WriteXml(string fileName, System.Data.XmlWriteMode mode) { }
WriteXml(string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy)1088         public void WriteXml(string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXml(System.Xml.XmlWriter writer)1089         public void WriteXml(System.Xml.XmlWriter writer) { }
WriteXml(System.Xml.XmlWriter writer, bool writeHierarchy)1090         public void WriteXml(System.Xml.XmlWriter writer, bool writeHierarchy) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode)1091         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode) { }
WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy)1092         public void WriteXml(System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy) { }
WriteXmlSchema(System.IO.Stream stream)1093         public void WriteXmlSchema(System.IO.Stream stream) { }
WriteXmlSchema(System.IO.Stream stream, bool writeHierarchy)1094         public void WriteXmlSchema(System.IO.Stream stream, bool writeHierarchy) { }
WriteXmlSchema(System.IO.TextWriter writer)1095         public void WriteXmlSchema(System.IO.TextWriter writer) { }
WriteXmlSchema(System.IO.TextWriter writer, bool writeHierarchy)1096         public void WriteXmlSchema(System.IO.TextWriter writer, bool writeHierarchy) { }
WriteXmlSchema(string fileName)1097         public void WriteXmlSchema(string fileName) { }
WriteXmlSchema(string fileName, bool writeHierarchy)1098         public void WriteXmlSchema(string fileName, bool writeHierarchy) { }
WriteXmlSchema(System.Xml.XmlWriter writer)1099         public void WriteXmlSchema(System.Xml.XmlWriter writer) { }
WriteXmlSchema(System.Xml.XmlWriter writer, bool writeHierarchy)1100         public void WriteXmlSchema(System.Xml.XmlWriter writer, bool writeHierarchy) { }
1101     }
1102     public sealed partial class DataTableClearEventArgs : System.EventArgs
1103     {
DataTableClearEventArgs(System.Data.DataTable dataTable)1104         public DataTableClearEventArgs(System.Data.DataTable dataTable) { }
1105         public System.Data.DataTable Table { get { throw null; } }
1106         public string TableName { get { throw null; } }
1107         public string TableNamespace { get { throw null; } }
1108     }
DataTableClearEventHandler(object sender, System.Data.DataTableClearEventArgs e)1109     public delegate void DataTableClearEventHandler(object sender, System.Data.DataTableClearEventArgs e);
1110     [System.ComponentModel.DefaultEventAttribute("CollectionChanged")]
1111     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.TablesCollectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1112     [System.ComponentModel.ListBindableAttribute(false)]
1113     public sealed partial class DataTableCollection : System.Data.InternalDataCollectionBase
1114     {
DataTableCollection()1115         internal DataTableCollection() { }
1116         public System.Data.DataTable this[int index] { get { throw null; } }
1117         public System.Data.DataTable this[string name] { get { throw null; } }
1118         public System.Data.DataTable this[string name, string tableNamespace] { get { throw null; } }
1119         protected override System.Collections.ArrayList List { get { throw null; } }
1120         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanged { add { } remove { } }
1121         public event System.ComponentModel.CollectionChangeEventHandler CollectionChanging { add { } remove { } }
Add()1122         public System.Data.DataTable Add() { throw null; }
Add(System.Data.DataTable table)1123         public void Add(System.Data.DataTable table) { }
Add(string name)1124         public System.Data.DataTable Add(string name) { throw null; }
Add(string name, string tableNamespace)1125         public System.Data.DataTable Add(string name, string tableNamespace) { throw null; }
AddRange(System.Data.DataTable[] tables)1126         public void AddRange(System.Data.DataTable[] tables) { }
CanRemove(System.Data.DataTable table)1127         public bool CanRemove(System.Data.DataTable table) { throw null; }
Clear()1128         public void Clear() { }
Contains(string name)1129         public bool Contains(string name) { throw null; }
Contains(string name, string tableNamespace)1130         public bool Contains(string name, string tableNamespace) { throw null; }
CopyTo(System.Data.DataTable[] array, int index)1131         public void CopyTo(System.Data.DataTable[] array, int index) { }
IndexOf(System.Data.DataTable table)1132         public int IndexOf(System.Data.DataTable table) { throw null; }
IndexOf(string tableName)1133         public int IndexOf(string tableName) { throw null; }
IndexOf(string tableName, string tableNamespace)1134         public int IndexOf(string tableName, string tableNamespace) { throw null; }
Remove(System.Data.DataTable table)1135         public void Remove(System.Data.DataTable table) { }
Remove(string name)1136         public void Remove(string name) { }
Remove(string name, string tableNamespace)1137         public void Remove(string name, string tableNamespace) { }
RemoveAt(int index)1138         public void RemoveAt(int index) { }
1139     }
1140     public sealed partial class DataTableNewRowEventArgs : System.EventArgs
1141     {
DataTableNewRowEventArgs(System.Data.DataRow dataRow)1142         public DataTableNewRowEventArgs(System.Data.DataRow dataRow) { }
1143         public System.Data.DataRow Row { get { throw null; } }
1144     }
DataTableNewRowEventHandler(object sender, System.Data.DataTableNewRowEventArgs e)1145     public delegate void DataTableNewRowEventHandler(object sender, System.Data.DataTableNewRowEventArgs e);
1146     public sealed partial class DataTableReader : System.Data.Common.DbDataReader
1147     {
DataTableReader(System.Data.DataTable dataTable)1148         public DataTableReader(System.Data.DataTable dataTable) { }
DataTableReader(System.Data.DataTable[] dataTables)1149         public DataTableReader(System.Data.DataTable[] dataTables) { }
1150         public override int Depth { get { throw null; } }
1151         public override int FieldCount { get { throw null; } }
1152         public override bool HasRows { get { throw null; } }
1153         public override bool IsClosed { get { throw null; } }
1154         public override object this[int ordinal] { get { throw null; } }
1155         public override object this[string name] { get { throw null; } }
1156         public override int RecordsAffected { get { throw null; } }
Close()1157         public override void Close() { }
GetBoolean(int ordinal)1158         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)1159         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)1160         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int ordinal)1161         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)1162         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int ordinal)1163         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)1164         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDecimal(int ordinal)1165         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)1166         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()1167         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int ordinal)1168         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)1169         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)1170         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)1171         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)1172         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)1173         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)1174         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)1175         public override int GetOrdinal(string name) { throw null; }
GetProviderSpecificFieldType(int ordinal)1176         public override System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
GetProviderSpecificValue(int ordinal)1177         public override object GetProviderSpecificValue(int ordinal) { throw null; }
GetProviderSpecificValues(object[] values)1178         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()1179         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)1180         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)1181         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)1182         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)1183         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()1184         public override bool NextResult() { throw null; }
Read()1185         public override bool Read() { throw null; }
1186     }
1187     [System.ComponentModel.DefaultEventAttribute("PositionChanged")]
1188     [System.ComponentModel.DefaultPropertyAttribute("Table")]
1189     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.DataViewDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1190     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataSourceEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1191     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
1192     {
DataView()1193         public DataView() { }
DataView(System.Data.DataTable table)1194         public DataView(System.Data.DataTable table) { }
DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState)1195         public DataView(System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState) { }
1196         [System.ComponentModel.DefaultValueAttribute(true)]
1197         public bool AllowDelete { get { throw null; } set { } }
1198         [System.ComponentModel.DefaultValueAttribute(true)]
1199         public bool AllowEdit { get { throw null; } set { } }
1200         [System.ComponentModel.DefaultValueAttribute(true)]
1201         public bool AllowNew { get { throw null; } set { } }
1202         [System.ComponentModel.DefaultValueAttribute(false)]
1203         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1204         public bool ApplyDefaultSort { get { throw null; } set { } }
1205         [System.ComponentModel.BrowsableAttribute(false)]
1206         public int Count { get { throw null; } }
1207         [System.ComponentModel.BrowsableAttribute(false)]
1208         public System.Data.DataViewManager DataViewManager { get { throw null; } }
1209         [System.ComponentModel.BrowsableAttribute(false)]
1210         public bool IsInitialized { get { throw null; } }
1211         [System.ComponentModel.BrowsableAttribute(false)]
1212         protected bool IsOpen { get { throw null; } }
1213         public System.Data.DataRowView this[int recordIndex] { get { throw null; } }
1214         [System.ComponentModel.DefaultValueAttribute("")]
1215         public virtual string RowFilter { get { throw null; } set { } }
1216         [System.ComponentModel.DefaultValueAttribute((System.Data.DataViewRowState)(22))]
1217         public System.Data.DataViewRowState RowStateFilter { get { throw null; } set { } }
1218         [System.ComponentModel.DefaultValueAttribute("")]
1219         public string Sort { get { throw null; } set { } }
1220         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1221         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1222         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1223         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1224         object System.Collections.IList.this[int recordIndex] { get { throw null; } set { } }
1225         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1226         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1227         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1228         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1229         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1230         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1231         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1232         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1233         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1234         string System.ComponentModel.IBindingListView.Filter { get { throw null; } set { } }
1235         System.ComponentModel.ListSortDescriptionCollection System.ComponentModel.IBindingListView.SortDescriptions { get { throw null; } }
1236         bool System.ComponentModel.IBindingListView.SupportsAdvancedSorting { get { throw null; } }
1237         bool System.ComponentModel.IBindingListView.SupportsFiltering { get { throw null; } }
1238         [System.ComponentModel.DefaultValueAttribute(null)]
1239         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1240         [System.ComponentModel.TypeConverterAttribute("System.Data.DataTableTypeConverter")]
1241         public System.Data.DataTable Table { get { throw null; } set { } }
1242         public event System.EventHandler Initialized { add { } remove { } }
1243         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
AddNew()1244         public virtual System.Data.DataRowView AddNew() { throw null; }
BeginInit()1245         public void BeginInit() { }
Close()1246         protected void Close() { }
ColumnCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1247         protected virtual void ColumnCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
CopyTo(System.Array array, int index)1248         public void CopyTo(System.Array array, int index) { }
Delete(int index)1249         public void Delete(int index) { }
Dispose(bool disposing)1250         protected override void Dispose(bool disposing) { }
EndInit()1251         public void EndInit() { }
Equals(System.Data.DataView view)1252         public virtual bool Equals(System.Data.DataView view) { throw null; }
Find(object key)1253         public int Find(object key) { throw null; }
Find(object[] key)1254         public int Find(object[] key) { throw null; }
FindRows(object key)1255         public System.Data.DataRowView[] FindRows(object key) { throw null; }
FindRows(object[] key)1256         public System.Data.DataRowView[] FindRows(object[] key) { throw null; }
GetEnumerator()1257         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexListChanged(object sender, System.ComponentModel.ListChangedEventArgs e)1258         protected virtual void IndexListChanged(object sender, System.ComponentModel.ListChangedEventArgs e) { }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1259         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
Open()1260         protected void Open() { }
Reset()1261         protected void Reset() { }
System.Collections.IList.Add(object value)1262         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1263         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1264         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1265         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1266         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1267         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1268         void System.Collections.IList.RemoveAt(int index) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property)1269         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.AddNew()1270         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1271         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key)1272         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property)1273         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.RemoveSort()1274         void System.ComponentModel.IBindingList.RemoveSort() { }
System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts)1275         void System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts) { }
System.ComponentModel.IBindingListView.RemoveFilter()1276         void System.ComponentModel.IBindingListView.RemoveFilter() { }
System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)1277         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)1278         string System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
ToTable()1279         public System.Data.DataTable ToTable() { throw null; }
ToTable(bool distinct, params string[] columnNames)1280         public System.Data.DataTable ToTable(bool distinct, params string[] columnNames) { throw null; }
ToTable(string tableName)1281         public System.Data.DataTable ToTable(string tableName) { throw null; }
ToTable(string tableName, bool distinct, params string[] columnNames)1282         public System.Data.DataTable ToTable(string tableName, bool distinct, params string[] columnNames) { throw null; }
UpdateIndex()1283         protected void UpdateIndex() { }
UpdateIndex(bool force)1284         protected virtual void UpdateIndex(bool force) { }
1285     }
1286     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.DataViewManagerDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1287     public partial class DataViewManager : System.ComponentModel.MarshalByValueComponent, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.IBindingList, System.ComponentModel.ITypedList
1288     {
DataViewManager()1289         public DataViewManager() { }
DataViewManager(System.Data.DataSet dataSet)1290         public DataViewManager(System.Data.DataSet dataSet) { }
1291         [System.ComponentModel.DefaultValueAttribute(null)]
1292         public System.Data.DataSet DataSet { get { throw null; } set { } }
1293         public string DataViewSettingCollectionString { get { throw null; } set { } }
1294         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1295         public System.Data.DataViewSettingCollection DataViewSettings { get { throw null; } }
1296         int System.Collections.ICollection.Count { get { throw null; } }
1297         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1298         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1299         bool System.Collections.IList.IsFixedSize { get { throw null; } }
1300         bool System.Collections.IList.IsReadOnly { get { throw null; } }
1301         object System.Collections.IList.this[int index] { get { throw null; } set { } }
1302         bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
1303         bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
1304         bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
1305         bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
1306         System.ComponentModel.ListSortDirection System.ComponentModel.IBindingList.SortDirection { get { throw null; } }
1307         System.ComponentModel.PropertyDescriptor System.ComponentModel.IBindingList.SortProperty { get { throw null; } }
1308         bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
1309         bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
1310         bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
1311         public event System.ComponentModel.ListChangedEventHandler ListChanged { add { } remove { } }
CreateDataView(System.Data.DataTable table)1312         public System.Data.DataView CreateDataView(System.Data.DataTable table) { throw null; }
OnListChanged(System.ComponentModel.ListChangedEventArgs e)1313         protected virtual void OnListChanged(System.ComponentModel.ListChangedEventArgs e) { }
RelationCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1314         protected virtual void RelationCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)1315         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1316         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)1317         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()1318         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)1319         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)1320         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)1321         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)1322         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)1323         void System.Collections.IList.RemoveAt(int index) { }
System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property)1324         void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.AddNew()1325         object System.ComponentModel.IBindingList.AddNew() { throw null; }
System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)1326         void System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection direction) { }
System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key)1327         int System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor property, object key) { throw null; }
System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property)1328         void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor property) { }
System.ComponentModel.IBindingList.RemoveSort()1329         void System.ComponentModel.IBindingList.RemoveSort() { }
System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors)1330         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors)1331         string System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
TableCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e)1332         protected virtual void TableCollectionChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) { }
1333     }
1334     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataViewRowStateEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1335     [System.FlagsAttribute]
1336     public enum DataViewRowState
1337     {
1338         Added = 4,
1339         CurrentRows = 22,
1340         Deleted = 8,
1341         ModifiedCurrent = 16,
1342         ModifiedOriginal = 32,
1343         None = 0,
1344         OriginalRows = 42,
1345         Unchanged = 2,
1346     }
1347     [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
1348     public partial class DataViewSetting
1349     {
DataViewSetting()1350         internal DataViewSetting() { }
1351         public bool ApplyDefaultSort { get { throw null; } set { } }
1352         [System.ComponentModel.BrowsableAttribute(false)]
1353         public System.Data.DataViewManager DataViewManager { get { throw null; } }
1354         public string RowFilter { get { throw null; } set { } }
1355         public System.Data.DataViewRowState RowStateFilter { get { throw null; } set { } }
1356         public string Sort { get { throw null; } set { } }
1357         [System.ComponentModel.BrowsableAttribute(false)]
1358         public System.Data.DataTable Table { get { throw null; } }
1359     }
1360     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataViewSettingsCollectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1361     public partial class DataViewSettingCollection : System.Collections.ICollection, System.Collections.IEnumerable
1362     {
DataViewSettingCollection()1363         internal DataViewSettingCollection() { }
1364         [System.ComponentModel.BrowsableAttribute(false)]
1365         public virtual int Count { get { throw null; } }
1366         [System.ComponentModel.BrowsableAttribute(false)]
1367         public bool IsReadOnly { get { throw null; } }
1368         [System.ComponentModel.BrowsableAttribute(false)]
1369         public bool IsSynchronized { get { throw null; } }
1370         public virtual System.Data.DataViewSetting this[System.Data.DataTable table] { get { throw null; } set { } }
1371         public virtual System.Data.DataViewSetting this[int index] { get { throw null; } set { } }
1372         public virtual System.Data.DataViewSetting this[string tableName] { get { throw null; } }
1373         [System.ComponentModel.BrowsableAttribute(false)]
1374         public object SyncRoot { get { throw null; } }
CopyTo(System.Array ar, int index)1375         public void CopyTo(System.Array ar, int index) { }
CopyTo(System.Data.DataViewSetting[] ar, int index)1376         public void CopyTo(System.Data.DataViewSetting[] ar, int index) { }
GetEnumerator()1377         public System.Collections.IEnumerator GetEnumerator() { throw null; }
1378     }
1379     [System.SerializableAttribute]
1380     public sealed partial class DBConcurrencyException : System.SystemException
1381     {
DBConcurrencyException()1382         public DBConcurrencyException() { }
DBConcurrencyException(string message)1383         public DBConcurrencyException(string message) { }
DBConcurrencyException(string message, System.Exception inner)1384         public DBConcurrencyException(string message, System.Exception inner) { }
DBConcurrencyException(string message, System.Exception inner, System.Data.DataRow[] dataRows)1385         public DBConcurrencyException(string message, System.Exception inner, System.Data.DataRow[] dataRows) { }
1386         public System.Data.DataRow Row { get { throw null; } set { } }
1387         public int RowCount { get { throw null; } }
CopyToRows(System.Data.DataRow[] array)1388         public void CopyToRows(System.Data.DataRow[] array) { }
CopyToRows(System.Data.DataRow[] array, int arrayIndex)1389         public void CopyToRows(System.Data.DataRow[] array, int arrayIndex) { }
1390         [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)1391         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
1392     }
1393     public enum DbType
1394     {
1395         AnsiString = 0,
1396         AnsiStringFixedLength = 22,
1397         Binary = 1,
1398         Boolean = 3,
1399         Byte = 2,
1400         Currency = 4,
1401         Date = 5,
1402         DateTime = 6,
1403         DateTime2 = 26,
1404         DateTimeOffset = 27,
1405         Decimal = 7,
1406         Double = 8,
1407         Guid = 9,
1408         Int16 = 10,
1409         Int32 = 11,
1410         Int64 = 12,
1411         Object = 13,
1412         SByte = 14,
1413         Single = 15,
1414         String = 16,
1415         StringFixedLength = 23,
1416         Time = 17,
1417         UInt16 = 18,
1418         UInt32 = 19,
1419         UInt64 = 20,
1420         VarNumeric = 21,
1421         Xml = 25,
1422     }
1423     [System.SerializableAttribute]
1424     public partial class DeletedRowInaccessibleException : System.Data.DataException
1425     {
DeletedRowInaccessibleException()1426         public DeletedRowInaccessibleException() { }
DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1427         protected DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DeletedRowInaccessibleException(string s)1428         public DeletedRowInaccessibleException(string s) { }
DeletedRowInaccessibleException(string message, System.Exception innerException)1429         public DeletedRowInaccessibleException(string message, System.Exception innerException) { }
1430     }
1431     [System.SerializableAttribute]
1432     public partial class DuplicateNameException : System.Data.DataException
1433     {
DuplicateNameException()1434         public DuplicateNameException() { }
DuplicateNameException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1435         protected DuplicateNameException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DuplicateNameException(string s)1436         public DuplicateNameException(string s) { }
DuplicateNameException(string message, System.Exception innerException)1437         public DuplicateNameException(string message, System.Exception innerException) { }
1438     }
1439     [System.SerializableAttribute]
1440     public partial class EvaluateException : System.Data.InvalidExpressionException
1441     {
EvaluateException()1442         public EvaluateException() { }
EvaluateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1443         protected EvaluateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
EvaluateException(string s)1444         public EvaluateException(string s) { }
EvaluateException(string message, System.Exception innerException)1445         public EvaluateException(string message, System.Exception innerException) { }
1446     }
1447     public partial class FillErrorEventArgs : System.EventArgs
1448     {
FillErrorEventArgs(System.Data.DataTable dataTable, object[] values)1449         public FillErrorEventArgs(System.Data.DataTable dataTable, object[] values) { }
1450         public bool Continue { get { throw null; } set { } }
1451         public System.Data.DataTable DataTable { get { throw null; } }
1452         public System.Exception Errors { get { throw null; } set { } }
1453         public object[] Values { get { throw null; } }
1454     }
FillErrorEventHandler(object sender, System.Data.FillErrorEventArgs e)1455     public delegate void FillErrorEventHandler(object sender, System.Data.FillErrorEventArgs e);
1456     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
1457     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.ForeignKeyConstraintEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1458     public partial class ForeignKeyConstraint : System.Data.Constraint
1459     {
ForeignKeyConstraint(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)1460         public ForeignKeyConstraint(System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
ForeignKeyConstraint(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)1461         public ForeignKeyConstraint(System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
ForeignKeyConstraint(string constraintName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn)1462         public ForeignKeyConstraint(string constraintName, System.Data.DataColumn parentColumn, System.Data.DataColumn childColumn) { }
ForeignKeyConstraint(string constraintName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns)1463         public ForeignKeyConstraint(string constraintName, System.Data.DataColumn[] parentColumns, System.Data.DataColumn[] childColumns) { }
1464         [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)1465         public ForeignKeyConstraint(string constraintName, string parentTableName, string parentTableNamespace, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule) { }
1466         [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)1467         public ForeignKeyConstraint(string constraintName, string parentTableName, string[] parentColumnNames, string[] childColumnNames, System.Data.AcceptRejectRule acceptRejectRule, System.Data.Rule deleteRule, System.Data.Rule updateRule) { }
1468         [System.ComponentModel.DefaultValueAttribute((System.Data.AcceptRejectRule)(0))]
1469         public virtual System.Data.AcceptRejectRule AcceptRejectRule { get { throw null; } set { } }
1470         [System.ComponentModel.ReadOnlyAttribute(true)]
1471         public virtual System.Data.DataColumn[] Columns { get { throw null; } }
1472         [System.ComponentModel.DefaultValueAttribute((System.Data.Rule)(1))]
1473         public virtual System.Data.Rule DeleteRule { get { throw null; } set { } }
1474         [System.ComponentModel.ReadOnlyAttribute(true)]
1475         public virtual System.Data.DataColumn[] RelatedColumns { get { throw null; } }
1476         [System.ComponentModel.ReadOnlyAttribute(true)]
1477         public virtual System.Data.DataTable RelatedTable { get { throw null; } }
1478         [System.ComponentModel.ReadOnlyAttribute(true)]
1479         public override System.Data.DataTable Table { get { throw null; } }
1480         [System.ComponentModel.DefaultValueAttribute((System.Data.Rule)(1))]
1481         public virtual System.Data.Rule UpdateRule { get { throw null; } set { } }
Equals(object key)1482         public override bool Equals(object key) { throw null; }
GetHashCode()1483         public override int GetHashCode() { throw null; }
1484     }
1485     public partial interface IColumnMapping
1486     {
1487         string DataSetColumn { get; set; }
1488         string SourceColumn { get; set; }
1489     }
1490     public partial interface IColumnMappingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1491     {
1492         object this[string index] { get; set; }
Add(string sourceColumnName, string dataSetColumnName)1493         System.Data.IColumnMapping Add(string sourceColumnName, string dataSetColumnName);
Contains(string sourceColumnName)1494         bool Contains(string sourceColumnName);
GetByDataSetColumn(string dataSetColumnName)1495         System.Data.IColumnMapping GetByDataSetColumn(string dataSetColumnName);
IndexOf(string sourceColumnName)1496         int IndexOf(string sourceColumnName);
RemoveAt(string sourceColumnName)1497         void RemoveAt(string sourceColumnName);
1498     }
1499     public partial interface IDataAdapter
1500     {
1501         System.Data.MissingMappingAction MissingMappingAction { get; set; }
1502         System.Data.MissingSchemaAction MissingSchemaAction { get; set; }
1503         System.Data.ITableMappingCollection TableMappings { get; }
Fill(System.Data.DataSet dataSet)1504         int Fill(System.Data.DataSet dataSet);
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)1505         System.Data.DataTable[] FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType);
GetFillParameters()1506         System.Data.IDataParameter[] GetFillParameters();
Update(System.Data.DataSet dataSet)1507         int Update(System.Data.DataSet dataSet);
1508     }
1509     public partial interface IDataParameter
1510     {
1511         System.Data.DbType DbType { get; set; }
1512         System.Data.ParameterDirection Direction { get; set; }
1513         bool IsNullable { get; }
1514         string ParameterName { get; set; }
1515         string SourceColumn { get; set; }
1516         System.Data.DataRowVersion SourceVersion { get; set; }
1517         object Value { get; set; }
1518     }
1519     public partial interface IDataParameterCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1520     {
1521         object this[string parameterName] { get; set; }
Contains(string parameterName)1522         bool Contains(string parameterName);
IndexOf(string parameterName)1523         int IndexOf(string parameterName);
RemoveAt(string parameterName)1524         void RemoveAt(string parameterName);
1525     }
1526     public partial interface IDataReader : System.Data.IDataRecord, System.IDisposable
1527     {
1528         int Depth { get; }
1529         bool IsClosed { get; }
1530         int RecordsAffected { get; }
Close()1531         void Close();
GetSchemaTable()1532         System.Data.DataTable GetSchemaTable();
NextResult()1533         bool NextResult();
Read()1534         bool Read();
1535     }
1536     public partial interface IDataRecord
1537     {
1538         int FieldCount { get; }
1539         object this[int i] { get; }
1540         object this[string name] { get; }
GetBoolean(int i)1541         bool GetBoolean(int i);
GetByte(int i)1542         byte GetByte(int i);
GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length)1543         long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length);
GetChar(int i)1544         char GetChar(int i);
GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length)1545         long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length);
GetData(int i)1546         System.Data.IDataReader GetData(int i);
GetDataTypeName(int i)1547         string GetDataTypeName(int i);
GetDateTime(int i)1548         System.DateTime GetDateTime(int i);
GetDecimal(int i)1549         decimal GetDecimal(int i);
GetDouble(int i)1550         double GetDouble(int i);
GetFieldType(int i)1551         System.Type GetFieldType(int i);
GetFloat(int i)1552         float GetFloat(int i);
GetGuid(int i)1553         System.Guid GetGuid(int i);
GetInt16(int i)1554         short GetInt16(int i);
GetInt32(int i)1555         int GetInt32(int i);
GetInt64(int i)1556         long GetInt64(int i);
GetName(int i)1557         string GetName(int i);
GetOrdinal(string name)1558         int GetOrdinal(string name);
GetString(int i)1559         string GetString(int i);
GetValue(int i)1560         object GetValue(int i);
GetValues(object[] values)1561         int GetValues(object[] values);
IsDBNull(int i)1562         bool IsDBNull(int i);
1563     }
1564     public partial interface IDbCommand : System.IDisposable
1565     {
1566         string CommandText { get; set; }
1567         int CommandTimeout { get; set; }
1568         System.Data.CommandType CommandType { get; set; }
1569         System.Data.IDbConnection Connection { get; set; }
1570         System.Data.IDataParameterCollection Parameters { get; }
1571         System.Data.IDbTransaction Transaction { get; set; }
1572         System.Data.UpdateRowSource UpdatedRowSource { get; set; }
Cancel()1573         void Cancel();
CreateParameter()1574         System.Data.IDbDataParameter CreateParameter();
ExecuteNonQuery()1575         int ExecuteNonQuery();
ExecuteReader()1576         System.Data.IDataReader ExecuteReader();
ExecuteReader(System.Data.CommandBehavior behavior)1577         System.Data.IDataReader ExecuteReader(System.Data.CommandBehavior behavior);
ExecuteScalar()1578         object ExecuteScalar();
Prepare()1579         void Prepare();
1580     }
1581     public partial interface IDbConnection : System.IDisposable
1582     {
1583         string ConnectionString { get; set; }
1584         int ConnectionTimeout { get; }
1585         string Database { get; }
1586         System.Data.ConnectionState State { get; }
BeginTransaction()1587         System.Data.IDbTransaction BeginTransaction();
BeginTransaction(System.Data.IsolationLevel il)1588         System.Data.IDbTransaction BeginTransaction(System.Data.IsolationLevel il);
ChangeDatabase(string databaseName)1589         void ChangeDatabase(string databaseName);
Close()1590         void Close();
CreateCommand()1591         System.Data.IDbCommand CreateCommand();
Open()1592         void Open();
1593     }
1594     public partial interface IDbDataAdapter : System.Data.IDataAdapter
1595     {
1596         System.Data.IDbCommand DeleteCommand { get; set; }
1597         System.Data.IDbCommand InsertCommand { get; set; }
1598         System.Data.IDbCommand SelectCommand { get; set; }
1599         System.Data.IDbCommand UpdateCommand { get; set; }
1600     }
1601     public partial interface IDbDataParameter : System.Data.IDataParameter
1602     {
1603         byte Precision { get; set; }
1604         byte Scale { get; set; }
1605         int Size { get; set; }
1606     }
1607     public partial interface IDbTransaction : System.IDisposable
1608     {
1609         System.Data.IDbConnection Connection { get; }
1610         System.Data.IsolationLevel IsolationLevel { get; }
Commit()1611         void Commit();
Rollback()1612         void Rollback();
1613     }
1614     [System.SerializableAttribute]
1615     public partial class InRowChangingEventException : System.Data.DataException
1616     {
InRowChangingEventException()1617         public InRowChangingEventException() { }
InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1618         protected InRowChangingEventException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InRowChangingEventException(string s)1619         public InRowChangingEventException(string s) { }
InRowChangingEventException(string message, System.Exception innerException)1620         public InRowChangingEventException(string message, System.Exception innerException) { }
1621     }
1622     public partial class InternalDataCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable
1623     {
InternalDataCollectionBase()1624         public InternalDataCollectionBase() { }
1625         [System.ComponentModel.BrowsableAttribute(false)]
1626         public virtual int Count { get { throw null; } }
1627         [System.ComponentModel.BrowsableAttribute(false)]
1628         public bool IsReadOnly { get { throw null; } }
1629         [System.ComponentModel.BrowsableAttribute(false)]
1630         public bool IsSynchronized { get { throw null; } }
1631         protected virtual System.Collections.ArrayList List { get { throw null; } }
1632         [System.ComponentModel.BrowsableAttribute(false)]
1633         public object SyncRoot { get { throw null; } }
CopyTo(System.Array ar, int index)1634         public virtual void CopyTo(System.Array ar, int index) { }
GetEnumerator()1635         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
1636     }
1637     [System.SerializableAttribute]
1638     public partial class InvalidConstraintException : System.Data.DataException
1639     {
InvalidConstraintException()1640         public InvalidConstraintException() { }
InvalidConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1641         protected InvalidConstraintException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidConstraintException(string s)1642         public InvalidConstraintException(string s) { }
InvalidConstraintException(string message, System.Exception innerException)1643         public InvalidConstraintException(string message, System.Exception innerException) { }
1644     }
1645     [System.SerializableAttribute]
1646     public partial class InvalidExpressionException : System.Data.DataException
1647     {
InvalidExpressionException()1648         public InvalidExpressionException() { }
InvalidExpressionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1649         protected InvalidExpressionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidExpressionException(string s)1650         public InvalidExpressionException(string s) { }
InvalidExpressionException(string message, System.Exception innerException)1651         public InvalidExpressionException(string message, System.Exception innerException) { }
1652     }
1653     public enum IsolationLevel
1654     {
1655         Chaos = 16,
1656         ReadCommitted = 4096,
1657         ReadUncommitted = 256,
1658         RepeatableRead = 65536,
1659         Serializable = 1048576,
1660         Snapshot = 16777216,
1661         Unspecified = -1,
1662     }
1663     public partial interface ITableMapping
1664     {
1665         System.Data.IColumnMappingCollection ColumnMappings { get; }
1666         string DataSetTable { get; set; }
1667         string SourceTable { get; set; }
1668     }
1669     public partial interface ITableMappingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
1670     {
1671         object this[string index] { get; set; }
Add(string sourceTableName, string dataSetTableName)1672         System.Data.ITableMapping Add(string sourceTableName, string dataSetTableName);
Contains(string sourceTableName)1673         bool Contains(string sourceTableName);
GetByDataSetTable(string dataSetTableName)1674         System.Data.ITableMapping GetByDataSetTable(string dataSetTableName);
IndexOf(string sourceTableName)1675         int IndexOf(string sourceTableName);
RemoveAt(string sourceTableName)1676         void RemoveAt(string sourceTableName);
1677     }
1678     [System.SerializableAttribute]
1679     public enum KeyRestrictionBehavior
1680     {
1681         AllowOnly = 0,
1682         PreventUsage = 1,
1683     }
1684     public enum LoadOption
1685     {
1686         OverwriteChanges = 1,
1687         PreserveChanges = 2,
1688         Upsert = 3,
1689     }
1690     [System.SerializableAttribute]
1691     public enum MappingType
1692     {
1693         Attribute = 2,
1694         Element = 1,
1695         Hidden = 4,
1696         SimpleContent = 3,
1697     }
1698     public partial class MergeFailedEventArgs : System.EventArgs
1699     {
MergeFailedEventArgs(System.Data.DataTable table, string conflict)1700         public MergeFailedEventArgs(System.Data.DataTable table, string conflict) { }
1701         public string Conflict { get { throw null; } }
1702         public System.Data.DataTable Table { get { throw null; } }
1703     }
MergeFailedEventHandler(object sender, System.Data.MergeFailedEventArgs e)1704     public delegate void MergeFailedEventHandler(object sender, System.Data.MergeFailedEventArgs e);
1705     public enum MissingMappingAction
1706     {
1707         Error = 3,
1708         Ignore = 2,
1709         Passthrough = 1,
1710     }
1711     [System.SerializableAttribute]
1712     public partial class MissingPrimaryKeyException : System.Data.DataException
1713     {
MissingPrimaryKeyException()1714         public MissingPrimaryKeyException() { }
MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1715         protected MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
MissingPrimaryKeyException(string s)1716         public MissingPrimaryKeyException(string s) { }
MissingPrimaryKeyException(string message, System.Exception innerException)1717         public MissingPrimaryKeyException(string message, System.Exception innerException) { }
1718     }
1719     public enum MissingSchemaAction
1720     {
1721         Add = 1,
1722         AddWithKey = 4,
1723         Error = 3,
1724         Ignore = 2,
1725     }
1726     [System.SerializableAttribute]
1727     public partial class NoNullAllowedException : System.Data.DataException
1728     {
NoNullAllowedException()1729         public NoNullAllowedException() { }
NoNullAllowedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1730         protected NoNullAllowedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
NoNullAllowedException(string s)1731         public NoNullAllowedException(string s) { }
NoNullAllowedException(string message, System.Exception innerException)1732         public NoNullAllowedException(string message, System.Exception innerException) { }
1733     }
1734     [System.SerializableAttribute]
1735     public sealed partial class OperationAbortedException : System.SystemException
1736     {
OperationAbortedException()1737         internal OperationAbortedException() { }
1738     }
1739     public enum ParameterDirection
1740     {
1741         Input = 1,
1742         InputOutput = 3,
1743         Output = 2,
1744         ReturnValue = 6,
1745     }
1746     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1747     [System.FlagsAttribute]
1748     [System.ObsoleteAttribute("PropertyAttributes has been deprecated.  http://go.microsoft.com/fwlink/?linkid=14202")]
1749     public enum PropertyAttributes
1750     {
1751         NotSupported = 0,
1752         Optional = 2,
1753         Read = 512,
1754         Required = 1,
1755         Write = 1024,
1756     }
1757     [System.SerializableAttribute]
1758     public partial class PropertyCollection : System.Collections.Hashtable
1759     {
PropertyCollection()1760         public PropertyCollection() { }
PropertyCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1761         protected PropertyCollection(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
Clone()1762         public override object Clone() { throw null; }
1763     }
1764     [System.SerializableAttribute]
1765     public partial class ReadOnlyException : System.Data.DataException
1766     {
ReadOnlyException()1767         public ReadOnlyException() { }
ReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1768         protected ReadOnlyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ReadOnlyException(string s)1769         public ReadOnlyException(string s) { }
ReadOnlyException(string message, System.Exception innerException)1770         public ReadOnlyException(string message, System.Exception innerException) { }
1771     }
1772     [System.SerializableAttribute]
1773     public partial class RowNotInTableException : System.Data.DataException
1774     {
RowNotInTableException()1775         public RowNotInTableException() { }
RowNotInTableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1776         protected RowNotInTableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
RowNotInTableException(string s)1777         public RowNotInTableException(string s) { }
RowNotInTableException(string message, System.Exception innerException)1778         public RowNotInTableException(string message, System.Exception innerException) { }
1779     }
1780     public enum Rule
1781     {
1782         Cascade = 1,
1783         None = 0,
1784         SetDefault = 3,
1785         SetNull = 2,
1786     }
1787     public enum SchemaSerializationMode
1788     {
1789         ExcludeSchema = 2,
1790         IncludeSchema = 1,
1791     }
1792     public enum SchemaType
1793     {
1794         Mapped = 2,
1795         Source = 1,
1796     }
1797     public enum SerializationFormat
1798     {
1799         Binary = 1,
1800         Xml = 0,
1801     }
1802     public enum SqlDbType
1803     {
1804         BigInt = 0,
1805         Binary = 1,
1806         Bit = 2,
1807         Char = 3,
1808         Date = 31,
1809         DateTime = 4,
1810         DateTime2 = 33,
1811         DateTimeOffset = 34,
1812         Decimal = 5,
1813         Float = 6,
1814         Image = 7,
1815         Int = 8,
1816         Money = 9,
1817         NChar = 10,
1818         NText = 11,
1819         NVarChar = 12,
1820         Real = 13,
1821         SmallDateTime = 15,
1822         SmallInt = 16,
1823         SmallMoney = 17,
1824         Structured = 30,
1825         Text = 18,
1826         Time = 32,
1827         Timestamp = 19,
1828         TinyInt = 20,
1829         Udt = 29,
1830         UniqueIdentifier = 14,
1831         VarBinary = 21,
1832         VarChar = 22,
1833         Variant = 23,
1834         Xml = 25,
1835     }
1836     public sealed partial class StateChangeEventArgs : System.EventArgs
1837     {
StateChangeEventArgs(System.Data.ConnectionState originalState, System.Data.ConnectionState currentState)1838         public StateChangeEventArgs(System.Data.ConnectionState originalState, System.Data.ConnectionState currentState) { }
1839         public System.Data.ConnectionState CurrentState { get { throw null; } }
1840         public System.Data.ConnectionState OriginalState { get { throw null; } }
1841     }
StateChangeEventHandler(object sender, System.Data.StateChangeEventArgs e)1842     public delegate void StateChangeEventHandler(object sender, System.Data.StateChangeEventArgs e);
1843     public sealed partial class StatementCompletedEventArgs : System.EventArgs
1844     {
StatementCompletedEventArgs(int recordCount)1845         public StatementCompletedEventArgs(int recordCount) { }
1846         public int RecordCount { get { throw null; } }
1847     }
StatementCompletedEventHandler(object sender, System.Data.StatementCompletedEventArgs e)1848     public delegate void StatementCompletedEventHandler(object sender, System.Data.StatementCompletedEventArgs e);
1849     public enum StatementType
1850     {
1851         Batch = 4,
1852         Delete = 3,
1853         Insert = 1,
1854         Select = 0,
1855         Update = 2,
1856     }
1857     [System.SerializableAttribute]
1858     public partial class StrongTypingException : System.Data.DataException
1859     {
StrongTypingException()1860         public StrongTypingException() { }
StrongTypingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1861         protected StrongTypingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
StrongTypingException(string message)1862         public StrongTypingException(string message) { }
StrongTypingException(string s, System.Exception innerException)1863         public StrongTypingException(string s, System.Exception innerException) { }
1864     }
1865     [System.SerializableAttribute]
1866     public partial class SyntaxErrorException : System.Data.InvalidExpressionException
1867     {
SyntaxErrorException()1868         public SyntaxErrorException() { }
SyntaxErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1869         protected SyntaxErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SyntaxErrorException(string s)1870         public SyntaxErrorException(string s) { }
SyntaxErrorException(string message, System.Exception innerException)1871         public SyntaxErrorException(string message, System.Exception innerException) { }
1872     }
1873     [System.ObsoleteAttribute("TypedDataSetGenerator class will be removed in a future release. Please use System.Data.Design.TypedDataSetGenerator in System.Design.dll.")]
1874     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SharedState=true, Synchronization=true)]
1875     public partial class TypedDataSetGenerator
1876     {
TypedDataSetGenerator()1877         public TypedDataSetGenerator() { }
Generate(System.Data.DataSet dataSet, System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.Compiler.ICodeGenerator codeGen)1878         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)1879         public static string GenerateIdName(string name, System.CodeDom.Compiler.ICodeGenerator codeGen) { throw null; }
1880     }
1881     [System.SerializableAttribute]
1882     public partial class TypedDataSetGeneratorException : System.Data.DataException
1883     {
TypedDataSetGeneratorException()1884         public TypedDataSetGeneratorException() { }
TypedDataSetGeneratorException(System.Collections.ArrayList list)1885         public TypedDataSetGeneratorException(System.Collections.ArrayList list) { }
TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1886         protected TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
TypedDataSetGeneratorException(string message)1887         public TypedDataSetGeneratorException(string message) { }
TypedDataSetGeneratorException(string message, System.Exception innerException)1888         public TypedDataSetGeneratorException(string message, System.Exception innerException) { }
1889         public System.Collections.ArrayList ErrorList { get { throw null; } }
1890         [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)1891         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1892     }
1893     [System.ComponentModel.DefaultPropertyAttribute("ConstraintName")]
1894     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.UniqueConstraintEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
1895     public partial class UniqueConstraint : System.Data.Constraint
1896     {
UniqueConstraint(System.Data.DataColumn column)1897         public UniqueConstraint(System.Data.DataColumn column) { }
UniqueConstraint(System.Data.DataColumn column, bool isPrimaryKey)1898         public UniqueConstraint(System.Data.DataColumn column, bool isPrimaryKey) { }
UniqueConstraint(System.Data.DataColumn[] columns)1899         public UniqueConstraint(System.Data.DataColumn[] columns) { }
UniqueConstraint(System.Data.DataColumn[] columns, bool isPrimaryKey)1900         public UniqueConstraint(System.Data.DataColumn[] columns, bool isPrimaryKey) { }
UniqueConstraint(string name, System.Data.DataColumn column)1901         public UniqueConstraint(string name, System.Data.DataColumn column) { }
UniqueConstraint(string name, System.Data.DataColumn column, bool isPrimaryKey)1902         public UniqueConstraint(string name, System.Data.DataColumn column, bool isPrimaryKey) { }
UniqueConstraint(string name, System.Data.DataColumn[] columns)1903         public UniqueConstraint(string name, System.Data.DataColumn[] columns) { }
UniqueConstraint(string name, System.Data.DataColumn[] columns, bool isPrimaryKey)1904         public UniqueConstraint(string name, System.Data.DataColumn[] columns, bool isPrimaryKey) { }
1905         [System.ComponentModel.BrowsableAttribute(false)]
UniqueConstraint(string name, string[] columnNames, bool isPrimaryKey)1906         public UniqueConstraint(string name, string[] columnNames, bool isPrimaryKey) { }
1907         [System.ComponentModel.ReadOnlyAttribute(true)]
1908         public virtual System.Data.DataColumn[] Columns { get { throw null; } }
1909         public bool IsPrimaryKey { get { throw null; } }
1910         [System.ComponentModel.ReadOnlyAttribute(true)]
1911         public override System.Data.DataTable Table { get { throw null; } }
Equals(object key2)1912         public override bool Equals(object key2) { throw null; }
GetHashCode()1913         public override int GetHashCode() { throw null; }
1914     }
1915     public enum UpdateRowSource
1916     {
1917         Both = 3,
1918         FirstReturnedRecord = 2,
1919         None = 0,
1920         OutputParameters = 1,
1921     }
1922     public enum UpdateStatus
1923     {
1924         Continue = 0,
1925         ErrorsOccurred = 1,
1926         SkipAllRemainingRows = 3,
1927         SkipCurrentRow = 2,
1928     }
1929     [System.SerializableAttribute]
1930     public partial class VersionNotFoundException : System.Data.DataException
1931     {
VersionNotFoundException()1932         public VersionNotFoundException() { }
VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1933         protected VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
VersionNotFoundException(string s)1934         public VersionNotFoundException(string s) { }
VersionNotFoundException(string message, System.Exception innerException)1935         public VersionNotFoundException(string message, System.Exception innerException) { }
1936     }
1937     public enum XmlReadMode
1938     {
1939         Auto = 0,
1940         DiffGram = 4,
1941         Fragment = 5,
1942         IgnoreSchema = 2,
1943         InferSchema = 3,
1944         InferTypedSchema = 6,
1945         ReadSchema = 1,
1946     }
1947     public enum XmlWriteMode
1948     {
1949         DiffGram = 2,
1950         IgnoreSchema = 1,
1951         WriteSchema = 0,
1952     }
1953 }
1954 namespace System.Data.Common
1955 {
1956     public enum CatalogLocation
1957     {
1958         End = 2,
1959         Start = 1,
1960     }
1961     public partial class DataAdapter : System.ComponentModel.Component, System.Data.IDataAdapter
1962     {
DataAdapter()1963         protected DataAdapter() { }
DataAdapter(System.Data.Common.DataAdapter from)1964         protected DataAdapter(System.Data.Common.DataAdapter from) { }
1965         [System.ComponentModel.DefaultValueAttribute(true)]
1966         public bool AcceptChangesDuringFill { get { throw null; } set { } }
1967         [System.ComponentModel.DefaultValueAttribute(true)]
1968         public bool AcceptChangesDuringUpdate { get { throw null; } set { } }
1969         [System.ComponentModel.DefaultValueAttribute(false)]
1970         public bool ContinueUpdateOnError { get { throw null; } set { } }
1971         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
1972         public System.Data.LoadOption FillLoadOption { get { throw null; } set { } }
1973         [System.ComponentModel.DefaultValueAttribute((System.Data.MissingMappingAction)(1))]
1974         public System.Data.MissingMappingAction MissingMappingAction { get { throw null; } set { } }
1975         [System.ComponentModel.DefaultValueAttribute((System.Data.MissingSchemaAction)(1))]
1976         public System.Data.MissingSchemaAction MissingSchemaAction { get { throw null; } set { } }
1977         [System.ComponentModel.DefaultValueAttribute(false)]
1978         public virtual bool ReturnProviderSpecificTypes { get { throw null; } set { } }
1979         System.Data.ITableMappingCollection System.Data.IDataAdapter.TableMappings { get { throw null; } }
1980         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
1981         public System.Data.Common.DataTableMappingCollection TableMappings { get { throw null; } }
1982         public event System.Data.FillErrorEventHandler FillError { add { } remove { } }
1983         [System.ObsoleteAttribute("CloneInternals() has been deprecated.  Use the DataAdapter(DataAdapter from) constructor.  http://go.microsoft.com/fwlink/?linkid=14202")]
1984         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
CloneInternals()1985         protected virtual System.Data.Common.DataAdapter CloneInternals() { throw null; }
CreateTableMappings()1986         protected virtual System.Data.Common.DataTableMappingCollection CreateTableMappings() { throw null; }
Dispose(bool disposing)1987         protected override void Dispose(bool disposing) { }
Fill(System.Data.DataSet dataSet)1988         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)1989         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)1990         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)1991         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)1992         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)1993         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)1994         protected virtual System.Data.DataTable FillSchema(System.Data.DataTable dataTable, System.Data.SchemaType schemaType, System.Data.IDataReader dataReader) { throw null; }
1995         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetFillParameters()1996         public virtual System.Data.IDataParameter[] GetFillParameters() { throw null; }
HasTableMappings()1997         protected bool HasTableMappings() { throw null; }
OnFillError(System.Data.FillErrorEventArgs value)1998         protected virtual void OnFillError(System.Data.FillErrorEventArgs value) { }
1999         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ResetFillLoadOption()2000         public void ResetFillLoadOption() { }
2001         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeAcceptChangesDuringFill()2002         public virtual bool ShouldSerializeAcceptChangesDuringFill() { throw null; }
2003         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeFillLoadOption()2004         public virtual bool ShouldSerializeFillLoadOption() { throw null; }
ShouldSerializeTableMappings()2005         protected virtual bool ShouldSerializeTableMappings() { throw null; }
Update(System.Data.DataSet dataSet)2006         public virtual int Update(System.Data.DataSet dataSet) { throw null; }
2007     }
2008     [System.ComponentModel.TypeConverterAttribute("System.Data.Common.DataColumnMapping.DataColumnMappingConverter")]
2009     public sealed partial class DataColumnMapping : System.MarshalByRefObject, System.Data.IColumnMapping, System.ICloneable
2010     {
DataColumnMapping()2011         public DataColumnMapping() { }
DataColumnMapping(string sourceColumn, string dataSetColumn)2012         public DataColumnMapping(string sourceColumn, string dataSetColumn) { }
2013         [System.ComponentModel.DefaultValueAttribute("")]
2014         public string DataSetColumn { get { throw null; } set { } }
2015         [System.ComponentModel.DefaultValueAttribute("")]
2016         public string SourceColumn { get { throw null; } set { } }
2017         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumnBySchemaAction(System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction)2018         public System.Data.DataColumn GetDataColumnBySchemaAction(System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction) { throw null; }
2019         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataColumnBySchemaAction(string sourceColumn, string dataSetColumn, System.Data.DataTable dataTable, System.Type dataType, System.Data.MissingSchemaAction schemaAction)2020         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()2021         object System.ICloneable.Clone() { throw null; }
ToString()2022         public override string ToString() { throw null; }
2023     }
2024     public sealed partial class DataColumnMappingCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IColumnMappingCollection
2025     {
DataColumnMappingCollection()2026         public DataColumnMappingCollection() { }
2027         [System.ComponentModel.BrowsableAttribute(false)]
2028         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2029         public int Count { get { throw null; } }
2030         [System.ComponentModel.BrowsableAttribute(false)]
2031         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2032         public System.Data.Common.DataColumnMapping this[int index] { get { throw null; } set { } }
2033         [System.ComponentModel.BrowsableAttribute(false)]
2034         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2035         public System.Data.Common.DataColumnMapping this[string sourceColumn] { get { throw null; } set { } }
2036         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2037         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2038         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2039         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2040         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2041         object System.Data.IColumnMappingCollection.this[string index] { get { throw null; } set { } }
Add(object value)2042         public int Add(object value) { throw null; }
Add(string sourceColumn, string dataSetColumn)2043         public System.Data.Common.DataColumnMapping Add(string sourceColumn, string dataSetColumn) { throw null; }
AddRange(System.Array values)2044         public void AddRange(System.Array values) { }
AddRange(System.Data.Common.DataColumnMapping[] values)2045         public void AddRange(System.Data.Common.DataColumnMapping[] values) { }
Clear()2046         public void Clear() { }
Contains(object value)2047         public bool Contains(object value) { throw null; }
Contains(string value)2048         public bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)2049         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Common.DataColumnMapping[] array, int index)2050         public void CopyTo(System.Data.Common.DataColumnMapping[] array, int index) { }
GetByDataSetColumn(string value)2051         public System.Data.Common.DataColumnMapping GetByDataSetColumn(string value) { throw null; }
2052         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Data.MissingMappingAction mappingAction)2053         public static System.Data.Common.DataColumnMapping GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection columnMappings, string sourceColumn, System.Data.MissingMappingAction mappingAction) { throw null; }
2054         [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)2055         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()2056         public System.Collections.IEnumerator GetEnumerator() { throw null; }
IndexOf(object value)2057         public int IndexOf(object value) { throw null; }
IndexOf(string sourceColumn)2058         public int IndexOf(string sourceColumn) { throw null; }
IndexOfDataSetColumn(string dataSetColumn)2059         public int IndexOfDataSetColumn(string dataSetColumn) { throw null; }
Insert(int index, System.Data.Common.DataColumnMapping value)2060         public void Insert(int index, System.Data.Common.DataColumnMapping value) { }
Insert(int index, object value)2061         public void Insert(int index, object value) { }
Remove(System.Data.Common.DataColumnMapping value)2062         public void Remove(System.Data.Common.DataColumnMapping value) { }
Remove(object value)2063         public void Remove(object value) { }
RemoveAt(int index)2064         public void RemoveAt(int index) { }
RemoveAt(string sourceColumn)2065         public void RemoveAt(string sourceColumn) { }
System.Data.IColumnMappingCollection.Add(string sourceColumnName, string dataSetColumnName)2066         System.Data.IColumnMapping System.Data.IColumnMappingCollection.Add(string sourceColumnName, string dataSetColumnName) { throw null; }
System.Data.IColumnMappingCollection.GetByDataSetColumn(string dataSetColumnName)2067         System.Data.IColumnMapping System.Data.IColumnMappingCollection.GetByDataSetColumn(string dataSetColumnName) { throw null; }
2068     }
2069     [System.ComponentModel.TypeConverterAttribute("System.Data.Common.DataTableMapping.DataTableMappingConverter")]
2070     public sealed partial class DataTableMapping : System.MarshalByRefObject, System.Data.ITableMapping, System.ICloneable
2071     {
DataTableMapping()2072         public DataTableMapping() { }
DataTableMapping(string sourceTable, string dataSetTable)2073         public DataTableMapping(string sourceTable, string dataSetTable) { }
DataTableMapping(string sourceTable, string dataSetTable, System.Data.Common.DataColumnMapping[] columnMappings)2074         public DataTableMapping(string sourceTable, string dataSetTable, System.Data.Common.DataColumnMapping[] columnMappings) { }
2075         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
2076         public System.Data.Common.DataColumnMappingCollection ColumnMappings { get { throw null; } }
2077         [System.ComponentModel.DefaultValueAttribute("")]
2078         public string DataSetTable { get { throw null; } set { } }
2079         [System.ComponentModel.DefaultValueAttribute("")]
2080         public string SourceTable { get { throw null; } set { } }
2081         System.Data.IColumnMappingCollection System.Data.ITableMapping.ColumnMappings { get { throw null; } }
2082         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetColumnMappingBySchemaAction(string sourceColumn, System.Data.MissingMappingAction mappingAction)2083         public System.Data.Common.DataColumnMapping GetColumnMappingBySchemaAction(string sourceColumn, System.Data.MissingMappingAction mappingAction) { throw null; }
2084         [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)2085         public System.Data.DataColumn GetDataColumn(string sourceColumn, System.Type dataType, System.Data.DataTable dataTable, System.Data.MissingMappingAction mappingAction, System.Data.MissingSchemaAction schemaAction) { throw null; }
2086         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataTableBySchemaAction(System.Data.DataSet dataSet, System.Data.MissingSchemaAction schemaAction)2087         public System.Data.DataTable GetDataTableBySchemaAction(System.Data.DataSet dataSet, System.Data.MissingSchemaAction schemaAction) { throw null; }
System.ICloneable.Clone()2088         object System.ICloneable.Clone() { throw null; }
ToString()2089         public override string ToString() { throw null; }
2090     }
2091     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DataTableMappingCollectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2092     [System.ComponentModel.ListBindableAttribute(false)]
2093     public sealed partial class DataTableMappingCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.ITableMappingCollection
2094     {
DataTableMappingCollection()2095         public DataTableMappingCollection() { }
2096         [System.ComponentModel.BrowsableAttribute(false)]
2097         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2098         public int Count { get { throw null; } }
2099         [System.ComponentModel.BrowsableAttribute(false)]
2100         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2101         public System.Data.Common.DataTableMapping this[int index] { get { throw null; } set { } }
2102         [System.ComponentModel.BrowsableAttribute(false)]
2103         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2104         public System.Data.Common.DataTableMapping this[string sourceTable] { get { throw null; } set { } }
2105         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2106         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2107         bool System.Collections.IList.IsFixedSize { get { throw null; } }
2108         bool System.Collections.IList.IsReadOnly { get { throw null; } }
2109         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2110         object System.Data.ITableMappingCollection.this[string index] { get { throw null; } set { } }
Add(object value)2111         public int Add(object value) { throw null; }
Add(string sourceTable, string dataSetTable)2112         public System.Data.Common.DataTableMapping Add(string sourceTable, string dataSetTable) { throw null; }
AddRange(System.Array values)2113         public void AddRange(System.Array values) { }
AddRange(System.Data.Common.DataTableMapping[] values)2114         public void AddRange(System.Data.Common.DataTableMapping[] values) { }
Clear()2115         public void Clear() { }
Contains(object value)2116         public bool Contains(object value) { throw null; }
Contains(string value)2117         public bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)2118         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Common.DataTableMapping[] array, int index)2119         public void CopyTo(System.Data.Common.DataTableMapping[] array, int index) { }
GetByDataSetTable(string dataSetTable)2120         public System.Data.Common.DataTableMapping GetByDataSetTable(string dataSetTable) { throw null; }
GetEnumerator()2121         public System.Collections.IEnumerator GetEnumerator() { throw null; }
2122         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection tableMappings, string sourceTable, string dataSetTable, System.Data.MissingMappingAction mappingAction)2123         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)2124         public int IndexOf(object value) { throw null; }
IndexOf(string sourceTable)2125         public int IndexOf(string sourceTable) { throw null; }
IndexOfDataSetTable(string dataSetTable)2126         public int IndexOfDataSetTable(string dataSetTable) { throw null; }
Insert(int index, System.Data.Common.DataTableMapping value)2127         public void Insert(int index, System.Data.Common.DataTableMapping value) { }
Insert(int index, object value)2128         public void Insert(int index, object value) { }
Remove(System.Data.Common.DataTableMapping value)2129         public void Remove(System.Data.Common.DataTableMapping value) { }
Remove(object value)2130         public void Remove(object value) { }
RemoveAt(int index)2131         public void RemoveAt(int index) { }
RemoveAt(string sourceTable)2132         public void RemoveAt(string sourceTable) { }
System.Data.ITableMappingCollection.Add(string sourceTableName, string dataSetTableName)2133         System.Data.ITableMapping System.Data.ITableMappingCollection.Add(string sourceTableName, string dataSetTableName) { throw null; }
System.Data.ITableMappingCollection.GetByDataSetTable(string dataSetTableName)2134         System.Data.ITableMapping System.Data.ITableMappingCollection.GetByDataSetTable(string dataSetTableName) { throw null; }
2135     }
2136     public abstract partial class DbColumn
2137     {
DbColumn()2138         protected DbColumn() { }
2139         public System.Nullable<bool> AllowDBNull { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2140         public string BaseCatalogName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2141         public string BaseColumnName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2142         public string BaseSchemaName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2143         public string BaseServerName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2144         public string BaseTableName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2145         public string ColumnName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2146         public System.Nullable<int> ColumnOrdinal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2147         public System.Nullable<int> ColumnSize { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2148         public System.Type DataType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2149         public string DataTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2150         public System.Nullable<bool> IsAliased { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2151         public System.Nullable<bool> IsAutoIncrement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2152         public System.Nullable<bool> IsExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2153         public System.Nullable<bool> IsHidden { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2154         public System.Nullable<bool> IsIdentity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2155         public System.Nullable<bool> IsKey { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2156         public System.Nullable<bool> IsLong { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2157         public System.Nullable<bool> IsReadOnly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2158         public System.Nullable<bool> IsUnique { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2159         public virtual object this[string property] { get { throw null; } }
2160         public System.Nullable<int> NumericPrecision { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2161         public System.Nullable<int> NumericScale { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2162         public string UdtAssemblyQualifiedName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
2163     }
2164     public abstract partial class DbCommand : System.ComponentModel.Component, System.Data.IDbCommand, System.IDisposable
2165     {
DbCommand()2166         protected DbCommand() { }
2167         [System.ComponentModel.DefaultValueAttribute("")]
2168         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2169         public abstract string CommandText { get; set; }
2170         public abstract int CommandTimeout { get; set; }
2171         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
2172         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2173         public abstract System.Data.CommandType CommandType { get; set; }
2174         [System.ComponentModel.BrowsableAttribute(false)]
2175         [System.ComponentModel.DefaultValueAttribute(null)]
2176         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2177         public System.Data.Common.DbConnection Connection { get { throw null; } set { } }
2178         protected abstract System.Data.Common.DbConnection DbConnection { get; set; }
2179         protected abstract System.Data.Common.DbParameterCollection DbParameterCollection { get; }
2180         protected abstract System.Data.Common.DbTransaction DbTransaction { get; set; }
2181         [System.ComponentModel.BrowsableAttribute(false)]
2182         [System.ComponentModel.DefaultValueAttribute(true)]
2183         [System.ComponentModel.DesignOnlyAttribute(true)]
2184         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2185         public abstract bool DesignTimeVisible { get; set; }
2186         [System.ComponentModel.BrowsableAttribute(false)]
2187         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2188         public System.Data.Common.DbParameterCollection Parameters { get { throw null; } }
2189         System.Data.IDbConnection System.Data.IDbCommand.Connection { get { throw null; } set { } }
2190         System.Data.IDataParameterCollection System.Data.IDbCommand.Parameters { get { throw null; } }
2191         System.Data.IDbTransaction System.Data.IDbCommand.Transaction { get { throw null; } set { } }
2192         [System.ComponentModel.BrowsableAttribute(false)]
2193         [System.ComponentModel.DefaultValueAttribute(null)]
2194         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2195         public System.Data.Common.DbTransaction Transaction { get { throw null; } set { } }
2196         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
2197         public abstract System.Data.UpdateRowSource UpdatedRowSource { get; set; }
Cancel()2198         public abstract void Cancel();
CreateDbParameter()2199         protected abstract System.Data.Common.DbParameter CreateDbParameter();
CreateParameter()2200         public System.Data.Common.DbParameter CreateParameter() { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2201         protected abstract System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior);
ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)2202         protected virtual System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteNonQuery()2203         public abstract int ExecuteNonQuery();
ExecuteNonQueryAsync()2204         public System.Threading.Tasks.Task<int> ExecuteNonQueryAsync() { throw null; }
ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken)2205         public virtual System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReader()2206         public System.Data.Common.DbDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2207         public System.Data.Common.DbDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync()2208         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync() { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior)2209         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)2210         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)2211         public System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteScalar()2212         public abstract object ExecuteScalar();
ExecuteScalarAsync()2213         public System.Threading.Tasks.Task<object> ExecuteScalarAsync() { throw null; }
ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken)2214         public virtual System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Prepare()2215         public abstract void Prepare();
System.Data.IDbCommand.CreateParameter()2216         System.Data.IDbDataParameter System.Data.IDbCommand.CreateParameter() { throw null; }
System.Data.IDbCommand.ExecuteReader()2217         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader() { throw null; }
System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior)2218         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
2219     }
2220     public abstract partial class DbCommandBuilder : System.ComponentModel.Component
2221     {
DbCommandBuilder()2222         protected DbCommandBuilder() { }
2223         [System.ComponentModel.DefaultValueAttribute((System.Data.Common.CatalogLocation)(1))]
2224         public virtual System.Data.Common.CatalogLocation CatalogLocation { get { throw null; } set { } }
2225         [System.ComponentModel.DefaultValueAttribute(".")]
2226         public virtual string CatalogSeparator { get { throw null; } set { } }
2227         [System.ComponentModel.DefaultValueAttribute((System.Data.ConflictOption)(1))]
2228         public virtual System.Data.ConflictOption ConflictOption { get { throw null; } set { } }
2229         [System.ComponentModel.BrowsableAttribute(false)]
2230         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2231         public System.Data.Common.DbDataAdapter DataAdapter { get { throw null; } set { } }
2232         [System.ComponentModel.DefaultValueAttribute("")]
2233         public virtual string QuotePrefix { get { throw null; } set { } }
2234         [System.ComponentModel.DefaultValueAttribute("")]
2235         public virtual string QuoteSuffix { get { throw null; } set { } }
2236         [System.ComponentModel.DefaultValueAttribute(".")]
2237         public virtual string SchemaSeparator { get { throw null; } set { } }
2238         [System.ComponentModel.DefaultValueAttribute(false)]
2239         public bool SetAllValues { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow row, System.Data.StatementType statementType, bool whereClause)2240         protected abstract void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow row, System.Data.StatementType statementType, bool whereClause);
Dispose(bool disposing)2241         protected override void Dispose(bool disposing) { }
GetDeleteCommand()2242         public System.Data.Common.DbCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)2243         public System.Data.Common.DbCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()2244         public System.Data.Common.DbCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)2245         public System.Data.Common.DbCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)2246         protected abstract string GetParameterName(int parameterOrdinal);
GetParameterName(string parameterName)2247         protected abstract string GetParameterName(string parameterName);
GetParameterPlaceholder(int parameterOrdinal)2248         protected abstract string GetParameterPlaceholder(int parameterOrdinal);
GetSchemaTable(System.Data.Common.DbCommand sourceCommand)2249         protected virtual System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand sourceCommand) { throw null; }
GetUpdateCommand()2250         public System.Data.Common.DbCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)2251         public System.Data.Common.DbCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
InitializeCommand(System.Data.Common.DbCommand command)2252         protected virtual System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw null; }
QuoteIdentifier(string unquotedIdentifier)2253         public virtual string QuoteIdentifier(string unquotedIdentifier) { throw null; }
RefreshSchema()2254         public virtual void RefreshSchema() { }
RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs rowUpdatingEvent)2255         protected void RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs rowUpdatingEvent) { }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)2256         protected abstract void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter);
UnquoteIdentifier(string quotedIdentifier)2257         public virtual string UnquoteIdentifier(string quotedIdentifier) { throw null; }
2258     }
2259     public abstract partial class DbConnection : System.ComponentModel.Component, System.Data.IDbConnection, System.IDisposable
2260     {
DbConnection()2261         protected DbConnection() { }
2262         [System.ComponentModel.DefaultValueAttribute("")]
2263         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
2264         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2265         [System.ComponentModel.SettingsBindableAttribute(true)]
2266         public abstract string ConnectionString { get; set; }
2267         public virtual int ConnectionTimeout { get { throw null; } }
2268         public abstract string Database { get; }
2269         public abstract string DataSource { get; }
2270         protected virtual System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
2271         [System.ComponentModel.BrowsableAttribute(false)]
2272         public abstract string ServerVersion { get; }
2273         [System.ComponentModel.BrowsableAttribute(false)]
2274         public abstract System.Data.ConnectionState State { get; }
2275         public virtual event System.Data.StateChangeEventHandler StateChange { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2276         protected abstract System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel);
BeginTransaction()2277         public System.Data.Common.DbTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)2278         public System.Data.Common.DbTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string databaseName)2279         public abstract void ChangeDatabase(string databaseName);
Close()2280         public abstract void Close();
CreateCommand()2281         public System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateDbCommand()2282         protected abstract System.Data.Common.DbCommand CreateDbCommand();
EnlistTransaction(System.Transactions.Transaction transaction)2283         public virtual void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()2284         public virtual System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)2285         public virtual System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)2286         public virtual System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
OnStateChange(System.Data.StateChangeEventArgs stateChange)2287         protected virtual void OnStateChange(System.Data.StateChangeEventArgs stateChange) { }
Open()2288         public abstract void Open();
OpenAsync()2289         public System.Threading.Tasks.Task OpenAsync() { throw null; }
OpenAsync(System.Threading.CancellationToken cancellationToken)2290         public virtual System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDbConnection.BeginTransaction()2291         System.Data.IDbTransaction System.Data.IDbConnection.BeginTransaction() { throw null; }
System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel isolationLevel)2292         System.Data.IDbTransaction System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
System.Data.IDbConnection.CreateCommand()2293         System.Data.IDbCommand System.Data.IDbConnection.CreateCommand() { throw null; }
2294     }
2295     public partial class DbConnectionStringBuilder : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.ComponentModel.ICustomTypeDescriptor
2296     {
DbConnectionStringBuilder()2297         public DbConnectionStringBuilder() { }
DbConnectionStringBuilder(bool useOdbcRules)2298         public DbConnectionStringBuilder(bool useOdbcRules) { }
2299         [System.ComponentModel.BrowsableAttribute(false)]
2300         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2301         [System.ComponentModel.DesignOnlyAttribute(true)]
2302         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2303         public bool BrowsableConnectionString { get { throw null; } set { } }
2304         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2305         public string ConnectionString { get { throw null; } set { } }
2306         [System.ComponentModel.BrowsableAttribute(false)]
2307         public virtual int Count { get { throw null; } }
2308         [System.ComponentModel.BrowsableAttribute(false)]
2309         public virtual bool IsFixedSize { get { throw null; } }
2310         [System.ComponentModel.BrowsableAttribute(false)]
2311         public bool IsReadOnly { get { throw null; } }
2312         [System.ComponentModel.BrowsableAttribute(false)]
2313         public virtual object this[string keyword] { get { throw null; } set { } }
2314         [System.ComponentModel.BrowsableAttribute(false)]
2315         public virtual System.Collections.ICollection Keys { get { throw null; } }
2316         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
2317         object System.Collections.ICollection.SyncRoot { get { throw null; } }
2318         object System.Collections.IDictionary.this[object keyword] { get { throw null; } set { } }
2319         [System.ComponentModel.BrowsableAttribute(false)]
2320         public virtual System.Collections.ICollection Values { get { throw null; } }
Add(string keyword, object value)2321         public void Add(string keyword, object value) { }
AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value)2322         public static void AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value) { }
AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules)2323         public static void AppendKeyValuePair(System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules) { }
Clear()2324         public virtual void Clear() { }
ClearPropertyDescriptors()2325         protected internal void ClearPropertyDescriptors() { }
ContainsKey(string keyword)2326         public virtual bool ContainsKey(string keyword) { throw null; }
EquivalentTo(System.Data.Common.DbConnectionStringBuilder connectionStringBuilder)2327         public virtual bool EquivalentTo(System.Data.Common.DbConnectionStringBuilder connectionStringBuilder) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)2328         protected virtual void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)2329         public virtual bool Remove(string keyword) { throw null; }
ShouldSerialize(string keyword)2330         public virtual bool ShouldSerialize(string keyword) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)2331         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IDictionary.Add(object keyword, object value)2332         void System.Collections.IDictionary.Add(object keyword, object value) { }
System.Collections.IDictionary.Contains(object keyword)2333         bool System.Collections.IDictionary.Contains(object keyword) { throw null; }
System.Collections.IDictionary.GetEnumerator()2334         System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; }
System.Collections.IDictionary.Remove(object keyword)2335         void System.Collections.IDictionary.Remove(object keyword) { }
System.Collections.IEnumerable.GetEnumerator()2336         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()2337         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()2338         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()2339         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()2340         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()2341         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()2342         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)2343         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()2344         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)2345         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()2346         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)2347         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2348         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
ToString()2349         public override string ToString() { throw null; }
TryGetValue(string keyword, out object value)2350         public virtual bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2351     }
2352     public abstract partial class DbDataAdapter : System.Data.Common.DataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
2353     {
2354         public const string DefaultSourceTableName = "Table";
DbDataAdapter()2355         protected DbDataAdapter() { }
DbDataAdapter(System.Data.Common.DbDataAdapter adapter)2356         protected DbDataAdapter(System.Data.Common.DbDataAdapter adapter) { }
2357         [System.ComponentModel.BrowsableAttribute(false)]
2358         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2359         public System.Data.Common.DbCommand DeleteCommand { get { throw null; } set { } }
2360         protected internal System.Data.CommandBehavior FillCommandBehavior { get { throw null; } set { } }
2361         [System.ComponentModel.BrowsableAttribute(false)]
2362         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2363         public System.Data.Common.DbCommand InsertCommand { get { throw null; } set { } }
2364         [System.ComponentModel.BrowsableAttribute(false)]
2365         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2366         public System.Data.Common.DbCommand SelectCommand { get { throw null; } set { } }
2367         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
2368         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
2369         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
2370         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
2371         [System.ComponentModel.DefaultValueAttribute(1)]
2372         public virtual int UpdateBatchSize { get { throw null; } set { } }
2373         [System.ComponentModel.BrowsableAttribute(false)]
2374         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2375         public System.Data.Common.DbCommand UpdateCommand { get { throw null; } set { } }
AddToBatch(System.Data.IDbCommand command)2376         protected virtual int AddToBatch(System.Data.IDbCommand command) { throw null; }
ClearBatch()2377         protected virtual void ClearBatch() { }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2378         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)2379         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)2380         protected override void Dispose(bool disposing) { }
ExecuteBatch()2381         protected virtual int ExecuteBatch() { throw null; }
Fill(System.Data.DataSet dataSet)2382         public override int Fill(System.Data.DataSet dataSet) { throw null; }
Fill(System.Data.DataSet dataSet, int startRecord, int maxRecords, string srcTable)2383         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)2384         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)2385         public int Fill(System.Data.DataSet dataSet, string srcTable) { throw null; }
Fill(System.Data.DataTable dataTable)2386         public int Fill(System.Data.DataTable dataTable) { throw null; }
Fill(System.Data.DataTable dataTable, System.Data.IDbCommand command, System.Data.CommandBehavior behavior)2387         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)2388         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)2389         public int Fill(int startRecord, int maxRecords, params System.Data.DataTable[] dataTables) { throw null; }
FillSchema(System.Data.DataSet dataSet, System.Data.SchemaType schemaType)2390         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)2391         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)2392         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)2393         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)2394         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)2395         protected virtual System.Data.IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex) { throw null; }
GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error)2396         protected virtual bool GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error) { recordsAffected = default(int); error = default(System.Exception); throw null; }
2397         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetFillParameters()2398         public override System.Data.IDataParameter[] GetFillParameters() { throw null; }
InitializeBatching()2399         protected virtual void InitializeBatching() { }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)2400         protected virtual void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)2401         protected virtual void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()2402         object System.ICloneable.Clone() { throw null; }
TerminateBatching()2403         protected virtual void TerminateBatching() { }
Update(System.Data.DataRow[] dataRows)2404         public int Update(System.Data.DataRow[] dataRows) { throw null; }
Update(System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping)2405         protected virtual int Update(System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping) { throw null; }
Update(System.Data.DataSet dataSet)2406         public override int Update(System.Data.DataSet dataSet) { throw null; }
Update(System.Data.DataSet dataSet, string srcTable)2407         public int Update(System.Data.DataSet dataSet, string srcTable) { throw null; }
Update(System.Data.DataTable dataTable)2408         public int Update(System.Data.DataTable dataTable) { throw null; }
2409     }
2410     [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, ControlEvidence=true, ControlPolicy=true)]
2411     [System.SerializableAttribute]
2412     public abstract partial class DBDataPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
2413     {
2414         [System.ObsoleteAttribute("DBDataPermission() has been deprecated.  Use the DBDataPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
DBDataPermission()2415         protected DBDataPermission() { }
DBDataPermission(System.Data.Common.DBDataPermission permission)2416         protected DBDataPermission(System.Data.Common.DBDataPermission permission) { }
DBDataPermission(System.Data.Common.DBDataPermissionAttribute permissionAttribute)2417         protected DBDataPermission(System.Data.Common.DBDataPermissionAttribute permissionAttribute) { }
DBDataPermission(System.Security.Permissions.PermissionState state)2418         protected DBDataPermission(System.Security.Permissions.PermissionState state) { }
2419         [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)2420         protected DBDataPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) { }
2421         public bool AllowBlankPassword { get { throw null; } set { } }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)2422         public virtual void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Clear()2423         protected void Clear() { }
Copy()2424         public override System.Security.IPermission Copy() { throw null; }
2425         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
CreateInstance()2426         protected virtual System.Data.Common.DBDataPermission CreateInstance() { throw null; }
FromXml(System.Security.SecurityElement securityElement)2427         public override void FromXml(System.Security.SecurityElement securityElement) { }
Intersect(System.Security.IPermission target)2428         public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
IsSubsetOf(System.Security.IPermission target)2429         public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
IsUnrestricted()2430         public bool IsUnrestricted() { throw null; }
ToXml()2431         public override System.Security.SecurityElement ToXml() { throw null; }
Union(System.Security.IPermission target)2432         public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
2433     }
2434     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
2435     [System.SerializableAttribute]
2436     public abstract partial class DBDataPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
2437     {
DBDataPermissionAttribute(System.Security.Permissions.SecurityAction action)2438         protected DBDataPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
2439         public bool AllowBlankPassword { get { throw null; } set { } }
2440         public string ConnectionString { get { throw null; } set { } }
2441         public System.Data.KeyRestrictionBehavior KeyRestrictionBehavior { get { throw null; } set { } }
2442         public string KeyRestrictions { get { throw null; } set { } }
2443         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeConnectionString()2444         public bool ShouldSerializeConnectionString() { throw null; }
2445         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ShouldSerializeKeyRestrictions()2446         public bool ShouldSerializeKeyRestrictions() { throw null; }
2447     }
2448     public abstract partial class DbDataReader : System.MarshalByRefObject, System.Collections.IEnumerable, System.Data.IDataReader, System.Data.IDataRecord, System.IDisposable
2449     {
DbDataReader()2450         protected DbDataReader() { }
2451         public abstract int Depth { get; }
2452         public abstract int FieldCount { get; }
2453         public abstract bool HasRows { get; }
2454         public abstract bool IsClosed { get; }
2455         public abstract object this[int ordinal] { get; }
2456         public abstract object this[string name] { get; }
2457         public abstract int RecordsAffected { get; }
2458         public virtual int VisibleFieldCount { get { throw null; } }
Close()2459         public virtual void Close() { }
2460         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Dispose()2461         public void Dispose() { }
Dispose(bool disposing)2462         protected virtual void Dispose(bool disposing) { }
GetBoolean(int ordinal)2463         public abstract bool GetBoolean(int ordinal);
GetByte(int ordinal)2464         public abstract byte GetByte(int ordinal);
GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)2465         public abstract long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length);
GetChar(int ordinal)2466         public abstract char GetChar(int ordinal);
GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)2467         public abstract long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length);
2468         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetData(int ordinal)2469         public System.Data.Common.DbDataReader GetData(int ordinal) { throw null; }
GetDataTypeName(int ordinal)2470         public abstract string GetDataTypeName(int ordinal);
GetDateTime(int ordinal)2471         public abstract System.DateTime GetDateTime(int ordinal);
GetDbDataReader(int ordinal)2472         protected virtual System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)2473         public abstract decimal GetDecimal(int ordinal);
GetDouble(int ordinal)2474         public abstract double GetDouble(int ordinal);
2475         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEnumerator()2476         public abstract System.Collections.IEnumerator GetEnumerator();
GetFieldType(int ordinal)2477         public abstract System.Type GetFieldType(int ordinal);
GetFieldValueAsync(int ordinal)2478         public System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int ordinal) { throw null; }
GetFieldValueAsync(int ordinal, System.Threading.CancellationToken cancellationToken)2479         public virtual System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int ordinal, System.Threading.CancellationToken cancellationToken) { throw null; }
GetFieldValue(int ordinal)2480         public virtual T GetFieldValue<T>(int ordinal) { throw null; }
GetFloat(int ordinal)2481         public abstract float GetFloat(int ordinal);
GetGuid(int ordinal)2482         public abstract System.Guid GetGuid(int ordinal);
GetInt16(int ordinal)2483         public abstract short GetInt16(int ordinal);
GetInt32(int ordinal)2484         public abstract int GetInt32(int ordinal);
GetInt64(int ordinal)2485         public abstract long GetInt64(int ordinal);
GetName(int ordinal)2486         public abstract string GetName(int ordinal);
GetOrdinal(string name)2487         public abstract int GetOrdinal(string name);
2488         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificFieldType(int ordinal)2489         public virtual System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
2490         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValue(int ordinal)2491         public virtual object GetProviderSpecificValue(int ordinal) { throw null; }
2492         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValues(object[] values)2493         public virtual int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()2494         public virtual System.Data.DataTable GetSchemaTable() { throw null; }
GetStream(int ordinal)2495         public virtual System.IO.Stream GetStream(int ordinal) { throw null; }
GetString(int ordinal)2496         public abstract string GetString(int ordinal);
GetTextReader(int ordinal)2497         public virtual System.IO.TextReader GetTextReader(int ordinal) { throw null; }
GetValue(int ordinal)2498         public abstract object GetValue(int ordinal);
GetValues(object[] values)2499         public abstract int GetValues(object[] values);
IsDBNull(int ordinal)2500         public abstract bool IsDBNull(int ordinal);
IsDBNullAsync(int ordinal)2501         public System.Threading.Tasks.Task<bool> IsDBNullAsync(int ordinal) { throw null; }
IsDBNullAsync(int ordinal, System.Threading.CancellationToken cancellationToken)2502         public virtual System.Threading.Tasks.Task<bool> IsDBNullAsync(int ordinal, System.Threading.CancellationToken cancellationToken) { throw null; }
NextResult()2503         public abstract bool NextResult();
NextResultAsync()2504         public System.Threading.Tasks.Task<bool> NextResultAsync() { throw null; }
NextResultAsync(System.Threading.CancellationToken cancellationToken)2505         public virtual System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read()2506         public abstract bool Read();
ReadAsync()2507         public System.Threading.Tasks.Task<bool> ReadAsync() { throw null; }
ReadAsync(System.Threading.CancellationToken cancellationToken)2508         public virtual System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)2509         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
2510     }
2511     public static partial class DbDataReaderExtensions
2512     {
CanGetColumnSchema(this System.Data.Common.DbDataReader reader)2513         public static bool CanGetColumnSchema(this System.Data.Common.DbDataReader reader) { throw null; }
GetColumnSchema(this System.Data.Common.DbDataReader reader)2514         public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.DbColumn> GetColumnSchema(this System.Data.Common.DbDataReader reader) { throw null; }
2515     }
2516     public abstract partial class DbDataRecord : System.ComponentModel.ICustomTypeDescriptor, System.Data.IDataRecord
2517     {
DbDataRecord()2518         protected DbDataRecord() { }
2519         public abstract int FieldCount { get; }
2520         public abstract object this[int i] { get; }
2521         public abstract object this[string name] { get; }
GetBoolean(int i)2522         public abstract bool GetBoolean(int i);
GetByte(int i)2523         public abstract byte GetByte(int i);
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)2524         public abstract long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
GetChar(int i)2525         public abstract char GetChar(int i);
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)2526         public abstract long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length);
GetData(int i)2527         public System.Data.IDataReader GetData(int i) { throw null; }
GetDataTypeName(int i)2528         public abstract string GetDataTypeName(int i);
GetDateTime(int i)2529         public abstract System.DateTime GetDateTime(int i);
GetDbDataReader(int i)2530         protected virtual System.Data.Common.DbDataReader GetDbDataReader(int i) { throw null; }
GetDecimal(int i)2531         public abstract decimal GetDecimal(int i);
GetDouble(int i)2532         public abstract double GetDouble(int i);
GetFieldType(int i)2533         public abstract System.Type GetFieldType(int i);
GetFloat(int i)2534         public abstract float GetFloat(int i);
GetGuid(int i)2535         public abstract System.Guid GetGuid(int i);
GetInt16(int i)2536         public abstract short GetInt16(int i);
GetInt32(int i)2537         public abstract int GetInt32(int i);
GetInt64(int i)2538         public abstract long GetInt64(int i);
GetName(int i)2539         public abstract string GetName(int i);
GetOrdinal(string name)2540         public abstract int GetOrdinal(string name);
GetString(int i)2541         public abstract string GetString(int i);
GetValue(int i)2542         public abstract object GetValue(int i);
GetValues(object[] values)2543         public abstract int GetValues(object[] values);
IsDBNull(int i)2544         public abstract bool IsDBNull(int i);
System.ComponentModel.ICustomTypeDescriptor.GetAttributes()2545         System.ComponentModel.AttributeCollection System.ComponentModel.ICustomTypeDescriptor.GetAttributes() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetClassName()2546         string System.ComponentModel.ICustomTypeDescriptor.GetClassName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetComponentName()2547         string System.ComponentModel.ICustomTypeDescriptor.GetComponentName() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetConverter()2548         System.ComponentModel.TypeConverter System.ComponentModel.ICustomTypeDescriptor.GetConverter() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()2549         System.ComponentModel.EventDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()2550         System.ComponentModel.PropertyDescriptor System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType)2551         object System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type editorBaseType) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents()2552         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes)2553         System.ComponentModel.EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties()2554         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties() { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes)2555         System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[] attributes) { throw null; }
System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd)2556         object System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor pd) { throw null; }
2557     }
2558     public abstract partial class DbDataSourceEnumerator
2559     {
DbDataSourceEnumerator()2560         protected DbDataSourceEnumerator() { }
GetDataSources()2561         public abstract System.Data.DataTable GetDataSources();
2562     }
2563     public partial class DbEnumerator : System.Collections.IEnumerator
2564     {
DbEnumerator(System.Data.Common.DbDataReader reader)2565         public DbEnumerator(System.Data.Common.DbDataReader reader) { }
DbEnumerator(System.Data.Common.DbDataReader reader, bool closeReader)2566         public DbEnumerator(System.Data.Common.DbDataReader reader, bool closeReader) { }
DbEnumerator(System.Data.IDataReader reader)2567         public DbEnumerator(System.Data.IDataReader reader) { }
DbEnumerator(System.Data.IDataReader reader, bool closeReader)2568         public DbEnumerator(System.Data.IDataReader reader, bool closeReader) { }
2569         public object Current { get { throw null; } }
MoveNext()2570         public bool MoveNext() { throw null; }
2571         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Reset()2572         public void Reset() { }
2573     }
2574     [System.SerializableAttribute]
2575     public abstract partial class DbException : System.Runtime.InteropServices.ExternalException
2576     {
DbException()2577         protected DbException() { }
DbException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2578         protected DbException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
DbException(string message)2579         protected DbException(string message) { }
DbException(string message, System.Exception innerException)2580         protected DbException(string message, System.Exception innerException) { }
DbException(string message, int errorCode)2581         protected DbException(string message, int errorCode) { }
2582     }
2583     public static partial class DbMetaDataCollectionNames
2584     {
2585         public static readonly string DataSourceInformation;
2586         public static readonly string DataTypes;
2587         public static readonly string MetaDataCollections;
2588         public static readonly string ReservedWords;
2589         public static readonly string Restrictions;
2590     }
2591     public static partial class DbMetaDataColumnNames
2592     {
2593         public static readonly string CollectionName;
2594         public static readonly string ColumnSize;
2595         public static readonly string CompositeIdentifierSeparatorPattern;
2596         public static readonly string CreateFormat;
2597         public static readonly string CreateParameters;
2598         public static readonly string DataSourceProductName;
2599         public static readonly string DataSourceProductVersion;
2600         public static readonly string DataSourceProductVersionNormalized;
2601         public static readonly string DataType;
2602         public static readonly string GroupByBehavior;
2603         public static readonly string IdentifierCase;
2604         public static readonly string IdentifierPattern;
2605         public static readonly string IsAutoIncrementable;
2606         public static readonly string IsBestMatch;
2607         public static readonly string IsCaseSensitive;
2608         public static readonly string IsConcurrencyType;
2609         public static readonly string IsFixedLength;
2610         public static readonly string IsFixedPrecisionScale;
2611         public static readonly string IsLiteralSupported;
2612         public static readonly string IsLong;
2613         public static readonly string IsNullable;
2614         public static readonly string IsSearchable;
2615         public static readonly string IsSearchableWithLike;
2616         public static readonly string IsUnsigned;
2617         public static readonly string LiteralPrefix;
2618         public static readonly string LiteralSuffix;
2619         public static readonly string MaximumScale;
2620         public static readonly string MinimumScale;
2621         public static readonly string NumberOfIdentifierParts;
2622         public static readonly string NumberOfRestrictions;
2623         public static readonly string OrderByColumnsInSelect;
2624         public static readonly string ParameterMarkerFormat;
2625         public static readonly string ParameterMarkerPattern;
2626         public static readonly string ParameterNameMaxLength;
2627         public static readonly string ParameterNamePattern;
2628         public static readonly string ProviderDbType;
2629         public static readonly string QuotedIdentifierCase;
2630         public static readonly string QuotedIdentifierPattern;
2631         public static readonly string ReservedWord;
2632         public static readonly string StatementSeparatorPattern;
2633         public static readonly string StringLiteralPattern;
2634         public static readonly string SupportedJoinOperators;
2635         public static readonly string TypeName;
2636     }
2637     public abstract partial class DbParameter : System.MarshalByRefObject, System.Data.IDataParameter, System.Data.IDbDataParameter
2638     {
DbParameter()2639         protected DbParameter() { }
2640         [System.ComponentModel.BrowsableAttribute(false)]
2641         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2642         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2643         public abstract System.Data.DbType DbType { get; set; }
2644         [System.ComponentModel.DefaultValueAttribute((System.Data.ParameterDirection)(1))]
2645         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2646         public abstract System.Data.ParameterDirection Direction { get; set; }
2647         [System.ComponentModel.BrowsableAttribute(false)]
2648         [System.ComponentModel.DesignOnlyAttribute(true)]
2649         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2650         public abstract bool IsNullable { get; set; }
2651         [System.ComponentModel.DefaultValueAttribute("")]
2652         public abstract string ParameterName { get; set; }
2653         public virtual byte Precision { get { throw null; } set { } }
2654         public virtual byte Scale { get { throw null; } set { } }
2655         public abstract int Size { get; set; }
2656         [System.ComponentModel.DefaultValueAttribute("")]
2657         public abstract string SourceColumn { get; set; }
2658         [System.ComponentModel.DefaultValueAttribute(false)]
2659         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
2660         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2661         public abstract bool SourceColumnNullMapping { get; set; }
2662         [System.ComponentModel.DefaultValueAttribute((System.Data.DataRowVersion)(512))]
2663         public virtual System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
2664         byte System.Data.IDbDataParameter.Precision { get { throw null; } set { } }
2665         byte System.Data.IDbDataParameter.Scale { get { throw null; } set { } }
2666         [System.ComponentModel.DefaultValueAttribute(null)]
2667         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2668         public abstract object Value { get; set; }
2669         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ResetDbType()2670         public abstract void ResetDbType();
2671     }
2672     public abstract partial class DbParameterCollection : System.MarshalByRefObject, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Data.IDataParameterCollection
2673     {
DbParameterCollection()2674         protected DbParameterCollection() { }
2675         [System.ComponentModel.BrowsableAttribute(false)]
2676         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2677         public abstract int Count { get; }
2678         [System.ComponentModel.BrowsableAttribute(false)]
2679         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2680         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2681         public virtual bool IsFixedSize { get { throw null; } }
2682         [System.ComponentModel.BrowsableAttribute(false)]
2683         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2684         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2685         public virtual bool IsReadOnly { get { throw null; } }
2686         [System.ComponentModel.BrowsableAttribute(false)]
2687         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2688         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2689         public virtual bool IsSynchronized { get { throw null; } }
2690         public System.Data.Common.DbParameter this[int index] { get { throw null; } set { } }
2691         public System.Data.Common.DbParameter this[string parameterName] { get { throw null; } set { } }
2692         [System.ComponentModel.BrowsableAttribute(false)]
2693         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2694         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2695         public abstract object SyncRoot { get; }
2696         object System.Collections.IList.this[int index] { get { throw null; } set { } }
2697         object System.Data.IDataParameterCollection.this[string parameterName] { get { throw null; } set { } }
Add(object value)2698         public abstract int Add(object value);
AddRange(System.Array values)2699         public abstract void AddRange(System.Array values);
Clear()2700         public abstract void Clear();
Contains(object value)2701         public abstract bool Contains(object value);
Contains(string value)2702         public abstract bool Contains(string value);
CopyTo(System.Array array, int index)2703         public abstract void CopyTo(System.Array array, int index);
2704         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEnumerator()2705         public abstract System.Collections.IEnumerator GetEnumerator();
GetParameter(int index)2706         protected abstract System.Data.Common.DbParameter GetParameter(int index);
GetParameter(string parameterName)2707         protected abstract System.Data.Common.DbParameter GetParameter(string parameterName);
IndexOf(object value)2708         public abstract int IndexOf(object value);
IndexOf(string parameterName)2709         public abstract int IndexOf(string parameterName);
Insert(int index, object value)2710         public abstract void Insert(int index, object value);
Remove(object value)2711         public abstract void Remove(object value);
RemoveAt(int index)2712         public abstract void RemoveAt(int index);
RemoveAt(string parameterName)2713         public abstract void RemoveAt(string parameterName);
SetParameter(int index, System.Data.Common.DbParameter value)2714         protected abstract void SetParameter(int index, System.Data.Common.DbParameter value);
SetParameter(string parameterName, System.Data.Common.DbParameter value)2715         protected abstract void SetParameter(string parameterName, System.Data.Common.DbParameter value);
2716     }
2717     public partial class DbProviderConfigurationHandler : System.Configuration.IConfigurationSectionHandler
2718     {
DbProviderConfigurationHandler()2719         public DbProviderConfigurationHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)2720         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
2721     }
2722     public static partial class DbProviderFactories
2723     {
GetFactory(System.Data.Common.DbConnection connection)2724         public static System.Data.Common.DbProviderFactory GetFactory(System.Data.Common.DbConnection connection) { throw null; }
GetFactory(System.Data.DataRow providerRow)2725         public static System.Data.Common.DbProviderFactory GetFactory(System.Data.DataRow providerRow) { throw null; }
GetFactory(string providerInvariantName)2726         public static System.Data.Common.DbProviderFactory GetFactory(string providerInvariantName) { throw null; }
GetFactoryClasses()2727         public static System.Data.DataTable GetFactoryClasses() { throw null; }
2728     }
2729     public partial class DbProviderFactoriesConfigurationHandler : System.Configuration.IConfigurationSectionHandler
2730     {
DbProviderFactoriesConfigurationHandler()2731         public DbProviderFactoriesConfigurationHandler() { }
Create(object parent, object configContext, System.Xml.XmlNode section)2732         public virtual object Create(object parent, object configContext, System.Xml.XmlNode section) { throw null; }
2733     }
2734     public abstract partial class DbProviderFactory
2735     {
DbProviderFactory()2736         protected DbProviderFactory() { }
2737         public virtual bool CanCreateDataSourceEnumerator { get { throw null; } }
CreateCommand()2738         public virtual System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()2739         public virtual System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()2740         public virtual System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()2741         public virtual System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()2742         public virtual System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateDataSourceEnumerator()2743         public virtual System.Data.Common.DbDataSourceEnumerator CreateDataSourceEnumerator() { throw null; }
CreateParameter()2744         public virtual System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)2745         public virtual System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
2746     }
2747     [System.AttributeUsageAttribute((System.AttributeTargets)(128), AllowMultiple=false, Inherited=true)]
2748     [System.SerializableAttribute]
2749     public sealed partial class DbProviderSpecificTypePropertyAttribute : System.Attribute
2750     {
DbProviderSpecificTypePropertyAttribute(bool isProviderSpecificTypeProperty)2751         public DbProviderSpecificTypePropertyAttribute(bool isProviderSpecificTypeProperty) { }
2752         public bool IsProviderSpecificTypeProperty { get { throw null; } }
2753     }
2754     public abstract partial class DbTransaction : System.MarshalByRefObject, System.Data.IDbTransaction, System.IDisposable
2755     {
DbTransaction()2756         protected DbTransaction() { }
2757         public System.Data.Common.DbConnection Connection { get { throw null; } }
2758         protected abstract System.Data.Common.DbConnection DbConnection { get; }
2759         public abstract System.Data.IsolationLevel IsolationLevel { get; }
2760         System.Data.IDbConnection System.Data.IDbTransaction.Connection { get { throw null; } }
Commit()2761         public abstract void Commit();
Dispose()2762         public void Dispose() { }
Dispose(bool disposing)2763         protected virtual void Dispose(bool disposing) { }
Rollback()2764         public abstract void Rollback();
2765     }
2766     public enum GroupByBehavior
2767     {
2768         ExactMatch = 4,
2769         MustContainAll = 3,
2770         NotSupported = 1,
2771         Unknown = 0,
2772         Unrelated = 2,
2773     }
2774     public partial interface IDbColumnSchemaGenerator
2775     {
GetColumnSchema()2776         System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.DbColumn> GetColumnSchema();
2777     }
2778     public enum IdentifierCase
2779     {
2780         Insensitive = 1,
2781         Sensitive = 2,
2782         Unknown = 0,
2783     }
2784     public partial class RowUpdatedEventArgs : System.EventArgs
2785     {
RowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2786         public RowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { }
2787         public System.Data.IDbCommand Command { get { throw null; } }
2788         public System.Exception Errors { get { throw null; } set { } }
2789         public int RecordsAffected { get { throw null; } }
2790         public System.Data.DataRow Row { get { throw null; } }
2791         public int RowCount { get { throw null; } }
2792         public System.Data.StatementType StatementType { get { throw null; } }
2793         public System.Data.UpdateStatus Status { get { throw null; } set { } }
2794         public System.Data.Common.DataTableMapping TableMapping { get { throw null; } }
CopyToRows(System.Data.DataRow[] array)2795         public void CopyToRows(System.Data.DataRow[] array) { }
CopyToRows(System.Data.DataRow[] array, int arrayIndex)2796         public void CopyToRows(System.Data.DataRow[] array, int arrayIndex) { }
2797     }
2798     public partial class RowUpdatingEventArgs : System.EventArgs
2799     {
RowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)2800         public RowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { }
2801         protected virtual System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
2802         public System.Data.IDbCommand Command { get { throw null; } set { } }
2803         public System.Exception Errors { get { throw null; } set { } }
2804         public System.Data.DataRow Row { get { throw null; } }
2805         public System.Data.StatementType StatementType { get { throw null; } }
2806         public System.Data.UpdateStatus Status { get { throw null; } set { } }
2807         public System.Data.Common.DataTableMapping TableMapping { get { throw null; } }
2808     }
2809     public static partial class SchemaTableColumn
2810     {
2811         public static readonly string AllowDBNull;
2812         public static readonly string BaseColumnName;
2813         public static readonly string BaseSchemaName;
2814         public static readonly string BaseTableName;
2815         public static readonly string ColumnName;
2816         public static readonly string ColumnOrdinal;
2817         public static readonly string ColumnSize;
2818         public static readonly string DataType;
2819         public static readonly string IsAliased;
2820         public static readonly string IsExpression;
2821         public static readonly string IsKey;
2822         public static readonly string IsLong;
2823         public static readonly string IsUnique;
2824         public static readonly string NonVersionedProviderType;
2825         public static readonly string NumericPrecision;
2826         public static readonly string NumericScale;
2827         public static readonly string ProviderType;
2828     }
2829     public static partial class SchemaTableOptionalColumn
2830     {
2831         public static readonly string AutoIncrementSeed;
2832         public static readonly string AutoIncrementStep;
2833         public static readonly string BaseCatalogName;
2834         public static readonly string BaseColumnNamespace;
2835         public static readonly string BaseServerName;
2836         public static readonly string BaseTableNamespace;
2837         public static readonly string ColumnMapping;
2838         public static readonly string DefaultValue;
2839         public static readonly string Expression;
2840         public static readonly string IsAutoIncrement;
2841         public static readonly string IsHidden;
2842         public static readonly string IsReadOnly;
2843         public static readonly string IsRowVersion;
2844         public static readonly string ProviderSpecificDataType;
2845     }
2846     [System.FlagsAttribute]
2847     public enum SupportedJoinOperators
2848     {
2849         FullOuter = 8,
2850         Inner = 1,
2851         LeftOuter = 2,
2852         None = 0,
2853         RightOuter = 4,
2854     }
2855 }
2856 namespace System.Data.Odbc
2857 {
2858     [System.ComponentModel.DefaultEventAttribute("RecordsAffected")]
2859     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OdbcCommandDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2860     [System.ComponentModel.ToolboxItemAttribute(true)]
2861     public sealed partial class OdbcCommand : System.Data.Common.DbCommand, System.ICloneable
2862     {
OdbcCommand()2863         public OdbcCommand() { }
OdbcCommand(string cmdText)2864         public OdbcCommand(string cmdText) { }
OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection)2865         public OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection) { }
OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection, System.Data.Odbc.OdbcTransaction transaction)2866         public OdbcCommand(string cmdText, System.Data.Odbc.OdbcConnection connection, System.Data.Odbc.OdbcTransaction transaction) { }
2867         [System.ComponentModel.DefaultValueAttribute("")]
2868         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Odbc.Design.OdbcCommandTextEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2869         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2870         public override string CommandText { get { throw null; } set { } }
2871         public override int CommandTimeout { get { throw null; } set { } }
2872         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
2873         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2874         public override System.Data.CommandType CommandType { get { throw null; } set { } }
2875         [System.ComponentModel.DefaultValueAttribute(null)]
2876         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2877         public new System.Data.Odbc.OdbcConnection Connection { get { throw null; } set { } }
2878         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
2879         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
2880         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
2881         [System.ComponentModel.BrowsableAttribute(false)]
2882         [System.ComponentModel.DefaultValueAttribute(true)]
2883         [System.ComponentModel.DesignOnlyAttribute(true)]
2884         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
2885         public override bool DesignTimeVisible { get { throw null; } set { } }
2886         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
2887         public new System.Data.Odbc.OdbcParameterCollection Parameters { get { throw null; } }
2888         [System.ComponentModel.BrowsableAttribute(false)]
2889         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2890         public new System.Data.Odbc.OdbcTransaction Transaction { get { throw null; } set { } }
2891         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
2892         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
Cancel()2893         public override void Cancel() { }
CreateDbParameter()2894         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()2895         public new System.Data.Odbc.OdbcParameter CreateParameter() { throw null; }
Dispose(bool disposing)2896         protected override void Dispose(bool disposing) { }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2897         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteNonQuery()2898         public override int ExecuteNonQuery() { throw null; }
ExecuteReader()2899         public new System.Data.Odbc.OdbcDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2900         public new System.Data.Odbc.OdbcDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteScalar()2901         public override object ExecuteScalar() { throw null; }
Prepare()2902         public override void Prepare() { }
ResetCommandTimeout()2903         public void ResetCommandTimeout() { }
System.ICloneable.Clone()2904         object System.ICloneable.Clone() { throw null; }
2905     }
2906     public sealed partial class OdbcCommandBuilder : System.Data.Common.DbCommandBuilder
2907     {
OdbcCommandBuilder()2908         public OdbcCommandBuilder() { }
OdbcCommandBuilder(System.Data.Odbc.OdbcDataAdapter adapter)2909         public OdbcCommandBuilder(System.Data.Odbc.OdbcDataAdapter adapter) { }
2910         [System.ComponentModel.DefaultValueAttribute(null)]
2911         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)2912         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)2913         public static void DeriveParameters(System.Data.Odbc.OdbcCommand command) { }
GetDeleteCommand()2914         public new System.Data.Odbc.OdbcCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)2915         public new System.Data.Odbc.OdbcCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()2916         public new System.Data.Odbc.OdbcCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)2917         public new System.Data.Odbc.OdbcCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)2918         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)2919         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)2920         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetUpdateCommand()2921         public new System.Data.Odbc.OdbcCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)2922         public new System.Data.Odbc.OdbcCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
QuoteIdentifier(string unquotedIdentifier)2923         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
QuoteIdentifier(string unquotedIdentifier, System.Data.Odbc.OdbcConnection connection)2924         public string QuoteIdentifier(string unquotedIdentifier, System.Data.Odbc.OdbcConnection connection) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)2925         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)2926         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
UnquoteIdentifier(string quotedIdentifier, System.Data.Odbc.OdbcConnection connection)2927         public string UnquoteIdentifier(string quotedIdentifier, System.Data.Odbc.OdbcConnection connection) { throw null; }
2928     }
2929     [System.ComponentModel.DefaultEventAttribute("InfoMessage")]
2930     public sealed partial class OdbcConnection : System.Data.Common.DbConnection, System.ICloneable
2931     {
OdbcConnection()2932         public OdbcConnection() { }
OdbcConnection(string connectionString)2933         public OdbcConnection(string connectionString) { }
2934         [System.ComponentModel.DefaultValueAttribute("")]
2935         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Odbc.Design.OdbcConnectionStringEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2936         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
2937         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2938         [System.ComponentModel.SettingsBindableAttribute(true)]
2939         public override string ConnectionString { get { throw null; } set { } }
2940         [System.ComponentModel.DefaultValueAttribute(15)]
2941         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2942         public new int ConnectionTimeout { get { throw null; } set { } }
2943         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2944         public override string Database { get { throw null; } }
2945         [System.ComponentModel.BrowsableAttribute(false)]
2946         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2947         public override string DataSource { get { throw null; } }
2948         [System.ComponentModel.BrowsableAttribute(false)]
2949         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2950         public string Driver { get { throw null; } }
2951         [System.ComponentModel.BrowsableAttribute(false)]
2952         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2953         public override string ServerVersion { get { throw null; } }
2954         [System.ComponentModel.BrowsableAttribute(false)]
2955         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
2956         public override System.Data.ConnectionState State { get { throw null; } }
2957         public event System.Data.Odbc.OdbcInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2958         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()2959         public new System.Data.Odbc.OdbcTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolevel)2960         public new System.Data.Odbc.OdbcTransaction BeginTransaction(System.Data.IsolationLevel isolevel) { throw null; }
ChangeDatabase(string value)2961         public override void ChangeDatabase(string value) { }
Close()2962         public override void Close() { }
CreateCommand()2963         public new System.Data.Odbc.OdbcCommand CreateCommand() { throw null; }
CreateDbCommand()2964         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)2965         protected override void Dispose(bool disposing) { }
EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)2966         public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) { }
EnlistTransaction(System.Transactions.Transaction transaction)2967         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()2968         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)2969         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)2970         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
Open()2971         public override void Open() { }
ReleaseObjectPool()2972         public static void ReleaseObjectPool() { }
System.ICloneable.Clone()2973         object System.ICloneable.Clone() { throw null; }
2974     }
2975     [System.ComponentModel.DefaultPropertyAttribute("Driver")]
2976     [System.ComponentModel.TypeConverterAttribute("System.Data.Odbc.OdbcConnectionStringBuilder.OdbcConnectionStringBuilderConverter")]
2977     public sealed partial class OdbcConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
2978     {
OdbcConnectionStringBuilder()2979         public OdbcConnectionStringBuilder() { }
OdbcConnectionStringBuilder(string connectionString)2980         public OdbcConnectionStringBuilder(string connectionString) { }
2981         [System.ComponentModel.DisplayNameAttribute("Driver")]
2982         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2983         public string Driver { get { throw null; } set { } }
2984         [System.ComponentModel.DisplayNameAttribute("Dsn")]
2985         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2986         public string Dsn { get { throw null; } set { } }
2987         public override object this[string keyword] { get { throw null; } set { } }
2988         public override System.Collections.ICollection Keys { get { throw null; } }
Clear()2989         public override void Clear() { }
ContainsKey(string keyword)2990         public override bool ContainsKey(string keyword) { throw null; }
Remove(string keyword)2991         public override bool Remove(string keyword) { throw null; }
TryGetValue(string keyword, out object value)2992         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2993     }
2994     [System.ComponentModel.DefaultEventAttribute("RowUpdated")]
2995     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OdbcDataAdapterDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2996     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.OdbcDataAdapterToolboxItem, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
2997     public sealed partial class OdbcDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
2998     {
OdbcDataAdapter()2999         public OdbcDataAdapter() { }
OdbcDataAdapter(System.Data.Odbc.OdbcCommand selectCommand)3000         public OdbcDataAdapter(System.Data.Odbc.OdbcCommand selectCommand) { }
OdbcDataAdapter(string selectCommandText, System.Data.Odbc.OdbcConnection selectConnection)3001         public OdbcDataAdapter(string selectCommandText, System.Data.Odbc.OdbcConnection selectConnection) { }
OdbcDataAdapter(string selectCommandText, string selectConnectionString)3002         public OdbcDataAdapter(string selectCommandText, string selectConnectionString) { }
3003         [System.ComponentModel.DefaultValueAttribute(null)]
3004         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3005         public new System.Data.Odbc.OdbcCommand DeleteCommand { get { throw null; } set { } }
3006         [System.ComponentModel.DefaultValueAttribute(null)]
3007         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.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 InsertCommand { get { throw null; } set { } }
3009         [System.ComponentModel.DefaultValueAttribute(null)]
3010         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3011         public new System.Data.Odbc.OdbcCommand SelectCommand { get { throw null; } set { } }
3012         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
3013         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
3014         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
3015         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
3016         [System.ComponentModel.DefaultValueAttribute(null)]
3017         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3018         public new System.Data.Odbc.OdbcCommand UpdateCommand { get { throw null; } set { } }
3019         public event System.Data.Odbc.OdbcRowUpdatedEventHandler RowUpdated { add { } remove { } }
3020         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)3021         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)3022         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)3023         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)3024         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()3025         object System.ICloneable.Clone() { throw null; }
3026     }
3027     public sealed partial class OdbcDataReader : System.Data.Common.DbDataReader
3028     {
OdbcDataReader()3029         internal OdbcDataReader() { }
3030         public override int Depth { get { throw null; } }
3031         public override int FieldCount { get { throw null; } }
3032         public override bool HasRows { get { throw null; } }
3033         public override bool IsClosed { get { throw null; } }
3034         public override object this[int i] { get { throw null; } }
3035         public override object this[string value] { get { throw null; } }
3036         public override int RecordsAffected { get { throw null; } }
Close()3037         public override void Close() { }
Dispose(bool disposing)3038         protected override void Dispose(bool disposing) { }
GetBoolean(int i)3039         public override bool GetBoolean(int i) { throw null; }
GetByte(int i)3040         public override byte GetByte(int i) { throw null; }
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)3041         public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int i)3042         public override char GetChar(int i) { throw null; }
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)3043         public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int i)3044         public override string GetDataTypeName(int i) { throw null; }
GetDate(int i)3045         public System.DateTime GetDate(int i) { throw null; }
GetDateTime(int i)3046         public override System.DateTime GetDateTime(int i) { throw null; }
GetDecimal(int i)3047         public override decimal GetDecimal(int i) { throw null; }
GetDouble(int i)3048         public override double GetDouble(int i) { throw null; }
GetEnumerator()3049         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int i)3050         public override System.Type GetFieldType(int i) { throw null; }
GetFloat(int i)3051         public override float GetFloat(int i) { throw null; }
GetGuid(int i)3052         public override System.Guid GetGuid(int i) { throw null; }
GetInt16(int i)3053         public override short GetInt16(int i) { throw null; }
GetInt32(int i)3054         public override int GetInt32(int i) { throw null; }
GetInt64(int i)3055         public override long GetInt64(int i) { throw null; }
GetName(int i)3056         public override string GetName(int i) { throw null; }
GetOrdinal(string value)3057         public override int GetOrdinal(string value) { throw null; }
GetSchemaTable()3058         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int i)3059         public override string GetString(int i) { throw null; }
GetTime(int i)3060         public System.TimeSpan GetTime(int i) { throw null; }
GetValue(int i)3061         public override object GetValue(int i) { throw null; }
GetValues(object[] values)3062         public override int GetValues(object[] values) { throw null; }
IsDBNull(int i)3063         public override bool IsDBNull(int i) { throw null; }
NextResult()3064         public override bool NextResult() { throw null; }
Read()3065         public override bool Read() { throw null; }
3066     }
3067     [System.SerializableAttribute]
3068     public sealed partial class OdbcError
3069     {
OdbcError()3070         internal OdbcError() { }
3071         public string Message { get { throw null; } }
3072         public int NativeError { get { throw null; } }
3073         public string Source { get { throw null; } }
3074         public string SQLState { get { throw null; } }
ToString()3075         public override string ToString() { throw null; }
3076     }
3077     [System.SerializableAttribute]
3078     public sealed partial class OdbcErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
3079     {
OdbcErrorCollection()3080         internal OdbcErrorCollection() { }
3081         public int Count { get { throw null; } }
3082         public System.Data.Odbc.OdbcError this[int i] { get { throw null; } }
3083         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3084         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int i)3085         public void CopyTo(System.Array array, int i) { }
CopyTo(System.Data.Odbc.OdbcError[] array, int i)3086         public void CopyTo(System.Data.Odbc.OdbcError[] array, int i) { }
GetEnumerator()3087         public System.Collections.IEnumerator GetEnumerator() { throw null; }
3088     }
3089     [System.SerializableAttribute]
3090     public sealed partial class OdbcException : System.Data.Common.DbException
3091     {
OdbcException()3092         internal OdbcException() { }
3093         public System.Data.Odbc.OdbcErrorCollection Errors { get { throw null; } }
3094         public override string Source { get { throw null; } }
3095         [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)3096         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
3097     }
3098     public sealed partial class OdbcFactory : System.Data.Common.DbProviderFactory
3099     {
OdbcFactory()3100         internal OdbcFactory() { }
3101         public static readonly System.Data.Odbc.OdbcFactory Instance;
CreateCommand()3102         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()3103         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()3104         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()3105         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()3106         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateParameter()3107         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)3108         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
3109     }
3110     public sealed partial class OdbcInfoMessageEventArgs : System.EventArgs
3111     {
OdbcInfoMessageEventArgs()3112         internal OdbcInfoMessageEventArgs() { }
3113         public System.Data.Odbc.OdbcErrorCollection Errors { get { throw null; } }
3114         public string Message { get { throw null; } }
ToString()3115         public override string ToString() { throw null; }
3116     }
OdbcInfoMessageEventHandler(object sender, System.Data.Odbc.OdbcInfoMessageEventArgs e)3117     public delegate void OdbcInfoMessageEventHandler(object sender, System.Data.Odbc.OdbcInfoMessageEventArgs e);
3118     public static partial class OdbcMetaDataCollectionNames
3119     {
3120         public static readonly string Columns;
3121         public static readonly string Indexes;
3122         public static readonly string ProcedureColumns;
3123         public static readonly string ProcedureParameters;
3124         public static readonly string Procedures;
3125         public static readonly string Tables;
3126         public static readonly string Views;
3127     }
3128     public static partial class OdbcMetaDataColumnNames
3129     {
3130         public static readonly string BooleanFalseLiteral;
3131         public static readonly string BooleanTrueLiteral;
3132         public static readonly string SQLType;
3133     }
3134     [System.ComponentModel.TypeConverterAttribute("System.Data.Odbc.OdbcParameter.OdbcParameterConverter")]
3135     public sealed partial class OdbcParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
3136     {
OdbcParameter()3137         public OdbcParameter() { }
OdbcParameter(string name, System.Data.Odbc.OdbcType type)3138         public OdbcParameter(string name, System.Data.Odbc.OdbcType type) { }
OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size)3139         public OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size) { }
3140         [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)3141         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) { }
3142         [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)3143         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)3144         public OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size, string sourcecolumn) { }
OdbcParameter(string name, object value)3145         public OdbcParameter(string name, object value) { }
3146         public override System.Data.DbType DbType { get { throw null; } set { } }
3147         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3148         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
3149         public override bool IsNullable { get { throw null; } set { } }
3150         [System.ComponentModel.DefaultValueAttribute((System.Data.Odbc.OdbcType)(11))]
3151         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3152         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
3153         public System.Data.Odbc.OdbcType OdbcType { get { throw null; } set { } }
3154         public override string ParameterName { get { throw null; } set { } }
3155         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3156         public new byte Precision { get { throw null; } set { } }
3157         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3158         public new byte Scale { get { throw null; } set { } }
3159         public override int Size { get { throw null; } set { } }
3160         public override string SourceColumn { get { throw null; } set { } }
3161         public override bool SourceColumnNullMapping { get { throw null; } set { } }
3162         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
3163         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3164         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
3165         public override object Value { get { throw null; } set { } }
ResetDbType()3166         public override void ResetDbType() { }
ResetOdbcType()3167         public void ResetOdbcType() { }
System.ICloneable.Clone()3168         object System.ICloneable.Clone() { throw null; }
ToString()3169         public override string ToString() { throw null; }
3170     }
3171     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3172     [System.ComponentModel.ListBindableAttribute(false)]
3173     public sealed partial class OdbcParameterCollection : System.Data.Common.DbParameterCollection
3174     {
OdbcParameterCollection()3175         internal OdbcParameterCollection() { }
3176         public override int Count { get { throw null; } }
3177         public override bool IsFixedSize { get { throw null; } }
3178         public override bool IsReadOnly { get { throw null; } }
3179         public override bool IsSynchronized { get { throw null; } }
3180         [System.ComponentModel.BrowsableAttribute(false)]
3181         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3182         public new System.Data.Odbc.OdbcParameter this[int index] { get { throw null; } set { } }
3183         [System.ComponentModel.BrowsableAttribute(false)]
3184         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3185         public new System.Data.Odbc.OdbcParameter this[string parameterName] { get { throw null; } set { } }
3186         public override object SyncRoot { get { throw null; } }
Add(System.Data.Odbc.OdbcParameter value)3187         public System.Data.Odbc.OdbcParameter Add(System.Data.Odbc.OdbcParameter value) { throw null; }
3188         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)3189         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.Odbc.OdbcType odbcType)3190         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)3191         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)3192         public System.Data.Odbc.OdbcParameter Add(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, string sourceColumn) { throw null; }
3193         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3194         [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)3195         public System.Data.Odbc.OdbcParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)3196         public override void AddRange(System.Array values) { }
AddRange(System.Data.Odbc.OdbcParameter[] values)3197         public void AddRange(System.Data.Odbc.OdbcParameter[] values) { }
AddWithValue(string parameterName, object value)3198         public System.Data.Odbc.OdbcParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()3199         public override void Clear() { }
Contains(System.Data.Odbc.OdbcParameter value)3200         public bool Contains(System.Data.Odbc.OdbcParameter value) { throw null; }
Contains(object value)3201         public override bool Contains(object value) { throw null; }
Contains(string value)3202         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)3203         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.Odbc.OdbcParameter[] array, int index)3204         public void CopyTo(System.Data.Odbc.OdbcParameter[] array, int index) { }
GetEnumerator()3205         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)3206         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)3207         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.Odbc.OdbcParameter value)3208         public int IndexOf(System.Data.Odbc.OdbcParameter value) { throw null; }
IndexOf(object value)3209         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)3210         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.Odbc.OdbcParameter value)3211         public void Insert(int index, System.Data.Odbc.OdbcParameter value) { }
Insert(int index, object value)3212         public override void Insert(int index, object value) { }
Remove(System.Data.Odbc.OdbcParameter value)3213         public void Remove(System.Data.Odbc.OdbcParameter value) { }
Remove(object value)3214         public override void Remove(object value) { }
RemoveAt(int index)3215         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)3216         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)3217         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)3218         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
3219     }
3220     [System.SerializableAttribute]
3221     public sealed partial class OdbcPermission : System.Data.Common.DBDataPermission
3222     {
3223         [System.ObsoleteAttribute("OdbcPermission() has been deprecated.  Use the OdbcPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
OdbcPermission()3224         public OdbcPermission() : base (default(System.Security.Permissions.PermissionState)) { }
OdbcPermission(System.Security.Permissions.PermissionState state)3225         public OdbcPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
3226         [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)3227         public OdbcPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)3228         public override void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Copy()3229         public override System.Security.IPermission Copy() { throw null; }
3230     }
3231     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
3232     [System.SerializableAttribute]
3233     public sealed partial class OdbcPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
3234     {
OdbcPermissionAttribute(System.Security.Permissions.SecurityAction action)3235         public OdbcPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()3236         public override System.Security.IPermission CreatePermission() { throw null; }
3237     }
3238     public sealed partial class OdbcRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
3239     {
OdbcRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3240         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)) { }
3241         public new System.Data.Odbc.OdbcCommand Command { get { throw null; } }
3242     }
OdbcRowUpdatedEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatedEventArgs e)3243     public delegate void OdbcRowUpdatedEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatedEventArgs e);
3244     public sealed partial class OdbcRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
3245     {
OdbcRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3246         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)) { }
3247         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
3248         public new System.Data.Odbc.OdbcCommand Command { get { throw null; } set { } }
3249     }
OdbcRowUpdatingEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatingEventArgs e)3250     public delegate void OdbcRowUpdatingEventHandler(object sender, System.Data.Odbc.OdbcRowUpdatingEventArgs e);
3251     public sealed partial class OdbcTransaction : System.Data.Common.DbTransaction
3252     {
OdbcTransaction()3253         internal OdbcTransaction() { }
3254         public new System.Data.Odbc.OdbcConnection Connection { get { throw null; } }
3255         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
3256         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()3257         public override void Commit() { }
Dispose(bool disposing)3258         protected override void Dispose(bool disposing) { }
Rollback()3259         public override void Rollback() { }
3260     }
3261     public enum OdbcType
3262     {
3263         BigInt = 1,
3264         Binary = 2,
3265         Bit = 3,
3266         Char = 4,
3267         Date = 23,
3268         DateTime = 5,
3269         Decimal = 6,
3270         Double = 8,
3271         Image = 9,
3272         Int = 10,
3273         NChar = 11,
3274         NText = 12,
3275         Numeric = 7,
3276         NVarChar = 13,
3277         Real = 14,
3278         SmallDateTime = 16,
3279         SmallInt = 17,
3280         Text = 18,
3281         Time = 24,
3282         Timestamp = 19,
3283         TinyInt = 20,
3284         UniqueIdentifier = 15,
3285         VarBinary = 21,
3286         VarChar = 22,
3287     }
3288 }
3289 namespace System.Data.OleDb
3290 {
3291     [System.ComponentModel.DefaultEventAttribute("RecordsAffected")]
3292     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OleDbCommandDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3293     [System.ComponentModel.ToolboxItemAttribute(true)]
3294     public sealed partial class OleDbCommand : System.Data.Common.DbCommand, System.Data.IDbCommand, System.ICloneable, System.IDisposable
3295     {
OleDbCommand()3296         public OleDbCommand() { }
OleDbCommand(string cmdText)3297         public OleDbCommand(string cmdText) { }
OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection)3298         public OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection) { }
OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection, System.Data.OleDb.OleDbTransaction transaction)3299         public OleDbCommand(string cmdText, System.Data.OleDb.OleDbConnection connection, System.Data.OleDb.OleDbTransaction transaction) { }
3300         [System.ComponentModel.DefaultValueAttribute("")]
3301         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.ADO.Design.OleDbCommandTextEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3302         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3303         public override string CommandText { get { throw null; } set { } }
3304         public override int CommandTimeout { get { throw null; } set { } }
3305         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
3306         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3307         public override System.Data.CommandType CommandType { get { throw null; } set { } }
3308         [System.ComponentModel.DefaultValueAttribute(null)]
3309         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3310         public new System.Data.OleDb.OleDbConnection Connection { get { throw null; } set { } }
3311         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
3312         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
3313         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
3314         [System.ComponentModel.BrowsableAttribute(false)]
3315         [System.ComponentModel.DefaultValueAttribute(true)]
3316         [System.ComponentModel.DesignOnlyAttribute(true)]
3317         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3318         public override bool DesignTimeVisible { get { throw null; } set { } }
3319         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
3320         public new System.Data.OleDb.OleDbParameterCollection Parameters { get { throw null; } }
3321         [System.ComponentModel.BrowsableAttribute(false)]
3322         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3323         public new System.Data.OleDb.OleDbTransaction Transaction { get { throw null; } set { } }
3324         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
3325         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
Cancel()3326         public override void Cancel() { }
Clone()3327         public System.Data.OleDb.OleDbCommand Clone() { throw null; }
CreateDbParameter()3328         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()3329         public new System.Data.OleDb.OleDbParameter CreateParameter() { throw null; }
Dispose(bool disposing)3330         protected override void Dispose(bool disposing) { }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)3331         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteNonQuery()3332         public override int ExecuteNonQuery() { throw null; }
ExecuteReader()3333         public new System.Data.OleDb.OleDbDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)3334         public new System.Data.OleDb.OleDbDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteScalar()3335         public override object ExecuteScalar() { throw null; }
Prepare()3336         public override void Prepare() { }
ResetCommandTimeout()3337         public void ResetCommandTimeout() { }
System.Data.IDbCommand.ExecuteReader()3338         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader() { throw null; }
System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior)3339         System.Data.IDataReader System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
System.ICloneable.Clone()3340         object System.ICloneable.Clone() { throw null; }
3341     }
3342     public sealed partial class OleDbCommandBuilder : System.Data.Common.DbCommandBuilder
3343     {
OleDbCommandBuilder()3344         public OleDbCommandBuilder() { }
OleDbCommandBuilder(System.Data.OleDb.OleDbDataAdapter adapter)3345         public OleDbCommandBuilder(System.Data.OleDb.OleDbDataAdapter adapter) { }
3346         [System.ComponentModel.DefaultValueAttribute(null)]
3347         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)3348         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)3349         public static void DeriveParameters(System.Data.OleDb.OleDbCommand command) { }
GetDeleteCommand()3350         public new System.Data.OleDb.OleDbCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)3351         public new System.Data.OleDb.OleDbCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()3352         public new System.Data.OleDb.OleDbCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)3353         public new System.Data.OleDb.OleDbCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)3354         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)3355         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)3356         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetUpdateCommand()3357         public new System.Data.OleDb.OleDbCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)3358         public new System.Data.OleDb.OleDbCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
QuoteIdentifier(string unquotedIdentifier)3359         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
QuoteIdentifier(string unquotedIdentifier, System.Data.OleDb.OleDbConnection connection)3360         public string QuoteIdentifier(string unquotedIdentifier, System.Data.OleDb.OleDbConnection connection) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)3361         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)3362         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection connection)3363         public string UnquoteIdentifier(string quotedIdentifier, System.Data.OleDb.OleDbConnection connection) { throw null; }
3364     }
3365     [System.ComponentModel.DefaultEventAttribute("InfoMessage")]
3366     public sealed partial class OleDbConnection : System.Data.Common.DbConnection, System.Data.IDbConnection, System.ICloneable, System.IDisposable
3367     {
OleDbConnection()3368         public OleDbConnection() { }
OleDbConnection(string connectionString)3369         public OleDbConnection(string connectionString) { }
3370         [System.ComponentModel.DefaultValueAttribute("")]
3371         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.ADO.Design.OleDbConnectionStringEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3372         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
3373         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3374         [System.ComponentModel.SettingsBindableAttribute(true)]
3375         public override string ConnectionString { get { throw null; } set { } }
3376         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3377         public override int ConnectionTimeout { get { throw null; } }
3378         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3379         public override string Database { get { throw null; } }
3380         [System.ComponentModel.BrowsableAttribute(true)]
3381         public override string DataSource { get { throw null; } }
3382         [System.ComponentModel.BrowsableAttribute(true)]
3383         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3384         public string Provider { get { throw null; } }
3385         public override string ServerVersion { get { throw null; } }
3386         [System.ComponentModel.BrowsableAttribute(false)]
3387         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3388         public override System.Data.ConnectionState State { get { throw null; } }
3389         public event System.Data.OleDb.OleDbInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)3390         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()3391         public new System.Data.OleDb.OleDbTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)3392         public new System.Data.OleDb.OleDbTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string value)3393         public override void ChangeDatabase(string value) { }
Close()3394         public override void Close() { }
CreateCommand()3395         public new System.Data.OleDb.OleDbCommand CreateCommand() { throw null; }
CreateDbCommand()3396         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)3397         protected override void Dispose(bool disposing) { }
EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)3398         public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) { }
EnlistTransaction(System.Transactions.Transaction transaction)3399         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetOleDbSchemaTable(System.Guid schema, object[] restrictions)3400         public System.Data.DataTable GetOleDbSchemaTable(System.Guid schema, object[] restrictions) { throw null; }
GetSchema()3401         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)3402         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)3403         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
Open()3404         public override void Open() { }
ReleaseObjectPool()3405         public static void ReleaseObjectPool() { }
3406         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ResetState()3407         public void ResetState() { }
System.ICloneable.Clone()3408         object System.ICloneable.Clone() { throw null; }
3409     }
3410     [System.ComponentModel.DefaultPropertyAttribute("Provider")]
3411     [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3412     [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbConnectionStringBuilder.OleDbConnectionStringBuilderConverter")]
3413     public sealed partial class OleDbConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
3414     {
OleDbConnectionStringBuilder()3415         public OleDbConnectionStringBuilder() { }
OleDbConnectionStringBuilder(string connectionString)3416         public OleDbConnectionStringBuilder(string connectionString) { }
3417         [System.ComponentModel.DisplayNameAttribute("Data Source")]
3418         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3419         public string DataSource { get { throw null; } set { } }
3420         [System.ComponentModel.DisplayNameAttribute("File Name")]
3421         [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")]
3422         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3423         public string FileName { get { throw null; } set { } }
3424         public override object this[string keyword] { get { throw null; } set { } }
3425         public override System.Collections.ICollection Keys { get { throw null; } }
3426         [System.ComponentModel.DisplayNameAttribute("OLE DB Services")]
3427         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3428         [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbConnectionStringBuilder.OleDbServicesConverter")]
3429         public int OleDbServices { get { throw null; } set { } }
3430         [System.ComponentModel.DisplayNameAttribute("Persist Security Info")]
3431         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3432         public bool PersistSecurityInfo { get { throw null; } set { } }
3433         [System.ComponentModel.DisplayNameAttribute("Provider")]
3434         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3435         [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbConnectionStringBuilder.OleDbProviderConverter")]
3436         public string Provider { get { throw null; } set { } }
Clear()3437         public override void Clear() { }
ContainsKey(string keyword)3438         public override bool ContainsKey(string keyword) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)3439         protected override void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)3440         public override bool Remove(string keyword) { throw null; }
TryGetValue(string keyword, out object value)3441         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
3442     }
3443     [System.ComponentModel.DefaultEventAttribute("RowUpdated")]
3444     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.OleDbDataAdapterDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3445     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.OleDbDataAdapterToolboxItem, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3446     public sealed partial class OleDbDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
3447     {
OleDbDataAdapter()3448         public OleDbDataAdapter() { }
OleDbDataAdapter(System.Data.OleDb.OleDbCommand selectCommand)3449         public OleDbDataAdapter(System.Data.OleDb.OleDbCommand selectCommand) { }
OleDbDataAdapter(string selectCommandText, System.Data.OleDb.OleDbConnection selectConnection)3450         public OleDbDataAdapter(string selectCommandText, System.Data.OleDb.OleDbConnection selectConnection) { }
OleDbDataAdapter(string selectCommandText, string selectConnectionString)3451         public OleDbDataAdapter(string selectCommandText, string selectConnectionString) { }
3452         [System.ComponentModel.DefaultValueAttribute(null)]
3453         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3454         public new System.Data.OleDb.OleDbCommand DeleteCommand { get { throw null; } set { } }
3455         [System.ComponentModel.DefaultValueAttribute(null)]
3456         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.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 InsertCommand { get { throw null; } set { } }
3458         [System.ComponentModel.DefaultValueAttribute(null)]
3459         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3460         public new System.Data.OleDb.OleDbCommand SelectCommand { get { throw null; } set { } }
3461         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
3462         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
3463         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
3464         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
3465         [System.ComponentModel.DefaultValueAttribute(null)]
3466         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3467         public new System.Data.OleDb.OleDbCommand UpdateCommand { get { throw null; } set { } }
3468         public event System.Data.OleDb.OleDbRowUpdatedEventHandler RowUpdated { add { } remove { } }
3469         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)3470         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)3471         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)3472         public int Fill(System.Data.DataSet dataSet, object ADODBRecordSet, string srcTable) { throw null; }
Fill(System.Data.DataTable dataTable, object ADODBRecordSet)3473         public int Fill(System.Data.DataTable dataTable, object ADODBRecordSet) { throw null; }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)3474         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)3475         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()3476         object System.ICloneable.Clone() { throw null; }
3477     }
3478     public sealed partial class OleDbDataReader : System.Data.Common.DbDataReader
3479     {
OleDbDataReader()3480         internal OleDbDataReader() { }
3481         public override int Depth { get { throw null; } }
3482         public override int FieldCount { get { throw null; } }
3483         public override bool HasRows { get { throw null; } }
3484         public override bool IsClosed { get { throw null; } }
3485         public override object this[int index] { get { throw null; } }
3486         public override object this[string name] { get { throw null; } }
3487         public override int RecordsAffected { get { throw null; } }
3488         public override int VisibleFieldCount { get { throw null; } }
Close()3489         public override void Close() { }
GetBoolean(int ordinal)3490         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)3491         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)3492         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
3493         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetChar(int ordinal)3494         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)3495         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
3496         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetData(int ordinal)3497         public new System.Data.OleDb.OleDbDataReader GetData(int ordinal) { throw null; }
GetDataTypeName(int index)3498         public override string GetDataTypeName(int index) { throw null; }
GetDateTime(int ordinal)3499         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDbDataReader(int ordinal)3500         protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)3501         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)3502         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()3503         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int index)3504         public override System.Type GetFieldType(int index) { throw null; }
GetFloat(int ordinal)3505         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)3506         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)3507         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)3508         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)3509         public override long GetInt64(int ordinal) { throw null; }
GetName(int index)3510         public override string GetName(int index) { throw null; }
GetOrdinal(string name)3511         public override int GetOrdinal(string name) { throw null; }
GetSchemaTable()3512         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)3513         public override string GetString(int ordinal) { throw null; }
GetTimeSpan(int ordinal)3514         public System.TimeSpan GetTimeSpan(int ordinal) { throw null; }
GetValue(int ordinal)3515         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)3516         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)3517         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()3518         public override bool NextResult() { throw null; }
Read()3519         public override bool Read() { throw null; }
3520     }
3521     public sealed partial class OleDbEnumerator
3522     {
OleDbEnumerator()3523         public OleDbEnumerator() { }
GetElements()3524         public System.Data.DataTable GetElements() { throw null; }
GetEnumerator(System.Type type)3525         public static System.Data.OleDb.OleDbDataReader GetEnumerator(System.Type type) { throw null; }
GetRootEnumerator()3526         public static System.Data.OleDb.OleDbDataReader GetRootEnumerator() { throw null; }
3527     }
3528     [System.SerializableAttribute]
3529     public sealed partial class OleDbError
3530     {
OleDbError()3531         internal OleDbError() { }
3532         public string Message { get { throw null; } }
3533         public int NativeError { get { throw null; } }
3534         public string Source { get { throw null; } }
3535         public string SQLState { get { throw null; } }
ToString()3536         public override string ToString() { throw null; }
3537     }
3538     [System.ComponentModel.ListBindableAttribute(false)]
3539     [System.SerializableAttribute]
3540     public sealed partial class OleDbErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
3541     {
OleDbErrorCollection()3542         internal OleDbErrorCollection() { }
3543         public int Count { get { throw null; } }
3544         public System.Data.OleDb.OleDbError this[int index] { get { throw null; } }
3545         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
3546         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)3547         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.OleDb.OleDbError[] array, int index)3548         public void CopyTo(System.Data.OleDb.OleDbError[] array, int index) { }
GetEnumerator()3549         public System.Collections.IEnumerator GetEnumerator() { throw null; }
3550     }
3551     [System.SerializableAttribute]
3552     public sealed partial class OleDbException : System.Data.Common.DbException
3553     {
OleDbException()3554         internal OleDbException() { }
3555         [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbException.ErrorCodeConverter")]
3556         public override int ErrorCode { get { throw null; } }
3557         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
3558         public System.Data.OleDb.OleDbErrorCollection Errors { get { throw null; } }
3559         [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)3560         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
3561     }
3562     public sealed partial class OleDbFactory : System.Data.Common.DbProviderFactory
3563     {
OleDbFactory()3564         internal OleDbFactory() { }
3565         public static readonly System.Data.OleDb.OleDbFactory Instance;
CreateCommand()3566         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()3567         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()3568         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()3569         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()3570         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateParameter()3571         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)3572         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
3573     }
3574     public sealed partial class OleDbInfoMessageEventArgs : System.EventArgs
3575     {
OleDbInfoMessageEventArgs()3576         internal OleDbInfoMessageEventArgs() { }
3577         public int ErrorCode { get { throw null; } }
3578         public System.Data.OleDb.OleDbErrorCollection Errors { get { throw null; } }
3579         public string Message { get { throw null; } }
3580         public string Source { get { throw null; } }
ToString()3581         public override string ToString() { throw null; }
3582     }
OleDbInfoMessageEventHandler(object sender, System.Data.OleDb.OleDbInfoMessageEventArgs e)3583     public delegate void OleDbInfoMessageEventHandler(object sender, System.Data.OleDb.OleDbInfoMessageEventArgs e);
3584     public enum OleDbLiteral
3585     {
3586         Binary_Literal = 1,
3587         Catalog_Name = 2,
3588         Catalog_Separator = 3,
3589         Char_Literal = 4,
3590         Column_Alias = 5,
3591         Column_Name = 6,
3592         Correlation_Name = 7,
3593         Cube_Name = 21,
3594         Cursor_Name = 8,
3595         Dimension_Name = 22,
3596         Escape_Percent_Prefix = 9,
3597         Escape_Percent_Suffix = 29,
3598         Escape_Underscore_Prefix = 10,
3599         Escape_Underscore_Suffix = 30,
3600         Hierarchy_Name = 23,
3601         Index_Name = 11,
3602         Invalid = 0,
3603         Level_Name = 24,
3604         Like_Percent = 12,
3605         Like_Underscore = 13,
3606         Member_Name = 25,
3607         Procedure_Name = 14,
3608         Property_Name = 26,
3609         Quote_Prefix = 15,
3610         Quote_Suffix = 28,
3611         Schema_Name = 16,
3612         Schema_Separator = 27,
3613         Table_Name = 17,
3614         Text_Command = 18,
3615         User_Name = 19,
3616         View_Name = 20,
3617     }
3618     public static partial class OleDbMetaDataCollectionNames
3619     {
3620         public static readonly string Catalogs;
3621         public static readonly string Collations;
3622         public static readonly string Columns;
3623         public static readonly string Indexes;
3624         public static readonly string ProcedureColumns;
3625         public static readonly string ProcedureParameters;
3626         public static readonly string Procedures;
3627         public static readonly string Tables;
3628         public static readonly string Views;
3629     }
3630     public static partial class OleDbMetaDataColumnNames
3631     {
3632         public static readonly string BooleanFalseLiteral;
3633         public static readonly string BooleanTrueLiteral;
3634         public static readonly string DateTimeDigits;
3635         public static readonly string NativeDataType;
3636     }
3637     [System.ComponentModel.TypeConverterAttribute("System.Data.OleDb.OleDbParameter.OleDbParameterConverter")]
3638     public sealed partial class OleDbParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
3639     {
OleDbParameter()3640         public OleDbParameter() { }
OleDbParameter(string name, System.Data.OleDb.OleDbType dataType)3641         public OleDbParameter(string name, System.Data.OleDb.OleDbType dataType) { }
OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size)3642         public OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size) { }
3643         [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)3644         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) { }
3645         [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)3646         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)3647         public OleDbParameter(string name, System.Data.OleDb.OleDbType dataType, int size, string srcColumn) { }
OleDbParameter(string name, object value)3648         public OleDbParameter(string name, object value) { }
3649         public override System.Data.DbType DbType { get { throw null; } set { } }
3650         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3651         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
3652         public override bool IsNullable { get { throw null; } set { } }
3653         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3654         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
3655         public System.Data.OleDb.OleDbType OleDbType { get { throw null; } set { } }
3656         public override string ParameterName { get { throw null; } set { } }
3657         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3658         public new byte Precision { get { throw null; } set { } }
3659         [System.ComponentModel.DefaultValueAttribute((byte)0)]
3660         public new byte Scale { get { throw null; } set { } }
3661         public override int Size { get { throw null; } set { } }
3662         public override string SourceColumn { get { throw null; } set { } }
3663         public override bool SourceColumnNullMapping { get { throw null; } set { } }
3664         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
3665         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
3666         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
3667         public override object Value { get { throw null; } set { } }
ResetDbType()3668         public override void ResetDbType() { }
ResetOleDbType()3669         public void ResetOleDbType() { }
System.ICloneable.Clone()3670         object System.ICloneable.Clone() { throw null; }
ToString()3671         public override string ToString() { throw null; }
3672     }
3673     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
3674     [System.ComponentModel.ListBindableAttribute(false)]
3675     public sealed partial class OleDbParameterCollection : System.Data.Common.DbParameterCollection
3676     {
OleDbParameterCollection()3677         internal OleDbParameterCollection() { }
3678         public override int Count { get { throw null; } }
3679         public override bool IsFixedSize { get { throw null; } }
3680         public override bool IsReadOnly { get { throw null; } }
3681         public override bool IsSynchronized { get { throw null; } }
3682         [System.ComponentModel.BrowsableAttribute(false)]
3683         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3684         public new System.Data.OleDb.OleDbParameter this[int index] { get { throw null; } set { } }
3685         [System.ComponentModel.BrowsableAttribute(false)]
3686         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
3687         public new System.Data.OleDb.OleDbParameter this[string parameterName] { get { throw null; } set { } }
3688         public override object SyncRoot { get { throw null; } }
Add(System.Data.OleDb.OleDbParameter value)3689         public System.Data.OleDb.OleDbParameter Add(System.Data.OleDb.OleDbParameter value) { throw null; }
3690         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)3691         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.OleDb.OleDbType oleDbType)3692         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)3693         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)3694         public System.Data.OleDb.OleDbParameter Add(string parameterName, System.Data.OleDb.OleDbType oleDbType, int size, string sourceColumn) { throw null; }
3695         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3696         [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)3697         public System.Data.OleDb.OleDbParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)3698         public override void AddRange(System.Array values) { }
AddRange(System.Data.OleDb.OleDbParameter[] values)3699         public void AddRange(System.Data.OleDb.OleDbParameter[] values) { }
AddWithValue(string parameterName, object value)3700         public System.Data.OleDb.OleDbParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()3701         public override void Clear() { }
Contains(System.Data.OleDb.OleDbParameter value)3702         public bool Contains(System.Data.OleDb.OleDbParameter value) { throw null; }
Contains(object value)3703         public override bool Contains(object value) { throw null; }
Contains(string value)3704         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)3705         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.OleDb.OleDbParameter[] array, int index)3706         public void CopyTo(System.Data.OleDb.OleDbParameter[] array, int index) { }
GetEnumerator()3707         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)3708         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)3709         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.OleDb.OleDbParameter value)3710         public int IndexOf(System.Data.OleDb.OleDbParameter value) { throw null; }
IndexOf(object value)3711         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)3712         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.OleDb.OleDbParameter value)3713         public void Insert(int index, System.Data.OleDb.OleDbParameter value) { }
Insert(int index, object value)3714         public override void Insert(int index, object value) { }
Remove(System.Data.OleDb.OleDbParameter value)3715         public void Remove(System.Data.OleDb.OleDbParameter value) { }
Remove(object value)3716         public override void Remove(object value) { }
RemoveAt(int index)3717         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)3718         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)3719         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)3720         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
3721     }
3722     [System.SerializableAttribute]
3723     public sealed partial class OleDbPermission : System.Data.Common.DBDataPermission
3724     {
3725         [System.ObsoleteAttribute("OleDbPermission() has been deprecated.  Use the OleDbPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
OleDbPermission()3726         public OleDbPermission() : base (default(System.Security.Permissions.PermissionState)) { }
OleDbPermission(System.Security.Permissions.PermissionState state)3727         public OleDbPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
3728         [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)3729         public OleDbPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
3730         [System.ComponentModel.BrowsableAttribute(false)]
3731         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3732         [System.ObsoleteAttribute("Provider property has been deprecated.  Use the Add method.  http://go.microsoft.com/fwlink/?linkid=14202")]
3733         public string Provider { get { throw null; } set { } }
Copy()3734         public override System.Security.IPermission Copy() { throw null; }
3735     }
3736     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
3737     [System.SerializableAttribute]
3738     public sealed partial class OleDbPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
3739     {
OleDbPermissionAttribute(System.Security.Permissions.SecurityAction action)3740         public OleDbPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
3741         [System.ComponentModel.BrowsableAttribute(false)]
3742         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3743         [System.ObsoleteAttribute("Provider property has been deprecated.  Use the Add method.  http://go.microsoft.com/fwlink/?linkid=14202")]
3744         public string Provider { get { throw null; } set { } }
CreatePermission()3745         public override System.Security.IPermission CreatePermission() { throw null; }
3746     }
3747     public sealed partial class OleDbRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
3748     {
OleDbRowUpdatedEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3749         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)) { }
3750         public new System.Data.OleDb.OleDbCommand Command { get { throw null; } }
3751     }
OleDbRowUpdatedEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatedEventArgs e)3752     public delegate void OleDbRowUpdatedEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatedEventArgs e);
3753     public sealed partial class OleDbRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
3754     {
OleDbRowUpdatingEventArgs(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)3755         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)) { }
3756         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
3757         public new System.Data.OleDb.OleDbCommand Command { get { throw null; } set { } }
3758     }
OleDbRowUpdatingEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatingEventArgs e)3759     public delegate void OleDbRowUpdatingEventHandler(object sender, System.Data.OleDb.OleDbRowUpdatingEventArgs e);
3760     public sealed partial class OleDbSchemaGuid
3761     {
3762         public static readonly System.Guid Assertions;
3763         public static readonly System.Guid Catalogs;
3764         public static readonly System.Guid Character_Sets;
3765         public static readonly System.Guid Check_Constraints;
3766         public static readonly System.Guid Check_Constraints_By_Table;
3767         public static readonly System.Guid Collations;
3768         public static readonly System.Guid Columns;
3769         public static readonly System.Guid Column_Domain_Usage;
3770         public static readonly System.Guid Column_Privileges;
3771         public static readonly System.Guid Constraint_Column_Usage;
3772         public static readonly System.Guid Constraint_Table_Usage;
3773         public static readonly System.Guid DbInfoKeywords;
3774         public static readonly System.Guid DbInfoLiterals;
3775         public static readonly System.Guid Foreign_Keys;
3776         public static readonly System.Guid Indexes;
3777         public static readonly System.Guid Key_Column_Usage;
3778         public static readonly System.Guid Primary_Keys;
3779         public static readonly System.Guid Procedures;
3780         public static readonly System.Guid Procedure_Columns;
3781         public static readonly System.Guid Procedure_Parameters;
3782         public static readonly System.Guid Provider_Types;
3783         public static readonly System.Guid Referential_Constraints;
3784         public static readonly System.Guid SchemaGuids;
3785         public static readonly System.Guid Schemata;
3786         public static readonly System.Guid Sql_Languages;
3787         public static readonly System.Guid Statistics;
3788         public static readonly System.Guid Tables;
3789         public static readonly System.Guid Tables_Info;
3790         public static readonly System.Guid Table_Constraints;
3791         public static readonly System.Guid Table_Privileges;
3792         public static readonly System.Guid Table_Statistics;
3793         public static readonly System.Guid Translations;
3794         public static readonly System.Guid Trustee;
3795         public static readonly System.Guid Usage_Privileges;
3796         public static readonly System.Guid Views;
3797         public static readonly System.Guid View_Column_Usage;
3798         public static readonly System.Guid View_Table_Usage;
OleDbSchemaGuid()3799         public OleDbSchemaGuid() { }
3800     }
3801     public sealed partial class OleDbTransaction : System.Data.Common.DbTransaction
3802     {
OleDbTransaction()3803         internal OleDbTransaction() { }
3804         public new System.Data.OleDb.OleDbConnection Connection { get { throw null; } }
3805         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
3806         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Begin()3807         public System.Data.OleDb.OleDbTransaction Begin() { throw null; }
Begin(System.Data.IsolationLevel isolevel)3808         public System.Data.OleDb.OleDbTransaction Begin(System.Data.IsolationLevel isolevel) { throw null; }
Commit()3809         public override void Commit() { }
Dispose(bool disposing)3810         protected override void Dispose(bool disposing) { }
Rollback()3811         public override void Rollback() { }
3812     }
3813     public enum OleDbType
3814     {
3815         BigInt = 20,
3816         Binary = 128,
3817         Boolean = 11,
3818         BSTR = 8,
3819         Char = 129,
3820         Currency = 6,
3821         Date = 7,
3822         DBDate = 133,
3823         DBTime = 134,
3824         DBTimeStamp = 135,
3825         Decimal = 14,
3826         Double = 5,
3827         Empty = 0,
3828         Error = 10,
3829         Filetime = 64,
3830         Guid = 72,
3831         IDispatch = 9,
3832         Integer = 3,
3833         IUnknown = 13,
3834         LongVarBinary = 205,
3835         LongVarChar = 201,
3836         LongVarWChar = 203,
3837         Numeric = 131,
3838         PropVariant = 138,
3839         Single = 4,
3840         SmallInt = 2,
3841         TinyInt = 16,
3842         UnsignedBigInt = 21,
3843         UnsignedInt = 19,
3844         UnsignedSmallInt = 18,
3845         UnsignedTinyInt = 17,
3846         VarBinary = 204,
3847         VarChar = 200,
3848         Variant = 12,
3849         VarNumeric = 139,
3850         VarWChar = 202,
3851         WChar = 130,
3852     }
3853 }
3854 namespace System.Data.Sql
3855 {
3856     public sealed partial class SqlDataSourceEnumerator : System.Data.Common.DbDataSourceEnumerator
3857     {
SqlDataSourceEnumerator()3858         internal SqlDataSourceEnumerator() { }
3859         public static System.Data.Sql.SqlDataSourceEnumerator Instance { get { throw null; } }
GetDataSources()3860         public override System.Data.DataTable GetDataSources() { throw null; }
3861     }
3862     public sealed partial class SqlNotificationRequest
3863     {
SqlNotificationRequest()3864         public SqlNotificationRequest() { }
SqlNotificationRequest(string userData, string options, int timeout)3865         public SqlNotificationRequest(string userData, string options, int timeout) { }
3866         public string Options { get { throw null; } set { } }
3867         public int Timeout { get { throw null; } set { } }
3868         public string UserData { get { throw null; } set { } }
3869     }
3870 }
3871 namespace System.Data.SqlClient
3872 {
3873     [System.SerializableAttribute]
3874     public enum ApplicationIntent
3875     {
3876         ReadOnly = 1,
3877         ReadWrite = 0,
3878     }
OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e)3879     public delegate void OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e);
3880     [System.SerializableAttribute]
3881     public enum PoolBlockingPeriod
3882     {
3883         AlwaysBlock = 1,
3884         Auto = 0,
3885         NeverBlock = 2,
3886     }
3887     public enum SortOrder
3888     {
3889         Ascending = 0,
3890         Descending = 1,
3891         Unspecified = -1,
3892     }
3893     public enum SqlAuthenticationMethod
3894     {
3895         ActiveDirectoryIntegrated = 3,
3896         ActiveDirectoryPassword = 2,
3897         NotSpecified = 0,
3898         SqlPassword = 1,
3899     }
3900     public sealed partial class SqlBulkCopy : System.IDisposable
3901     {
SqlBulkCopy(System.Data.SqlClient.SqlConnection connection)3902         public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection) { }
SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction)3903         public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction) { }
SqlBulkCopy(string connectionString)3904         public SqlBulkCopy(string connectionString) { }
SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions)3905         public SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions) { }
3906         public int BatchSize { get { throw null; } set { } }
3907         public int BulkCopyTimeout { get { throw null; } set { } }
3908         public System.Data.SqlClient.SqlBulkCopyColumnMappingCollection ColumnMappings { get { throw null; } }
3909         public string DestinationTableName { get { throw null; } set { } }
3910         public bool EnableStreaming { get { throw null; } set { } }
3911         public int NotifyAfter { get { throw null; } set { } }
3912         public event System.Data.SqlClient.SqlRowsCopiedEventHandler SqlRowsCopied { add { } remove { } }
Close()3913         public void Close() { }
System.IDisposable.Dispose()3914         void System.IDisposable.Dispose() { }
WriteToServer(System.Data.Common.DbDataReader reader)3915         public void WriteToServer(System.Data.Common.DbDataReader reader) { }
WriteToServer(System.Data.DataRow[] rows)3916         public void WriteToServer(System.Data.DataRow[] rows) { }
WriteToServer(System.Data.DataTable table)3917         public void WriteToServer(System.Data.DataTable table) { }
WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState)3918         public void WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState) { }
WriteToServer(System.Data.IDataReader reader)3919         public void WriteToServer(System.Data.IDataReader reader) { }
WriteToServerAsync(System.Data.Common.DbDataReader reader)3920         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader) { throw null; }
WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken)3921         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataRow[] rows)3922         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows) { throw null; }
WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken)3923         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.DataTable table)3924         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table) { throw null; }
WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState)3925         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)3926         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)3927         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Threading.CancellationToken cancellationToken) { throw null; }
WriteToServerAsync(System.Data.IDataReader reader)3928         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader) { throw null; }
WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken)3929         public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken) { throw null; }
3930     }
3931     public sealed partial class SqlBulkCopyColumnMapping
3932     {
SqlBulkCopyColumnMapping()3933         public SqlBulkCopyColumnMapping() { }
SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal)3934         public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal) { }
SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn)3935         public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn) { }
SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal)3936         public SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal) { }
SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn)3937         public SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn) { }
3938         public string DestinationColumn { get { throw null; } set { } }
3939         public int DestinationOrdinal { get { throw null; } set { } }
3940         public string SourceColumn { get { throw null; } set { } }
3941         public int SourceOrdinal { get { throw null; } set { } }
3942     }
3943     public sealed partial class SqlBulkCopyColumnMappingCollection : System.Collections.CollectionBase
3944     {
SqlBulkCopyColumnMappingCollection()3945         internal SqlBulkCopyColumnMappingCollection() { }
3946         public System.Data.SqlClient.SqlBulkCopyColumnMapping this[int index] { get { throw null; } }
Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping)3947         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping) { throw null; }
Add(int sourceColumnIndex, int destinationColumnIndex)3948         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, int destinationColumnIndex) { throw null; }
Add(int sourceColumnIndex, string destinationColumn)3949         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, string destinationColumn) { throw null; }
Add(string sourceColumn, int destinationColumnIndex)3950         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, int destinationColumnIndex) { throw null; }
Add(string sourceColumn, string destinationColumn)3951         public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, string destinationColumn) { throw null; }
Clear()3952         public new void Clear() { }
Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value)3953         public bool Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw null; }
CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index)3954         public void CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index) { }
IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value)3955         public int IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw null; }
Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value)3956         public void Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value) { }
Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value)3957         public void Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { }
RemoveAt(int index)3958         public new void RemoveAt(int index) { }
3959     }
3960     [System.FlagsAttribute]
3961     public enum SqlBulkCopyOptions
3962     {
3963         AllowEncryptedValueModifications = 64,
3964         CheckConstraints = 2,
3965         Default = 0,
3966         FireTriggers = 16,
3967         KeepIdentity = 1,
3968         KeepNulls = 8,
3969         TableLock = 4,
3970         UseInternalTransaction = 32,
3971     }
3972     public sealed partial class SqlClientFactory : System.Data.Common.DbProviderFactory, System.IServiceProvider
3973     {
SqlClientFactory()3974         internal SqlClientFactory() { }
3975         public static readonly System.Data.SqlClient.SqlClientFactory Instance;
3976         public override bool CanCreateDataSourceEnumerator { get { throw null; } }
CreateCommand()3977         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()3978         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()3979         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()3980         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()3981         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateDataSourceEnumerator()3982         public override System.Data.Common.DbDataSourceEnumerator CreateDataSourceEnumerator() { throw null; }
CreateParameter()3983         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)3984         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
System.IServiceProvider.GetService(System.Type serviceType)3985         object System.IServiceProvider.GetService(System.Type serviceType) { throw null; }
3986     }
3987     public static partial class SqlClientMetaDataCollectionNames
3988     {
3989         public static readonly string Columns;
3990         public static readonly string Databases;
3991         public static readonly string ForeignKeys;
3992         public static readonly string IndexColumns;
3993         public static readonly string Indexes;
3994         public static readonly string Parameters;
3995         public static readonly string ProcedureColumns;
3996         public static readonly string Procedures;
3997         public static readonly string Tables;
3998         public static readonly string UserDefinedTypes;
3999         public static readonly string Users;
4000         public static readonly string ViewColumns;
4001         public static readonly string Views;
4002     }
4003     [System.SerializableAttribute]
4004     public sealed partial class SqlClientPermission : System.Data.Common.DBDataPermission
4005     {
4006         [System.ObsoleteAttribute("SqlClientPermission() has been deprecated.  Use the SqlClientPermission(PermissionState.None) constructor.  http://go.microsoft.com/fwlink/?linkid=14202", true)]
SqlClientPermission()4007         public SqlClientPermission() : base (default(System.Security.Permissions.PermissionState)) { }
SqlClientPermission(System.Security.Permissions.PermissionState state)4008         public SqlClientPermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { }
4009         [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)4010         public SqlClientPermission(System.Security.Permissions.PermissionState state, bool allowBlankPassword) : base (default(System.Security.Permissions.PermissionState)) { }
Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior)4011         public override void Add(string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior) { }
Copy()4012         public override System.Security.IPermission Copy() { throw null; }
4013     }
4014     [System.AttributeUsageAttribute((System.AttributeTargets)(109), AllowMultiple=true, Inherited=false)]
4015     [System.SerializableAttribute]
4016     public sealed partial class SqlClientPermissionAttribute : System.Data.Common.DBDataPermissionAttribute
4017     {
SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction action)4018         public SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
CreatePermission()4019         public override System.Security.IPermission CreatePermission() { throw null; }
4020     }
4021     public partial class SqlColumnEncryptionCertificateStoreProvider : System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider
4022     {
4023         public const string ProviderName = "MSSQL_CERTIFICATE_STORE";
SqlColumnEncryptionCertificateStoreProvider()4024         public SqlColumnEncryptionCertificateStoreProvider() { }
DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)4025         public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey) { throw null; }
EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)4026         public override byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey) { throw null; }
4027     }
4028     public partial class SqlColumnEncryptionCngProvider : System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider
4029     {
4030         public const string ProviderName = "MSSQL_CNG_STORE";
SqlColumnEncryptionCngProvider()4031         public SqlColumnEncryptionCngProvider() { }
DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)4032         public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey) { throw null; }
EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)4033         public override byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey) { throw null; }
4034     }
4035     public partial class SqlColumnEncryptionCspProvider : System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider
4036     {
4037         public const string ProviderName = "MSSQL_CSP_PROVIDER";
SqlColumnEncryptionCspProvider()4038         public SqlColumnEncryptionCspProvider() { }
DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)4039         public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey) { throw null; }
EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)4040         public override byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey) { throw null; }
4041     }
4042     public abstract partial class SqlColumnEncryptionKeyStoreProvider
4043     {
SqlColumnEncryptionKeyStoreProvider()4044         protected SqlColumnEncryptionKeyStoreProvider() { }
DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)4045         public abstract byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey);
EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)4046         public abstract byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey);
4047     }
4048     [System.ComponentModel.DefaultEventAttribute("RecordsAffected")]
4049     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.SqlCommandDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4050     [System.ComponentModel.ToolboxItemAttribute(true)]
4051     public sealed partial class SqlCommand : System.Data.Common.DbCommand, System.ICloneable
4052     {
SqlCommand()4053         public SqlCommand() { }
SqlCommand(string cmdText)4054         public SqlCommand(string cmdText) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection)4055         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection) { }
SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction)4056         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)4057         public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction, System.Data.SqlClient.SqlCommandColumnEncryptionSetting columnEncryptionSetting) { }
4058         [System.ComponentModel.BrowsableAttribute(false)]
4059         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4060         public System.Data.SqlClient.SqlCommandColumnEncryptionSetting ColumnEncryptionSetting { get { throw null; } }
4061         [System.ComponentModel.DefaultValueAttribute("")]
4062         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.SQL.Design.SqlCommandTextEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4063         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4064         public override string CommandText { get { throw null; } set { } }
4065         public override int CommandTimeout { get { throw null; } set { } }
4066         [System.ComponentModel.DefaultValueAttribute((System.Data.CommandType)(1))]
4067         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4068         public override System.Data.CommandType CommandType { get { throw null; } set { } }
4069         [System.ComponentModel.DefaultValueAttribute(null)]
4070         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DbConnectionEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4071         public new System.Data.SqlClient.SqlConnection Connection { get { throw null; } set { } }
4072         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
4073         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
4074         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
4075         [System.ComponentModel.BrowsableAttribute(false)]
4076         [System.ComponentModel.DefaultValueAttribute(true)]
4077         [System.ComponentModel.DesignOnlyAttribute(true)]
4078         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4079         public override bool DesignTimeVisible { get { throw null; } set { } }
4080         [System.ComponentModel.BrowsableAttribute(false)]
4081         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4082         public System.Data.Sql.SqlNotificationRequest Notification { get { throw null; } set { } }
4083         [System.ComponentModel.DefaultValueAttribute(true)]
4084         public bool NotificationAutoEnlist { get { throw null; } set { } }
4085         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
4086         public new System.Data.SqlClient.SqlParameterCollection Parameters { get { throw null; } }
4087         [System.ComponentModel.BrowsableAttribute(false)]
4088         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4089         public new System.Data.SqlClient.SqlTransaction Transaction { get { throw null; } set { } }
4090         [System.ComponentModel.DefaultValueAttribute((System.Data.UpdateRowSource)(3))]
4091         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
4092         public event System.Data.StatementCompletedEventHandler StatementCompleted { add { } remove { } }
4093         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteNonQuery()4094         public System.IAsyncResult BeginExecuteNonQuery() { throw null; }
4095         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject)4096         public System.IAsyncResult BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject) { throw null; }
4097         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader()4098         public System.IAsyncResult BeginExecuteReader() { throw null; }
4099         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader(System.AsyncCallback callback, object stateObject)4100         public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject) { throw null; }
4101         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior)4102         public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior) { throw null; }
4103         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteReader(System.Data.CommandBehavior behavior)4104         public System.IAsyncResult BeginExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
4105         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteXmlReader()4106         public System.IAsyncResult BeginExecuteXmlReader() { throw null; }
4107         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject)4108         public System.IAsyncResult BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject) { throw null; }
Cancel()4109         public override void Cancel() { }
Clone()4110         public System.Data.SqlClient.SqlCommand Clone() { throw null; }
CreateDbParameter()4111         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()4112         public new System.Data.SqlClient.SqlParameter CreateParameter() { throw null; }
Dispose(bool disposing)4113         protected override void Dispose(bool disposing) { }
EndExecuteNonQuery(System.IAsyncResult asyncResult)4114         public int EndExecuteNonQuery(System.IAsyncResult asyncResult) { throw null; }
EndExecuteReader(System.IAsyncResult asyncResult)4115         public System.Data.SqlClient.SqlDataReader EndExecuteReader(System.IAsyncResult asyncResult) { throw null; }
EndExecuteXmlReader(System.IAsyncResult asyncResult)4116         public System.Xml.XmlReader EndExecuteXmlReader(System.IAsyncResult asyncResult) { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)4117         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken)4118         protected override System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteNonQuery()4119         public override int ExecuteNonQuery() { throw null; }
ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken)4120         public override System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteReader()4121         public new System.Data.SqlClient.SqlDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)4122         public new System.Data.SqlClient.SqlDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteReaderAsync()4123         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync() { throw null; }
ExecuteReaderAsync(System.Data.CommandBehavior behavior)4124         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)4125         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)4126         public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteScalar()4127         public override object ExecuteScalar() { throw null; }
ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken)4128         public override System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
ExecuteXmlReader()4129         public System.Xml.XmlReader ExecuteXmlReader() { throw null; }
ExecuteXmlReaderAsync()4130         public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync() { throw null; }
ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken)4131         public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Prepare()4132         public override void Prepare() { }
ResetCommandTimeout()4133         public void ResetCommandTimeout() { }
System.ICloneable.Clone()4134         object System.ICloneable.Clone() { throw null; }
4135     }
4136     public sealed partial class SqlCommandBuilder : System.Data.Common.DbCommandBuilder
4137     {
SqlCommandBuilder()4138         public SqlCommandBuilder() { }
SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter)4139         public SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter) { }
4140         [System.ComponentModel.BrowsableAttribute(false)]
4141         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4142         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4143         public override System.Data.Common.CatalogLocation CatalogLocation { get { throw null; } set { } }
4144         [System.ComponentModel.BrowsableAttribute(false)]
4145         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4146         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4147         public override string CatalogSeparator { get { throw null; } set { } }
4148         [System.ComponentModel.DefaultValueAttribute(null)]
4149         public new System.Data.SqlClient.SqlDataAdapter DataAdapter { get { throw null; } set { } }
4150         [System.ComponentModel.BrowsableAttribute(false)]
4151         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4152         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4153         public override string QuotePrefix { get { throw null; } set { } }
4154         [System.ComponentModel.BrowsableAttribute(false)]
4155         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4156         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4157         public override string QuoteSuffix { get { throw null; } set { } }
4158         [System.ComponentModel.BrowsableAttribute(false)]
4159         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4160         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4161         public override string SchemaSeparator { get { throw null; } set { } }
ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause)4162         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)4163         public static void DeriveParameters(System.Data.SqlClient.SqlCommand command) { }
GetDeleteCommand()4164         public new System.Data.SqlClient.SqlCommand GetDeleteCommand() { throw null; }
GetDeleteCommand(bool useColumnsForParameterNames)4165         public new System.Data.SqlClient.SqlCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw null; }
GetInsertCommand()4166         public new System.Data.SqlClient.SqlCommand GetInsertCommand() { throw null; }
GetInsertCommand(bool useColumnsForParameterNames)4167         public new System.Data.SqlClient.SqlCommand GetInsertCommand(bool useColumnsForParameterNames) { throw null; }
GetParameterName(int parameterOrdinal)4168         protected override string GetParameterName(int parameterOrdinal) { throw null; }
GetParameterName(string parameterName)4169         protected override string GetParameterName(string parameterName) { throw null; }
GetParameterPlaceholder(int parameterOrdinal)4170         protected override string GetParameterPlaceholder(int parameterOrdinal) { throw null; }
GetSchemaTable(System.Data.Common.DbCommand srcCommand)4171         protected override System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand srcCommand) { throw null; }
GetUpdateCommand()4172         public new System.Data.SqlClient.SqlCommand GetUpdateCommand() { throw null; }
GetUpdateCommand(bool useColumnsForParameterNames)4173         public new System.Data.SqlClient.SqlCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw null; }
InitializeCommand(System.Data.Common.DbCommand command)4174         protected override System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw null; }
QuoteIdentifier(string unquotedIdentifier)4175         public override string QuoteIdentifier(string unquotedIdentifier) { throw null; }
SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter)4176         protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { }
UnquoteIdentifier(string quotedIdentifier)4177         public override string UnquoteIdentifier(string quotedIdentifier) { throw null; }
4178     }
4179     public enum SqlCommandColumnEncryptionSetting
4180     {
4181         Disabled = 3,
4182         Enabled = 1,
4183         ResultSetOnly = 2,
4184         UseConnectionSetting = 0,
4185     }
4186     [System.ComponentModel.DefaultEventAttribute("InfoMessage")]
4187     public sealed partial class SqlConnection : System.Data.Common.DbConnection, System.ICloneable
4188     {
SqlConnection()4189         public SqlConnection() { }
SqlConnection(string connectionString)4190         public SqlConnection(string connectionString) { }
SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential)4191         public SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential) { }
4192         [System.ComponentModel.BrowsableAttribute(false)]
4193         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4194         public string AccessToken { get { throw null; } set { } }
4195         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4196         public System.Guid ClientConnectionId { get { throw null; } }
4197         [System.ComponentModel.DefaultValueAttribute(null)]
4198         public static System.TimeSpan ColumnEncryptionKeyCacheTtl { get { throw null; } set { } }
4199         [System.ComponentModel.DefaultValueAttribute(null)]
4200         public static bool ColumnEncryptionQueryMetadataCacheEnabled { get { throw null; } set { } }
4201         [System.ComponentModel.DefaultValueAttribute(null)]
4202         public static System.Collections.Generic.IDictionary<string, System.Collections.Generic.IList<string>> ColumnEncryptionTrustedMasterKeyPaths { get { throw null; } }
4203         [System.ComponentModel.DefaultValueAttribute("")]
4204         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.SQL.Design.SqlConnectionStringEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4205         [System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
4206         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4207         [System.ComponentModel.SettingsBindableAttribute(true)]
4208         public override string ConnectionString { get { throw null; } set { } }
4209         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4210         public override int ConnectionTimeout { get { throw null; } }
4211         [System.ComponentModel.BrowsableAttribute(false)]
4212         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4213         public System.Data.SqlClient.SqlCredential Credential { get { throw null; } set { } }
4214         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4215         public override string Database { get { throw null; } }
4216         [System.ComponentModel.BrowsableAttribute(true)]
4217         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4218         public override string DataSource { get { throw null; } }
4219         protected override System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
4220         public bool FireInfoMessageEventOnUserErrors { get { throw null; } set { } }
4221         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4222         public int PacketSize { get { throw null; } }
4223         [System.ComponentModel.BrowsableAttribute(false)]
4224         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4225         public override string ServerVersion { get { throw null; } }
4226         [System.ComponentModel.BrowsableAttribute(false)]
4227         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4228         public override System.Data.ConnectionState State { get { throw null; } }
4229         [System.ComponentModel.DefaultValueAttribute(false)]
4230         public bool StatisticsEnabled { get { throw null; } set { } }
4231         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4232         public string WorkstationId { get { throw null; } }
4233         public event System.Data.SqlClient.SqlInfoMessageEventHandler InfoMessage { add { } remove { } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)4234         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()4235         public new System.Data.SqlClient.SqlTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel iso)4236         public new System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso) { throw null; }
BeginTransaction(System.Data.IsolationLevel iso, string transactionName)4237         public System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso, string transactionName) { throw null; }
BeginTransaction(string transactionName)4238         public System.Data.SqlClient.SqlTransaction BeginTransaction(string transactionName) { throw null; }
ChangeDatabase(string database)4239         public override void ChangeDatabase(string database) { }
ChangePassword(string connectionString, System.Data.SqlClient.SqlCredential credential, System.Security.SecureString newSecurePassword)4240         public static void ChangePassword(string connectionString, System.Data.SqlClient.SqlCredential credential, System.Security.SecureString newSecurePassword) { }
ChangePassword(string connectionString, string newPassword)4241         public static void ChangePassword(string connectionString, string newPassword) { }
ClearAllPools()4242         public static void ClearAllPools() { }
ClearPool(System.Data.SqlClient.SqlConnection connection)4243         public static void ClearPool(System.Data.SqlClient.SqlConnection connection) { }
Close()4244         public override void Close() { }
CreateCommand()4245         public new System.Data.SqlClient.SqlCommand CreateCommand() { throw null; }
CreateDbCommand()4246         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)4247         protected override void Dispose(bool disposing) { }
EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction)4248         public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) { }
EnlistTransaction(System.Transactions.Transaction transaction)4249         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
GetSchema()4250         public override System.Data.DataTable GetSchema() { throw null; }
GetSchema(string collectionName)4251         public override System.Data.DataTable GetSchema(string collectionName) { throw null; }
GetSchema(string collectionName, string[] restrictionValues)4252         public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw null; }
Open()4253         public override void Open() { }
OpenAsync(System.Threading.CancellationToken cancellationToken)4254         public override System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
RegisterColumnEncryptionKeyStoreProviders(System.Collections.Generic.IDictionary<string, System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider> customProviders)4255         public static void RegisterColumnEncryptionKeyStoreProviders(System.Collections.Generic.IDictionary<string, System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider> customProviders) { }
ResetStatistics()4256         public void ResetStatistics() { }
RetrieveStatistics()4257         public System.Collections.IDictionary RetrieveStatistics() { throw null; }
System.ICloneable.Clone()4258         object System.ICloneable.Clone() { throw null; }
4259     }
4260     public enum SqlConnectionColumnEncryptionSetting
4261     {
4262         Disabled = 0,
4263         Enabled = 1,
4264     }
4265     [System.ComponentModel.DefaultPropertyAttribute("DataSource")]
4266     [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlConnectionStringBuilderConverter")]
4267     public sealed partial class SqlConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
4268     {
SqlConnectionStringBuilder()4269         public SqlConnectionStringBuilder() { }
SqlConnectionStringBuilder(string connectionString)4270         public SqlConnectionStringBuilder(string connectionString) { }
4271         [System.ComponentModel.DisplayNameAttribute("ApplicationIntent")]
4272         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4273         public System.Data.SqlClient.ApplicationIntent ApplicationIntent { get { throw null; } set { } }
4274         [System.ComponentModel.DisplayNameAttribute("Application Name")]
4275         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4276         public string ApplicationName { get { throw null; } set { } }
4277         [System.ComponentModel.DisplayNameAttribute("Asynchronous Processing")]
4278         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4279         public bool AsynchronousProcessing { get { throw null; } set { } }
4280         [System.ComponentModel.DisplayNameAttribute("AttachDbFilename")]
4281         [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")]
4282         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4283         public string AttachDBFilename { get { throw null; } set { } }
4284         [System.ComponentModel.DisplayNameAttribute("Authentication")]
4285         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4286         public System.Data.SqlClient.SqlAuthenticationMethod Authentication { get { throw null; } set { } }
4287         [System.ComponentModel.DisplayNameAttribute("Column Encryption Setting")]
4288         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4289         public System.Data.SqlClient.SqlConnectionColumnEncryptionSetting ColumnEncryptionSetting { get { throw null; } set { } }
4290         [System.ComponentModel.BrowsableAttribute(false)]
4291         [System.ComponentModel.DisplayNameAttribute("Connection Reset")]
4292         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4293         [System.ObsoleteAttribute("ConnectionReset has been deprecated.  SqlConnection will ignore the 'connection reset' keyword and always reset the connection")]
4294         public bool ConnectionReset { get { throw null; } set { } }
4295         [System.ComponentModel.DisplayNameAttribute("ConnectRetryCount")]
4296         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4297         public int ConnectRetryCount { get { throw null; } set { } }
4298         [System.ComponentModel.DisplayNameAttribute("ConnectRetryInterval")]
4299         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4300         public int ConnectRetryInterval { get { throw null; } set { } }
4301         [System.ComponentModel.DisplayNameAttribute("Connect Timeout")]
4302         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4303         public int ConnectTimeout { get { throw null; } set { } }
4304         [System.ComponentModel.DisplayNameAttribute("Context Connection")]
4305         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4306         public bool ContextConnection { get { throw null; } set { } }
4307         [System.ComponentModel.DisplayNameAttribute("Current Language")]
4308         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4309         public string CurrentLanguage { get { throw null; } set { } }
4310         [System.ComponentModel.DisplayNameAttribute("Data Source")]
4311         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4312         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlDataSourceConverter")]
4313         public string DataSource { get { throw null; } set { } }
4314         [System.ComponentModel.DisplayNameAttribute("Encrypt")]
4315         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4316         public bool Encrypt { get { throw null; } set { } }
4317         [System.ComponentModel.DisplayNameAttribute("Enlist")]
4318         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4319         public bool Enlist { get { throw null; } set { } }
4320         [System.ComponentModel.DisplayNameAttribute("Failover Partner")]
4321         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4322         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlDataSourceConverter")]
4323         public string FailoverPartner { get { throw null; } set { } }
4324         [System.ComponentModel.DisplayNameAttribute("Initial Catalog")]
4325         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4326         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.SqlInitialCatalogConverter")]
4327         public string InitialCatalog { get { throw null; } set { } }
4328         [System.ComponentModel.DisplayNameAttribute("Integrated Security")]
4329         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4330         public bool IntegratedSecurity { get { throw null; } set { } }
4331         public override bool IsFixedSize { get { throw null; } }
4332         public override object this[string keyword] { get { throw null; } set { } }
4333         public override System.Collections.ICollection Keys { get { throw null; } }
4334         [System.ComponentModel.DisplayNameAttribute("Load Balance Timeout")]
4335         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4336         public int LoadBalanceTimeout { get { throw null; } set { } }
4337         [System.ComponentModel.DisplayNameAttribute("Max Pool Size")]
4338         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4339         public int MaxPoolSize { get { throw null; } set { } }
4340         [System.ComponentModel.DisplayNameAttribute("Min Pool Size")]
4341         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4342         public int MinPoolSize { get { throw null; } set { } }
4343         [System.ComponentModel.DisplayNameAttribute("MultipleActiveResultSets")]
4344         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4345         public bool MultipleActiveResultSets { get { throw null; } set { } }
4346         [System.ComponentModel.DisplayNameAttribute("MultiSubnetFailover")]
4347         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4348         public bool MultiSubnetFailover { get { throw null; } set { } }
4349         [System.ComponentModel.DisplayNameAttribute("Network Library")]
4350         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4351         [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlConnectionStringBuilder.NetworkLibraryConverter")]
4352         public string NetworkLibrary { get { throw null; } set { } }
4353         [System.ComponentModel.DisplayNameAttribute("Packet Size")]
4354         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4355         public int PacketSize { get { throw null; } set { } }
4356         [System.ComponentModel.DisplayNameAttribute("Password")]
4357         [System.ComponentModel.PasswordPropertyTextAttribute(true)]
4358         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4359         public string Password { get { throw null; } set { } }
4360         [System.ComponentModel.DisplayNameAttribute("Persist Security Info")]
4361         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4362         public bool PersistSecurityInfo { get { throw null; } set { } }
4363         [System.ComponentModel.DisplayNameAttribute("PoolBlockingPeriod")]
4364         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4365         public System.Data.SqlClient.PoolBlockingPeriod PoolBlockingPeriod { get { throw null; } set { } }
4366         [System.ComponentModel.DisplayNameAttribute("Pooling")]
4367         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4368         public bool Pooling { get { throw null; } set { } }
4369         [System.ComponentModel.DisplayNameAttribute("Replication")]
4370         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4371         public bool Replication { get { throw null; } set { } }
4372         [System.ComponentModel.DisplayNameAttribute("Transaction Binding")]
4373         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4374         public string TransactionBinding { get { throw null; } set { } }
4375         [System.ComponentModel.DisplayNameAttribute("TransparentNetworkIPResolution")]
4376         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4377         public bool TransparentNetworkIPResolution { get { throw null; } set { } }
4378         [System.ComponentModel.DisplayNameAttribute("TrustServerCertificate")]
4379         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4380         public bool TrustServerCertificate { get { throw null; } set { } }
4381         [System.ComponentModel.DisplayNameAttribute("Type System Version")]
4382         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4383         public string TypeSystemVersion { get { throw null; } set { } }
4384         [System.ComponentModel.DisplayNameAttribute("User ID")]
4385         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4386         public string UserID { get { throw null; } set { } }
4387         [System.ComponentModel.DisplayNameAttribute("User Instance")]
4388         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4389         public bool UserInstance { get { throw null; } set { } }
4390         public override System.Collections.ICollection Values { get { throw null; } }
4391         [System.ComponentModel.DisplayNameAttribute("Workstation ID")]
4392         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4393         public string WorkstationID { get { throw null; } set { } }
Clear()4394         public override void Clear() { }
ContainsKey(string keyword)4395         public override bool ContainsKey(string keyword) { throw null; }
GetProperties(System.Collections.Hashtable propertyDescriptors)4396         protected override void GetProperties(System.Collections.Hashtable propertyDescriptors) { }
Remove(string keyword)4397         public override bool Remove(string keyword) { throw null; }
ShouldSerialize(string keyword)4398         public override bool ShouldSerialize(string keyword) { throw null; }
TryGetValue(string keyword, out object value)4399         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
4400     }
4401     public sealed partial class SqlCredential
4402     {
SqlCredential(string userId, System.Security.SecureString password)4403         public SqlCredential(string userId, System.Security.SecureString password) { }
4404         public System.Security.SecureString Password { get { throw null; } }
4405         public string UserId { get { throw null; } }
4406     }
4407     [System.ComponentModel.DefaultEventAttribute("RowUpdated")]
4408     [System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.Data.VS.SqlDataAdapterDesigner, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4409     [System.ComponentModel.ToolboxItemAttribute("Microsoft.VSDesigner.Data.VS.SqlDataAdapterToolboxItem, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4410     public sealed partial class SqlDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
4411     {
SqlDataAdapter()4412         public SqlDataAdapter() { }
SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand)4413         public SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand) { }
SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection)4414         public SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection) { }
SqlDataAdapter(string selectCommandText, string selectConnectionString)4415         public SqlDataAdapter(string selectCommandText, string selectConnectionString) { }
4416         [System.ComponentModel.DefaultValueAttribute(null)]
4417         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4418         public new System.Data.SqlClient.SqlCommand DeleteCommand { get { throw null; } set { } }
4419         [System.ComponentModel.DefaultValueAttribute(null)]
4420         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4421         public new System.Data.SqlClient.SqlCommand InsertCommand { get { throw null; } set { } }
4422         [System.ComponentModel.DefaultValueAttribute(null)]
4423         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4424         public new System.Data.SqlClient.SqlCommand SelectCommand { get { throw null; } set { } }
4425         System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw null; } set { } }
4426         System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw null; } set { } }
4427         System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw null; } set { } }
4428         System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw null; } set { } }
4429         public override int UpdateBatchSize { get { throw null; } set { } }
4430         [System.ComponentModel.DefaultValueAttribute(null)]
4431         [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBCommandEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4432         public new System.Data.SqlClient.SqlCommand UpdateCommand { get { throw null; } set { } }
4433         public event System.Data.SqlClient.SqlRowUpdatedEventHandler RowUpdated { add { } remove { } }
4434         public event System.Data.SqlClient.SqlRowUpdatingEventHandler RowUpdating { add { } remove { } }
AddToBatch(System.Data.IDbCommand command)4435         protected override int AddToBatch(System.Data.IDbCommand command) { throw null; }
ClearBatch()4436         protected override void ClearBatch() { }
CreateRowUpdatedEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)4437         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)4438         protected override System.Data.Common.RowUpdatingEventArgs CreateRowUpdatingEvent(System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) { throw null; }
ExecuteBatch()4439         protected override int ExecuteBatch() { throw null; }
GetBatchedParameter(int commandIdentifier, int parameterIndex)4440         protected override System.Data.IDataParameter GetBatchedParameter(int commandIdentifier, int parameterIndex) { throw null; }
GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error)4441         protected override bool GetBatchedRecordsAffected(int commandIdentifier, out int recordsAffected, out System.Exception error) { recordsAffected = default(int); error = default(System.Exception); throw null; }
InitializeBatching()4442         protected override void InitializeBatching() { }
OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value)4443         protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { }
OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)4444         protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { }
System.ICloneable.Clone()4445         object System.ICloneable.Clone() { throw null; }
TerminateBatching()4446         protected override void TerminateBatching() { }
4447     }
4448     public partial class SqlDataReader : System.Data.Common.DbDataReader, System.Data.IDataReader, System.Data.IDataRecord, System.IDisposable
4449     {
SqlDataReader()4450         internal SqlDataReader() { }
4451         protected System.Data.SqlClient.SqlConnection Connection { get { throw null; } }
4452         public override int Depth { get { throw null; } }
4453         public override int FieldCount { get { throw null; } }
4454         public override bool HasRows { get { throw null; } }
4455         public override bool IsClosed { get { throw null; } }
4456         public override object this[int i] { get { throw null; } }
4457         public override object this[string name] { get { throw null; } }
4458         public override int RecordsAffected { get { throw null; } }
4459         public override int VisibleFieldCount { get { throw null; } }
Close()4460         public override void Close() { }
GetBoolean(int i)4461         public override bool GetBoolean(int i) { throw null; }
GetByte(int i)4462         public override byte GetByte(int i) { throw null; }
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)4463         public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
4464         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetChar(int i)4465         public override char GetChar(int i) { throw null; }
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)4466         public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataTypeName(int i)4467         public override string GetDataTypeName(int i) { throw null; }
GetDateTime(int i)4468         public override System.DateTime GetDateTime(int i) { throw null; }
GetDateTimeOffset(int i)4469         public virtual System.DateTimeOffset GetDateTimeOffset(int i) { throw null; }
GetDecimal(int i)4470         public override decimal GetDecimal(int i) { throw null; }
GetDouble(int i)4471         public override double GetDouble(int i) { throw null; }
GetEnumerator()4472         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int i)4473         public override System.Type GetFieldType(int i) { throw null; }
GetFieldValueAsync(int i, System.Threading.CancellationToken cancellationToken)4474         public override System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int i, System.Threading.CancellationToken cancellationToken) { throw null; }
GetFieldValue(int i)4475         public override T GetFieldValue<T>(int i) { throw null; }
GetFloat(int i)4476         public override float GetFloat(int i) { throw null; }
GetGuid(int i)4477         public override System.Guid GetGuid(int i) { throw null; }
GetInt16(int i)4478         public override short GetInt16(int i) { throw null; }
GetInt32(int i)4479         public override int GetInt32(int i) { throw null; }
GetInt64(int i)4480         public override long GetInt64(int i) { throw null; }
GetName(int i)4481         public override string GetName(int i) { throw null; }
GetOrdinal(string name)4482         public override int GetOrdinal(string name) { throw null; }
GetProviderSpecificFieldType(int i)4483         public override System.Type GetProviderSpecificFieldType(int i) { throw null; }
GetProviderSpecificValue(int i)4484         public override object GetProviderSpecificValue(int i) { throw null; }
GetProviderSpecificValues(object[] values)4485         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()4486         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetSqlBinary(int i)4487         public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int i) { throw null; }
GetSqlBoolean(int i)4488         public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int i) { throw null; }
GetSqlByte(int i)4489         public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int i) { throw null; }
GetSqlBytes(int i)4490         public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int i) { throw null; }
GetSqlChars(int i)4491         public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int i) { throw null; }
GetSqlDateTime(int i)4492         public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int i) { throw null; }
GetSqlDecimal(int i)4493         public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int i) { throw null; }
GetSqlDouble(int i)4494         public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int i) { throw null; }
GetSqlGuid(int i)4495         public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int i) { throw null; }
GetSqlInt16(int i)4496         public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int i) { throw null; }
GetSqlInt32(int i)4497         public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int i) { throw null; }
GetSqlInt64(int i)4498         public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int i) { throw null; }
GetSqlMoney(int i)4499         public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int i) { throw null; }
GetSqlSingle(int i)4500         public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int i) { throw null; }
GetSqlString(int i)4501         public virtual System.Data.SqlTypes.SqlString GetSqlString(int i) { throw null; }
GetSqlValue(int i)4502         public virtual object GetSqlValue(int i) { throw null; }
GetSqlValues(object[] values)4503         public virtual int GetSqlValues(object[] values) { throw null; }
GetSqlXml(int i)4504         public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int i) { throw null; }
GetStream(int i)4505         public override System.IO.Stream GetStream(int i) { throw null; }
GetString(int i)4506         public override string GetString(int i) { throw null; }
GetTextReader(int i)4507         public override System.IO.TextReader GetTextReader(int i) { throw null; }
GetTimeSpan(int i)4508         public virtual System.TimeSpan GetTimeSpan(int i) { throw null; }
GetValue(int i)4509         public override object GetValue(int i) { throw null; }
GetValues(object[] values)4510         public override int GetValues(object[] values) { throw null; }
GetXmlReader(int i)4511         public virtual System.Xml.XmlReader GetXmlReader(int i) { throw null; }
IsCommandBehavior(System.Data.CommandBehavior condition)4512         protected internal bool IsCommandBehavior(System.Data.CommandBehavior condition) { throw null; }
IsDBNull(int i)4513         public override bool IsDBNull(int i) { throw null; }
IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken)4514         public override System.Threading.Tasks.Task<bool> IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken) { throw null; }
NextResult()4515         public override bool NextResult() { throw null; }
NextResultAsync(System.Threading.CancellationToken cancellationToken)4516         public override System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
Read()4517         public override bool Read() { throw null; }
ReadAsync(System.Threading.CancellationToken cancellationToken)4518         public override System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
4519         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
System.Data.IDataRecord.GetData(int i)4520         System.Data.IDataReader System.Data.IDataRecord.GetData(int i) { throw null; }
4521     }
4522     [System.Runtime.InteropServices.ClassInterfaceAttribute((System.Runtime.InteropServices.ClassInterfaceType)(0))]
4523     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
4524     [System.Runtime.InteropServices.GuidAttribute("afef65ad-4577-447a-a148-83acadd3d4b9")]
4525     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
4526     public sealed partial class SQLDebugging
4527     {
SQLDebugging()4528         public SQLDebugging() { }
4529     }
4530     public sealed partial class SqlDependency
4531     {
4532         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SqlDependency()4533         public SqlDependency() { }
4534         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SqlDependency(System.Data.SqlClient.SqlCommand command)4535         public SqlDependency(System.Data.SqlClient.SqlCommand command) { }
4536         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout)4537         public SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout) { }
4538         public bool HasChanges { get { throw null; } }
4539         public string Id { get { throw null; } }
4540         public event System.Data.SqlClient.OnChangeEventHandler OnChange { add { } remove { } }
AddCommandDependency(System.Data.SqlClient.SqlCommand command)4541         public void AddCommandDependency(System.Data.SqlClient.SqlCommand command) { }
4542         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Start(string connectionString)4543         public static bool Start(string connectionString) { throw null; }
4544         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Start(string connectionString, string queue)4545         public static bool Start(string connectionString, string queue) { throw null; }
4546         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Stop(string connectionString)4547         public static bool Stop(string connectionString) { throw null; }
4548         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
Stop(string connectionString, string queue)4549         public static bool Stop(string connectionString, string queue) { throw null; }
4550     }
4551     [System.SerializableAttribute]
4552     public sealed partial class SqlError
4553     {
SqlError()4554         internal SqlError() { }
4555         public byte Class { get { throw null; } }
4556         public int LineNumber { get { throw null; } }
4557         public string Message { get { throw null; } }
4558         public int Number { get { throw null; } }
4559         public string Procedure { get { throw null; } }
4560         public string Server { get { throw null; } }
4561         public string Source { get { throw null; } }
4562         public byte State { get { throw null; } }
ToString()4563         public override string ToString() { throw null; }
4564     }
4565     [System.ComponentModel.ListBindableAttribute(false)]
4566     [System.SerializableAttribute]
4567     public sealed partial class SqlErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
4568     {
SqlErrorCollection()4569         internal SqlErrorCollection() { }
4570         public int Count { get { throw null; } }
4571         public System.Data.SqlClient.SqlError this[int index] { get { throw null; } }
4572         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4573         object System.Collections.ICollection.SyncRoot { get { throw null; } }
CopyTo(System.Array array, int index)4574         public void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.SqlClient.SqlError[] array, int index)4575         public void CopyTo(System.Data.SqlClient.SqlError[] array, int index) { }
GetEnumerator()4576         public System.Collections.IEnumerator GetEnumerator() { throw null; }
4577     }
4578     [System.SerializableAttribute]
4579     public sealed partial class SqlException : System.Data.Common.DbException
4580     {
SqlException()4581         internal SqlException() { }
4582         public byte Class { get { throw null; } }
4583         public System.Guid ClientConnectionId { get { throw null; } }
4584         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
4585         public System.Data.SqlClient.SqlErrorCollection Errors { get { throw null; } }
4586         public int LineNumber { get { throw null; } }
4587         public int Number { get { throw null; } }
4588         public string Procedure { get { throw null; } }
4589         public string Server { get { throw null; } }
4590         public override string Source { get { throw null; } }
4591         public byte State { get { throw null; } }
4592         [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)4593         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
ToString()4594         public override string ToString() { throw null; }
4595     }
4596     public sealed partial class SqlInfoMessageEventArgs : System.EventArgs
4597     {
SqlInfoMessageEventArgs()4598         internal SqlInfoMessageEventArgs() { }
4599         public System.Data.SqlClient.SqlErrorCollection Errors { get { throw null; } }
4600         public string Message { get { throw null; } }
4601         public string Source { get { throw null; } }
ToString()4602         public override string ToString() { throw null; }
4603     }
SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e)4604     public delegate void SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e);
4605     public partial class SqlNotificationEventArgs : System.EventArgs
4606     {
SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source)4607         public SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source) { }
4608         public System.Data.SqlClient.SqlNotificationInfo Info { get { throw null; } }
4609         public System.Data.SqlClient.SqlNotificationSource Source { get { throw null; } }
4610         public System.Data.SqlClient.SqlNotificationType Type { get { throw null; } }
4611     }
4612     public enum SqlNotificationInfo
4613     {
4614         AlreadyChanged = -2,
4615         Alter = 5,
4616         Delete = 3,
4617         Drop = 4,
4618         Error = 7,
4619         Expired = 12,
4620         Insert = 1,
4621         Invalid = 9,
4622         Isolation = 11,
4623         Merge = 16,
4624         Options = 10,
4625         PreviousFire = 14,
4626         Query = 8,
4627         Resource = 13,
4628         Restart = 6,
4629         TemplateLimit = 15,
4630         Truncate = 0,
4631         Unknown = -1,
4632         Update = 2,
4633     }
4634     public enum SqlNotificationSource
4635     {
4636         Client = -2,
4637         Data = 0,
4638         Database = 3,
4639         Environment = 6,
4640         Execution = 7,
4641         Object = 2,
4642         Owner = 8,
4643         Statement = 5,
4644         System = 4,
4645         Timeout = 1,
4646         Unknown = -1,
4647     }
4648     public enum SqlNotificationType
4649     {
4650         Change = 0,
4651         Subscribe = 1,
4652         Unknown = -1,
4653     }
4654     [System.ComponentModel.TypeConverterAttribute("System.Data.SqlClient.SqlParameter.SqlParameterConverter")]
4655     public sealed partial class SqlParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter, System.ICloneable
4656     {
SqlParameter()4657         public SqlParameter() { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType)4658         public SqlParameter(string parameterName, System.Data.SqlDbType dbType) { }
SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size)4659         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size) { }
4660         [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)4661         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)4662         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)4663         public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, string sourceColumn) { }
SqlParameter(string parameterName, object value)4664         public SqlParameter(string parameterName, object value) { }
4665         [System.ComponentModel.BrowsableAttribute(false)]
4666         public System.Data.SqlTypes.SqlCompareOptions CompareInfo { get { throw null; } set { } }
4667         public override System.Data.DbType DbType { get { throw null; } set { } }
4668         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4669         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
4670         [System.ComponentModel.DefaultValueAttribute(false)]
4671         public bool ForceColumnEncryption { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4672         public override bool IsNullable { get { throw null; } set { } }
4673         [System.ComponentModel.BrowsableAttribute(false)]
4674         public int LocaleId { get { throw null; } set { } }
4675         [System.ComponentModel.BrowsableAttribute(false)]
4676         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4677         public int Offset { get { throw null; } set { } }
4678         public override string ParameterName { get { throw null; } set { } }
4679         [System.ComponentModel.DefaultValueAttribute((byte)0)]
4680         public new byte Precision { get { throw null; } set { } }
4681         [System.ComponentModel.DefaultValueAttribute((byte)0)]
4682         public new byte Scale { get { throw null; } set { } }
4683         public override int Size { get { throw null; } set { } }
4684         public override string SourceColumn { get { throw null; } set { } }
4685         public override bool SourceColumnNullMapping { get { throw null; } set { } }
4686         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
4687         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4688         [System.Data.Common.DbProviderSpecificTypePropertyAttribute(true)]
4689         public System.Data.SqlDbType SqlDbType { get { throw null; } set { } }
4690         [System.ComponentModel.BrowsableAttribute(false)]
4691         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4692         public object SqlValue { get { throw null; } set { } }
4693         [System.ComponentModel.BrowsableAttribute(false)]
4694         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4695         public string TypeName { get { throw null; } set { } }
4696         [System.ComponentModel.BrowsableAttribute(false)]
4697         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
4698         public string UdtTypeName { get { throw null; } set { } }
4699         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
4700         [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
4701         public override object Value { get { throw null; } set { } }
4702         public string XmlSchemaCollectionDatabase { get { throw null; } set { } }
4703         public string XmlSchemaCollectionName { get { throw null; } set { } }
4704         public string XmlSchemaCollectionOwningSchema { get { throw null; } set { } }
ResetDbType()4705         public override void ResetDbType() { }
ResetSqlDbType()4706         public void ResetSqlDbType() { }
System.ICloneable.Clone()4707         object System.ICloneable.Clone() { throw null; }
ToString()4708         public override string ToString() { throw null; }
4709     }
4710     [System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
4711     [System.ComponentModel.ListBindableAttribute(false)]
4712     public sealed partial class SqlParameterCollection : System.Data.Common.DbParameterCollection
4713     {
SqlParameterCollection()4714         internal SqlParameterCollection() { }
4715         public override int Count { get { throw null; } }
4716         public override bool IsFixedSize { get { throw null; } }
4717         public override bool IsReadOnly { get { throw null; } }
4718         public override bool IsSynchronized { get { throw null; } }
4719         [System.ComponentModel.BrowsableAttribute(false)]
4720         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4721         public new System.Data.SqlClient.SqlParameter this[int index] { get { throw null; } set { } }
4722         [System.ComponentModel.BrowsableAttribute(false)]
4723         [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
4724         public new System.Data.SqlClient.SqlParameter this[string parameterName] { get { throw null; } set { } }
4725         public override object SyncRoot { get { throw null; } }
Add(System.Data.SqlClient.SqlParameter value)4726         public System.Data.SqlClient.SqlParameter Add(System.Data.SqlClient.SqlParameter value) { throw null; }
4727         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)4728         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType)4729         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType) { throw null; }
Add(string parameterName, System.Data.SqlDbType sqlDbType, int size)4730         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)4731         public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType, int size, string sourceColumn) { throw null; }
4732         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4733         [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)4734         public System.Data.SqlClient.SqlParameter Add(string parameterName, object value) { throw null; }
AddRange(System.Array values)4735         public override void AddRange(System.Array values) { }
AddRange(System.Data.SqlClient.SqlParameter[] values)4736         public void AddRange(System.Data.SqlClient.SqlParameter[] values) { }
AddWithValue(string parameterName, object value)4737         public System.Data.SqlClient.SqlParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()4738         public override void Clear() { }
Contains(System.Data.SqlClient.SqlParameter value)4739         public bool Contains(System.Data.SqlClient.SqlParameter value) { throw null; }
Contains(object value)4740         public override bool Contains(object value) { throw null; }
Contains(string value)4741         public override bool Contains(string value) { throw null; }
CopyTo(System.Array array, int index)4742         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.SqlClient.SqlParameter[] array, int index)4743         public void CopyTo(System.Data.SqlClient.SqlParameter[] array, int index) { }
GetEnumerator()4744         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)4745         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)4746         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.SqlClient.SqlParameter value)4747         public int IndexOf(System.Data.SqlClient.SqlParameter value) { throw null; }
IndexOf(object value)4748         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)4749         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.SqlClient.SqlParameter value)4750         public void Insert(int index, System.Data.SqlClient.SqlParameter value) { }
Insert(int index, object value)4751         public override void Insert(int index, object value) { }
Remove(System.Data.SqlClient.SqlParameter value)4752         public void Remove(System.Data.SqlClient.SqlParameter value) { }
Remove(object value)4753         public override void Remove(object value) { }
RemoveAt(int index)4754         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)4755         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)4756         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)4757         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
4758     }
4759     public partial class SqlRowsCopiedEventArgs : System.EventArgs
4760     {
SqlRowsCopiedEventArgs(long rowsCopied)4761         public SqlRowsCopiedEventArgs(long rowsCopied) { }
4762         public bool Abort { get { throw null; } set { } }
4763         public long RowsCopied { get { throw null; } }
4764     }
SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e)4765     public delegate void SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e);
4766     public sealed partial class SqlRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
4767     {
SqlRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)4768         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)) { }
4769         public new System.Data.SqlClient.SqlCommand Command { get { throw null; } }
4770     }
SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e)4771     public delegate void SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e);
4772     public sealed partial class SqlRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
4773     {
SqlRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping)4774         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)) { }
4775         protected override System.Data.IDbCommand BaseCommand { get { throw null; } set { } }
4776         public new System.Data.SqlClient.SqlCommand Command { get { throw null; } set { } }
4777     }
SqlRowUpdatingEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatingEventArgs e)4778     public delegate void SqlRowUpdatingEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatingEventArgs e);
4779     public sealed partial class SqlTransaction : System.Data.Common.DbTransaction
4780     {
SqlTransaction()4781         internal SqlTransaction() { }
4782         public new System.Data.SqlClient.SqlConnection Connection { get { throw null; } }
4783         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
4784         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()4785         public override void Commit() { }
Dispose(bool disposing)4786         protected override void Dispose(bool disposing) { }
Rollback()4787         public override void Rollback() { }
Rollback(string transactionName)4788         public void Rollback(string transactionName) { }
Save(string savePointName)4789         public void Save(string savePointName) { }
4790     }
4791 }
4792 namespace System.Data.SqlTypes
4793 {
4794     public partial interface INullable
4795     {
4796         bool IsNull { get; }
4797     }
4798     [System.SerializableAttribute]
4799     public sealed partial class SqlAlreadyFilledException : System.Data.SqlTypes.SqlTypeException
4800     {
SqlAlreadyFilledException()4801         public SqlAlreadyFilledException() { }
SqlAlreadyFilledException(string message)4802         public SqlAlreadyFilledException(string message) { }
SqlAlreadyFilledException(string message, System.Exception e)4803         public SqlAlreadyFilledException(string message, System.Exception e) { }
4804     }
4805     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4806     [System.SerializableAttribute]
4807     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4808     public partial struct SqlBinary : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4809     {
4810         public static readonly System.Data.SqlTypes.SqlBinary Null;
SqlBinarySystem.Data.SqlTypes.SqlBinary4811         public SqlBinary(byte[] value) { throw null;}
4812         public bool IsNull { get { throw null; } }
4813         public byte this[int index] { get { throw null; } }
4814         public int Length { get { throw null; } }
4815         public byte[] Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlBinary4816         public static System.Data.SqlTypes.SqlBinary Add(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBinary4817         public int CompareTo(System.Data.SqlTypes.SqlBinary value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBinary4818         public int CompareTo(object value) { throw null; }
ConcatSystem.Data.SqlTypes.SqlBinary4819         public static System.Data.SqlTypes.SqlBinary Concat(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBinary4820         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBinary4821         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlBinary4822         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlBinary4823         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlBinary4824         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlBinary4825         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlBinary4826         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlBinary4827         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlBinary4828         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator +System.Data.SqlTypes.SqlBinary4829         public static System.Data.SqlTypes.SqlBinary operator +(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator ==System.Data.SqlTypes.SqlBinary4830         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator byte[]System.Data.SqlTypes.SqlBinary4831         public static explicit operator byte[] (System.Data.SqlTypes.SqlBinary x) { throw null; }
operator System.Data.SqlTypes.SqlBinarySystem.Data.SqlTypes.SqlBinary4832         public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator >System.Data.SqlTypes.SqlBinary4833         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator >=System.Data.SqlTypes.SqlBinary4834         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.SqlBinary4835         public static implicit operator System.Data.SqlTypes.SqlBinary (byte[] x) { throw null; }
operator !=System.Data.SqlTypes.SqlBinary4836         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator <System.Data.SqlTypes.SqlBinary4837         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlBinary x, System.Data.SqlTypes.SqlBinary y) { throw null; }
operator <=System.Data.SqlTypes.SqlBinary4838         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.SqlBinary4839         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlBinary4840         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlBinary4841         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlGuidSystem.Data.SqlTypes.SqlBinary4842         public System.Data.SqlTypes.SqlGuid ToSqlGuid() { throw null; }
ToStringSystem.Data.SqlTypes.SqlBinary4843         public override string ToString() { throw null; }
4844     }
4845     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4846     [System.SerializableAttribute]
4847     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4848     public partial struct SqlBoolean : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4849     {
4850         public static readonly System.Data.SqlTypes.SqlBoolean False;
4851         public static readonly System.Data.SqlTypes.SqlBoolean Null;
4852         public static readonly System.Data.SqlTypes.SqlBoolean One;
4853         public static readonly System.Data.SqlTypes.SqlBoolean True;
4854         public static readonly System.Data.SqlTypes.SqlBoolean Zero;
SqlBooleanSystem.Data.SqlTypes.SqlBoolean4855         public SqlBoolean(bool value) { throw null;}
SqlBooleanSystem.Data.SqlTypes.SqlBoolean4856         public SqlBoolean(int value) { throw null;}
4857         public byte ByteValue { get { throw null; } }
4858         public bool IsFalse { get { throw null; } }
4859         public bool IsNull { get { throw null; } }
4860         public bool IsTrue { get { throw null; } }
4861         public bool Value { get { throw null; } }
AndSystem.Data.SqlTypes.SqlBoolean4862         public static System.Data.SqlTypes.SqlBoolean And(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBoolean4863         public int CompareTo(System.Data.SqlTypes.SqlBoolean value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlBoolean4864         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBoolean4865         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlBoolean4866         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlBoolean4867         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlBoolean4868         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlBoolean4869         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
GreaterThanOrEqualsSystem.Data.SqlTypes.SqlBoolean4870         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlBoolean4871         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
LessThanOrEqualsSystem.Data.SqlTypes.SqlBoolean4872         public static System.Data.SqlTypes.SqlBoolean LessThanOrEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlBoolean4873         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlBoolean4874         public static System.Data.SqlTypes.SqlBoolean OnesComplement(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator &System.Data.SqlTypes.SqlBoolean4875         public static System.Data.SqlTypes.SqlBoolean operator &(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator |System.Data.SqlTypes.SqlBoolean4876         public static System.Data.SqlTypes.SqlBoolean operator |(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator ==System.Data.SqlTypes.SqlBoolean4877         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator ^System.Data.SqlTypes.SqlBoolean4878         public static System.Data.SqlTypes.SqlBoolean operator ^(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator boolSystem.Data.SqlTypes.SqlBoolean4879         public static explicit operator bool (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4880         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4881         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4882         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4883         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4884         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4885         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4886         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4887         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlBooleanSystem.Data.SqlTypes.SqlBoolean4888         public static explicit operator System.Data.SqlTypes.SqlBoolean (System.Data.SqlTypes.SqlString x) { throw null; }
operator falseSystem.Data.SqlTypes.SqlBoolean4889         public static bool operator false(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator >System.Data.SqlTypes.SqlBoolean4890         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator >=System.Data.SqlTypes.SqlBoolean4891         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.SqlBoolean4892         public static implicit operator System.Data.SqlTypes.SqlBoolean (bool x) { throw null; }
operator !=System.Data.SqlTypes.SqlBoolean4893         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator <System.Data.SqlTypes.SqlBoolean4894         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator <=System.Data.SqlTypes.SqlBoolean4895         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
operator !System.Data.SqlTypes.SqlBoolean4896         public static System.Data.SqlTypes.SqlBoolean operator !(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator ~System.Data.SqlTypes.SqlBoolean4897         public static System.Data.SqlTypes.SqlBoolean operator ~(System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator trueSystem.Data.SqlTypes.SqlBoolean4898         public static bool operator true(System.Data.SqlTypes.SqlBoolean x) { throw null; }
OrSystem.Data.SqlTypes.SqlBoolean4899         public static System.Data.SqlTypes.SqlBoolean Or(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
ParseSystem.Data.SqlTypes.SqlBoolean4900         public static System.Data.SqlTypes.SqlBoolean Parse(string s) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlBoolean4901         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlBoolean4902         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlBoolean4903         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlByteSystem.Data.SqlTypes.SqlBoolean4904         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlBoolean4905         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlBoolean4906         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlBoolean4907         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlBoolean4908         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlBoolean4909         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlBoolean4910         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlBoolean4911         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlBoolean4912         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlBoolean4913         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlBoolean4914         public static System.Data.SqlTypes.SqlBoolean Xor(System.Data.SqlTypes.SqlBoolean x, System.Data.SqlTypes.SqlBoolean y) { throw null; }
4915     }
4916     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4917     [System.SerializableAttribute]
4918     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4919     public partial struct SqlByte : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
4920     {
4921         public static readonly System.Data.SqlTypes.SqlByte MaxValue;
4922         public static readonly System.Data.SqlTypes.SqlByte MinValue;
4923         public static readonly System.Data.SqlTypes.SqlByte Null;
4924         public static readonly System.Data.SqlTypes.SqlByte Zero;
SqlByteSystem.Data.SqlTypes.SqlByte4925         public SqlByte(byte value) { throw null;}
4926         public bool IsNull { get { throw null; } }
4927         public byte Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlByte4928         public static System.Data.SqlTypes.SqlByte Add(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlByte4929         public static System.Data.SqlTypes.SqlByte BitwiseAnd(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlByte4930         public static System.Data.SqlTypes.SqlByte BitwiseOr(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlByte4931         public int CompareTo(System.Data.SqlTypes.SqlByte value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlByte4932         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlByte4933         public static System.Data.SqlTypes.SqlByte Divide(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlByte4934         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlByte4935         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlByte4936         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlByte4937         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlByte4938         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlByte4939         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlByte4940         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlByte4941         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ModSystem.Data.SqlTypes.SqlByte4942         public static System.Data.SqlTypes.SqlByte Mod(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlByte4943         public static System.Data.SqlTypes.SqlByte Modulus(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlByte4944         public static System.Data.SqlTypes.SqlByte Multiply(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlByte4945         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlByte4946         public static System.Data.SqlTypes.SqlByte OnesComplement(System.Data.SqlTypes.SqlByte x) { throw null; }
operator +System.Data.SqlTypes.SqlByte4947         public static System.Data.SqlTypes.SqlByte operator +(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator &System.Data.SqlTypes.SqlByte4948         public static System.Data.SqlTypes.SqlByte operator &(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator |System.Data.SqlTypes.SqlByte4949         public static System.Data.SqlTypes.SqlByte operator |(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator /System.Data.SqlTypes.SqlByte4950         public static System.Data.SqlTypes.SqlByte operator /(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ==System.Data.SqlTypes.SqlByte4951         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ^System.Data.SqlTypes.SqlByte4952         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.SqlByte4953         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator byteSystem.Data.SqlTypes.SqlByte4954         public static explicit operator byte (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4955         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4956         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4957         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4958         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4959         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4960         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4961         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlByteSystem.Data.SqlTypes.SqlByte4962         public static explicit operator System.Data.SqlTypes.SqlByte (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlByte4963         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator >=System.Data.SqlTypes.SqlByte4964         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.SqlByte4965         public static implicit operator System.Data.SqlTypes.SqlByte (byte x) { throw null; }
operator !=System.Data.SqlTypes.SqlByte4966         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator <System.Data.SqlTypes.SqlByte4967         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator <=System.Data.SqlTypes.SqlByte4968         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator %System.Data.SqlTypes.SqlByte4969         public static System.Data.SqlTypes.SqlByte operator %(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator *System.Data.SqlTypes.SqlByte4970         public static System.Data.SqlTypes.SqlByte operator *(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
operator ~System.Data.SqlTypes.SqlByte4971         public static System.Data.SqlTypes.SqlByte operator ~(System.Data.SqlTypes.SqlByte x) { throw null; }
operator -System.Data.SqlTypes.SqlByte4972         public static System.Data.SqlTypes.SqlByte operator -(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
ParseSystem.Data.SqlTypes.SqlByte4973         public static System.Data.SqlTypes.SqlByte Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlByte4974         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.SqlByte4975         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlByte4976         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlByte4977         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlByte4978         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlByte4979         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlByte4980         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlByte4981         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlByte4982         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlByte4983         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlByte4984         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlByte4985         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlByte4986         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlByte4987         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlByte4988         public static System.Data.SqlTypes.SqlByte Xor(System.Data.SqlTypes.SqlByte x, System.Data.SqlTypes.SqlByte y) { throw null; }
4989     }
4990     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
4991     [System.SerializableAttribute]
4992     public sealed partial class SqlBytes : System.Data.SqlTypes.INullable, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
4993     {
SqlBytes()4994         public SqlBytes() { }
SqlBytes(byte[] buffer)4995         public SqlBytes(byte[] buffer) { }
SqlBytes(System.Data.SqlTypes.SqlBinary value)4996         public SqlBytes(System.Data.SqlTypes.SqlBinary value) { }
SqlBytes(System.IO.Stream s)4997         public SqlBytes(System.IO.Stream s) { }
4998         public byte[] Buffer { get { throw null; } }
4999         public bool IsNull { get { throw null; } }
5000         public byte this[long offset] { get { throw null; } set { } }
5001         public long Length { get { throw null; } }
5002         public long MaxLength { get { throw null; } }
5003         public static System.Data.SqlTypes.SqlBytes Null { get { throw null; } }
5004         public System.Data.SqlTypes.StorageState Storage { get { throw null; } }
5005         public System.IO.Stream Stream { get { throw null; } set { } }
5006         public byte[] Value { get { throw null; } }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)5007         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
operator System.Data.SqlTypes.SqlBytes(System.Data.SqlTypes.SqlBinary value)5008         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)5009         public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlBytes value) { throw null; }
Read(long offset, byte[] buffer, int offsetInBuffer, int count)5010         public long Read(long offset, byte[] buffer, int offsetInBuffer, int count) { throw null; }
SetLength(long value)5011         public void SetLength(long value) { }
SetNull()5012         public void SetNull() { }
5013         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5014         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
System.Xml.Serialization.IXmlSerializable.GetSchema()5015         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)5016         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)5017         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBinary()5018         public System.Data.SqlTypes.SqlBinary ToSqlBinary() { throw null; }
Write(long offset, byte[] buffer, int offsetInBuffer, int count)5019         public void Write(long offset, byte[] buffer, int offsetInBuffer, int count) { }
5020     }
5021     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5022     [System.SerializableAttribute]
5023     public sealed partial class SqlChars : System.Data.SqlTypes.INullable, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable
5024     {
SqlChars()5025         public SqlChars() { }
SqlChars(char[] buffer)5026         public SqlChars(char[] buffer) { }
SqlChars(System.Data.SqlTypes.SqlString value)5027         public SqlChars(System.Data.SqlTypes.SqlString value) { }
5028         public char[] Buffer { get { throw null; } }
5029         public bool IsNull { get { throw null; } }
5030         public char this[long offset] { get { throw null; } set { } }
5031         public long Length { get { throw null; } }
5032         public long MaxLength { get { throw null; } }
5033         public static System.Data.SqlTypes.SqlChars Null { get { throw null; } }
5034         public System.Data.SqlTypes.StorageState Storage { get { throw null; } }
5035         public char[] Value { get { throw null; } }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)5036         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
operator System.Data.SqlTypes.SqlString(System.Data.SqlTypes.SqlChars value)5037         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)5038         public static explicit operator System.Data.SqlTypes.SqlChars (System.Data.SqlTypes.SqlString value) { throw null; }
Read(long offset, char[] buffer, int offsetInBuffer, int count)5039         public long Read(long offset, char[] buffer, int offsetInBuffer, int count) { throw null; }
SetLength(long value)5040         public void SetLength(long value) { }
SetNull()5041         public void SetNull() { }
5042         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)5043         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
System.Xml.Serialization.IXmlSerializable.GetSchema()5044         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)5045         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)5046         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlString()5047         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
Write(long offset, char[] buffer, int offsetInBuffer, int count)5048         public void Write(long offset, char[] buffer, int offsetInBuffer, int count) { }
5049     }
5050     [System.FlagsAttribute]
5051     [System.SerializableAttribute]
5052     public enum SqlCompareOptions
5053     {
5054         BinarySort = 32768,
5055         BinarySort2 = 16384,
5056         IgnoreCase = 1,
5057         IgnoreKanaType = 8,
5058         IgnoreNonSpace = 2,
5059         IgnoreWidth = 16,
5060         None = 0,
5061     }
5062     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5063     [System.SerializableAttribute]
5064     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5065     public partial struct SqlDateTime : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5066     {
5067         public static readonly System.Data.SqlTypes.SqlDateTime MaxValue;
5068         public static readonly System.Data.SqlTypes.SqlDateTime MinValue;
5069         public static readonly System.Data.SqlTypes.SqlDateTime Null;
5070         public static readonly int SQLTicksPerHour;
5071         public static readonly int SQLTicksPerMinute;
5072         public static readonly int SQLTicksPerSecond;
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5073         public SqlDateTime(System.DateTime value) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5074         public SqlDateTime(int dayTicks, int timeTicks) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5075         public SqlDateTime(int year, int month, int day) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5076         public SqlDateTime(int year, int month, int day, int hour, int minute, int second) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5077         public SqlDateTime(int year, int month, int day, int hour, int minute, int second, double millisecond) { throw null;}
SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5078         public SqlDateTime(int year, int month, int day, int hour, int minute, int second, int bilisecond) { throw null;}
5079         public int DayTicks { get { throw null; } }
5080         public bool IsNull { get { throw null; } }
5081         public int TimeTicks { get { throw null; } }
5082         public System.DateTime Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlDateTime5083         public static System.Data.SqlTypes.SqlDateTime Add(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDateTime5084         public int CompareTo(System.Data.SqlTypes.SqlDateTime value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDateTime5085         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDateTime5086         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDateTime5087         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDateTime5088         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDateTime5089         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDateTime5090         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDateTime5091         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDateTime5092         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDateTime5093         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDateTime5094         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator +System.Data.SqlTypes.SqlDateTime5095         public static System.Data.SqlTypes.SqlDateTime operator +(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
operator ==System.Data.SqlTypes.SqlDateTime5096         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator System.DateTimeSystem.Data.SqlTypes.SqlDateTime5097         public static explicit operator System.DateTime (System.Data.SqlTypes.SqlDateTime x) { throw null; }
operator System.Data.SqlTypes.SqlDateTimeSystem.Data.SqlTypes.SqlDateTime5098         public static explicit operator System.Data.SqlTypes.SqlDateTime (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlDateTime5099         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator >=System.Data.SqlTypes.SqlDateTime5100         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.SqlDateTime5101         public static implicit operator System.Data.SqlTypes.SqlDateTime (System.DateTime value) { throw null; }
operator !=System.Data.SqlTypes.SqlDateTime5102         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator <System.Data.SqlTypes.SqlDateTime5103         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator <=System.Data.SqlTypes.SqlDateTime5104         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDateTime x, System.Data.SqlTypes.SqlDateTime y) { throw null; }
operator -System.Data.SqlTypes.SqlDateTime5105         public static System.Data.SqlTypes.SqlDateTime operator -(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
ParseSystem.Data.SqlTypes.SqlDateTime5106         public static System.Data.SqlTypes.SqlDateTime Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDateTime5107         public static System.Data.SqlTypes.SqlDateTime Subtract(System.Data.SqlTypes.SqlDateTime x, System.TimeSpan t) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlDateTime5108         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDateTime5109         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDateTime5110         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlStringSystem.Data.SqlTypes.SqlDateTime5111         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDateTime5112         public override string ToString() { throw null; }
5113     }
5114     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5115     [System.SerializableAttribute]
5116     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5117     public partial struct SqlDecimal : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5118     {
5119         public static readonly byte MaxPrecision;
5120         public static readonly byte MaxScale;
5121         public static readonly System.Data.SqlTypes.SqlDecimal MaxValue;
5122         public static readonly System.Data.SqlTypes.SqlDecimal MinValue;
5123         public static readonly System.Data.SqlTypes.SqlDecimal Null;
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5124         public SqlDecimal(byte bPrecision, byte bScale, bool fPositive, int data1, int data2, int data3, int data4) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5125         public SqlDecimal(byte bPrecision, byte bScale, bool fPositive, int[] bits) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5126         public SqlDecimal(decimal value) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5127         public SqlDecimal(double dVal) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5128         public SqlDecimal(int value) { throw null;}
SqlDecimalSystem.Data.SqlTypes.SqlDecimal5129         public SqlDecimal(long value) { throw null;}
5130         public byte[] BinData { get { throw null; } }
5131         public int[] Data { get { throw null; } }
5132         public bool IsNull { get { throw null; } }
5133         public bool IsPositive { get { throw null; } }
5134         public byte Precision { get { throw null; } }
5135         public byte Scale { get { throw null; } }
5136         public decimal Value { get { throw null; } }
AbsSystem.Data.SqlTypes.SqlDecimal5137         public static System.Data.SqlTypes.SqlDecimal Abs(System.Data.SqlTypes.SqlDecimal n) { throw null; }
AddSystem.Data.SqlTypes.SqlDecimal5138         public static System.Data.SqlTypes.SqlDecimal Add(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
AdjustScaleSystem.Data.SqlTypes.SqlDecimal5139         public static System.Data.SqlTypes.SqlDecimal AdjustScale(System.Data.SqlTypes.SqlDecimal n, int digits, bool fRound) { throw null; }
CeilingSystem.Data.SqlTypes.SqlDecimal5140         public static System.Data.SqlTypes.SqlDecimal Ceiling(System.Data.SqlTypes.SqlDecimal n) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDecimal5141         public int CompareTo(System.Data.SqlTypes.SqlDecimal value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDecimal5142         public int CompareTo(object value) { throw null; }
ConvertToPrecScaleSystem.Data.SqlTypes.SqlDecimal5143         public static System.Data.SqlTypes.SqlDecimal ConvertToPrecScale(System.Data.SqlTypes.SqlDecimal n, int precision, int scale) { throw null; }
DivideSystem.Data.SqlTypes.SqlDecimal5144         public static System.Data.SqlTypes.SqlDecimal Divide(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDecimal5145         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDecimal5146         public override bool Equals(object value) { throw null; }
FloorSystem.Data.SqlTypes.SqlDecimal5147         public static System.Data.SqlTypes.SqlDecimal Floor(System.Data.SqlTypes.SqlDecimal n) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDecimal5148         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDecimal5149         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDecimal5150         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDecimal5151         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDecimal5152         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDecimal5153         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlDecimal5154         public static System.Data.SqlTypes.SqlDecimal Multiply(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDecimal5155         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator +System.Data.SqlTypes.SqlDecimal5156         public static System.Data.SqlTypes.SqlDecimal operator +(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator /System.Data.SqlTypes.SqlDecimal5157         public static System.Data.SqlTypes.SqlDecimal operator /(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator ==System.Data.SqlTypes.SqlDecimal5158         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.SqlDecimal5159         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator decimalSystem.Data.SqlTypes.SqlDecimal5160         public static explicit operator decimal (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5161         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5162         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5163         public static explicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlString x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5164         public static explicit operator System.Data.SqlTypes.SqlDecimal (double x) { throw null; }
operator >System.Data.SqlTypes.SqlDecimal5165         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator >=System.Data.SqlTypes.SqlDecimal5166         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.SqlDecimal5167         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5168         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5169         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5170         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5171         public static implicit operator System.Data.SqlTypes.SqlDecimal (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5172         public static implicit operator System.Data.SqlTypes.SqlDecimal (decimal x) { throw null; }
operator System.Data.SqlTypes.SqlDecimalSystem.Data.SqlTypes.SqlDecimal5173         public static implicit operator System.Data.SqlTypes.SqlDecimal (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlDecimal5174         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator <System.Data.SqlTypes.SqlDecimal5175         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator <=System.Data.SqlTypes.SqlDecimal5176         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator *System.Data.SqlTypes.SqlDecimal5177         public static System.Data.SqlTypes.SqlDecimal operator *(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator -System.Data.SqlTypes.SqlDecimal5178         public static System.Data.SqlTypes.SqlDecimal operator -(System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y) { throw null; }
operator -System.Data.SqlTypes.SqlDecimal5179         public static System.Data.SqlTypes.SqlDecimal operator -(System.Data.SqlTypes.SqlDecimal x) { throw null; }
ParseSystem.Data.SqlTypes.SqlDecimal5180         public static System.Data.SqlTypes.SqlDecimal Parse(string s) { throw null; }
PowerSystem.Data.SqlTypes.SqlDecimal5181         public static System.Data.SqlTypes.SqlDecimal Power(System.Data.SqlTypes.SqlDecimal n, double exp) { throw null; }
RoundSystem.Data.SqlTypes.SqlDecimal5182         public static System.Data.SqlTypes.SqlDecimal Round(System.Data.SqlTypes.SqlDecimal n, int position) { throw null; }
SignSystem.Data.SqlTypes.SqlDecimal5183         public static System.Data.SqlTypes.SqlInt32 Sign(System.Data.SqlTypes.SqlDecimal n) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDecimal5184         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.SqlDecimal5185         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDecimal5186         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDecimal5187         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToDoubleSystem.Data.SqlTypes.SqlDecimal5188         public double ToDouble() { throw null; }
ToSqlBooleanSystem.Data.SqlTypes.SqlDecimal5189         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlDecimal5190         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlDecimal5191         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlDecimal5192         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlDecimal5193         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlDecimal5194         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlDecimal5195         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlDecimal5196         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlDecimal5197         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDecimal5198         public override string ToString() { throw null; }
TruncateSystem.Data.SqlTypes.SqlDecimal5199         public static System.Data.SqlTypes.SqlDecimal Truncate(System.Data.SqlTypes.SqlDecimal n, int position) { throw null; }
5200     }
5201     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5202     [System.SerializableAttribute]
5203     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5204     public partial struct SqlDouble : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5205     {
5206         public static readonly System.Data.SqlTypes.SqlDouble MaxValue;
5207         public static readonly System.Data.SqlTypes.SqlDouble MinValue;
5208         public static readonly System.Data.SqlTypes.SqlDouble Null;
5209         public static readonly System.Data.SqlTypes.SqlDouble Zero;
SqlDoubleSystem.Data.SqlTypes.SqlDouble5210         public SqlDouble(double value) { throw null;}
5211         public bool IsNull { get { throw null; } }
5212         public double Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlDouble5213         public static System.Data.SqlTypes.SqlDouble Add(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDouble5214         public int CompareTo(System.Data.SqlTypes.SqlDouble value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlDouble5215         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlDouble5216         public static System.Data.SqlTypes.SqlDouble Divide(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDouble5217         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlDouble5218         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlDouble5219         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlDouble5220         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlDouble5221         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlDouble5222         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlDouble5223         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlDouble5224         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlDouble5225         public static System.Data.SqlTypes.SqlDouble Multiply(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlDouble5226         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator +System.Data.SqlTypes.SqlDouble5227         public static System.Data.SqlTypes.SqlDouble operator +(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator /System.Data.SqlTypes.SqlDouble5228         public static System.Data.SqlTypes.SqlDouble operator /(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator ==System.Data.SqlTypes.SqlDouble5229         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.SqlDouble5230         public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator doubleSystem.Data.SqlTypes.SqlDouble5231         public static explicit operator double (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5232         public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlDouble5233         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator >=System.Data.SqlTypes.SqlDouble5234         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.SqlDouble5235         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5236         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5237         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5238         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5239         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5240         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5241         public static implicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlDoubleSystem.Data.SqlTypes.SqlDouble5242         public static implicit operator System.Data.SqlTypes.SqlDouble (double x) { throw null; }
operator !=System.Data.SqlTypes.SqlDouble5243         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator <System.Data.SqlTypes.SqlDouble5244         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator <=System.Data.SqlTypes.SqlDouble5245         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator *System.Data.SqlTypes.SqlDouble5246         public static System.Data.SqlTypes.SqlDouble operator *(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator -System.Data.SqlTypes.SqlDouble5247         public static System.Data.SqlTypes.SqlDouble operator -(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y) { throw null; }
operator -System.Data.SqlTypes.SqlDouble5248         public static System.Data.SqlTypes.SqlDouble operator -(System.Data.SqlTypes.SqlDouble x) { throw null; }
ParseSystem.Data.SqlTypes.SqlDouble5249         public static System.Data.SqlTypes.SqlDouble Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlDouble5250         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.SqlDouble5251         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlDouble5252         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlDouble5253         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlDouble5254         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlDouble5255         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlDouble5256         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlDouble5257         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlDouble5258         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlDouble5259         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlDouble5260         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlDouble5261         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlDouble5262         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlDouble5263         public override string ToString() { throw null; }
5264     }
5265     public sealed partial class SqlFileStream : System.IO.Stream
5266     {
SqlFileStream(string path, byte[] transactionContext, System.IO.FileAccess access)5267         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)5268         public SqlFileStream(string path, byte[] transactionContext, System.IO.FileAccess access, System.IO.FileOptions options, long allocationSize) { }
5269         public override bool CanRead { get { throw null; } }
5270         public override bool CanSeek { get { throw null; } }
5271         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5272         public override bool CanTimeout { get { throw null; } }
5273         public override bool CanWrite { get { throw null; } }
5274         public override long Length { get { throw null; } }
5275         public string Name { get { throw null; } }
5276         public override long Position { get { throw null; } set { } }
5277         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5278         public override int ReadTimeout { get { throw null; } set { } }
5279         public byte[] TransactionContext { get { throw null; } }
5280         [System.Runtime.InteropServices.ComVisibleAttribute(false)]
5281         public override int WriteTimeout { get { throw null; } set { } }
5282         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state)5283         public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; }
5284         [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)]
BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state)5285         public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; }
Dispose(bool disposing)5286         protected override void Dispose(bool disposing) { }
EndRead(System.IAsyncResult asyncResult)5287         public override int EndRead(System.IAsyncResult asyncResult) { throw null; }
EndWrite(System.IAsyncResult asyncResult)5288         public override void EndWrite(System.IAsyncResult asyncResult) { }
~SqlFileStream()5289         ~SqlFileStream() { }
Flush()5290         public override void Flush() { }
Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] buffer, int offset, int count)5291         public override int Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] buffer, int offset, int count) { buffer = default(byte[]); throw null; }
ReadByte()5292         public override int ReadByte() { throw null; }
Seek(long offset, System.IO.SeekOrigin origin)5293         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
SetLength(long value)5294         public override void SetLength(long value) { }
Write(byte[] buffer, int offset, int count)5295         public override void Write(byte[] buffer, int offset, int count) { }
WriteByte(byte value)5296         public override void WriteByte(byte value) { }
5297     }
5298     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5299     [System.SerializableAttribute]
5300     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5301     public partial struct SqlGuid : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5302     {
5303         public static readonly System.Data.SqlTypes.SqlGuid Null;
SqlGuidSystem.Data.SqlTypes.SqlGuid5304         public SqlGuid(byte[] value) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid5305         public SqlGuid(System.Guid g) { throw null;}
SqlGuidSystem.Data.SqlTypes.SqlGuid5306         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.SqlGuid5307         public SqlGuid(string s) { throw null;}
5308         public bool IsNull { get { throw null; } }
5309         public System.Guid Value { get { throw null; } }
CompareToSystem.Data.SqlTypes.SqlGuid5310         public int CompareTo(System.Data.SqlTypes.SqlGuid value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlGuid5311         public int CompareTo(object value) { throw null; }
EqualsSystem.Data.SqlTypes.SqlGuid5312         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlGuid5313         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlGuid5314         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlGuid5315         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlGuid5316         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlGuid5317         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlGuid5318         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlGuid5319         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlGuid5320         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator ==System.Data.SqlTypes.SqlGuid5321         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.SqlGuid5322         public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlBinary x) { throw null; }
operator System.GuidSystem.Data.SqlTypes.SqlGuid5323         public static explicit operator System.Guid (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator System.Data.SqlTypes.SqlGuidSystem.Data.SqlTypes.SqlGuid5324         public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlGuid5325         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator >=System.Data.SqlTypes.SqlGuid5326         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.SqlGuid5327         public static implicit operator System.Data.SqlTypes.SqlGuid (System.Guid x) { throw null; }
operator !=System.Data.SqlTypes.SqlGuid5328         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator <System.Data.SqlTypes.SqlGuid5329         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
operator <=System.Data.SqlTypes.SqlGuid5330         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y) { throw null; }
ParseSystem.Data.SqlTypes.SqlGuid5331         public static System.Data.SqlTypes.SqlGuid Parse(string s) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchemaSystem.Data.SqlTypes.SqlGuid5332         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlGuid5333         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlGuid5334         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToByteArraySystem.Data.SqlTypes.SqlGuid5335         public byte[] ToByteArray() { throw null; }
ToSqlBinarySystem.Data.SqlTypes.SqlGuid5336         public System.Data.SqlTypes.SqlBinary ToSqlBinary() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlGuid5337         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlGuid5338         public override string ToString() { throw null; }
5339     }
5340     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5341     [System.SerializableAttribute]
5342     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5343     public partial struct SqlInt16 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5344     {
5345         public static readonly System.Data.SqlTypes.SqlInt16 MaxValue;
5346         public static readonly System.Data.SqlTypes.SqlInt16 MinValue;
5347         public static readonly System.Data.SqlTypes.SqlInt16 Null;
5348         public static readonly System.Data.SqlTypes.SqlInt16 Zero;
SqlInt16System.Data.SqlTypes.SqlInt165349         public SqlInt16(short value) { throw null;}
5350         public bool IsNull { get { throw null; } }
5351         public short Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt165352         public static System.Data.SqlTypes.SqlInt16 Add(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt165353         public static System.Data.SqlTypes.SqlInt16 BitwiseAnd(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt165354         public static System.Data.SqlTypes.SqlInt16 BitwiseOr(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt165355         public int CompareTo(System.Data.SqlTypes.SqlInt16 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt165356         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt165357         public static System.Data.SqlTypes.SqlInt16 Divide(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt165358         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt165359         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt165360         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt165361         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt165362         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt165363         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt165364         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt165365         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt165366         public static System.Data.SqlTypes.SqlInt16 Mod(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt165367         public static System.Data.SqlTypes.SqlInt16 Modulus(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt165368         public static System.Data.SqlTypes.SqlInt16 Multiply(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt165369         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt165370         public static System.Data.SqlTypes.SqlInt16 OnesComplement(System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt165371         public static System.Data.SqlTypes.SqlInt16 operator +(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt165372         public static System.Data.SqlTypes.SqlInt16 operator &(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt165373         public static System.Data.SqlTypes.SqlInt16 operator |(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt165374         public static System.Data.SqlTypes.SqlInt16 operator /(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt165375         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt165376         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.SqlInt165377         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165378         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165379         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator shortSystem.Data.SqlTypes.SqlInt165380         public static explicit operator short (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165381         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165382         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165383         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165384         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165385         public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt165386         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt165387         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.SqlInt165388         public static implicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt16System.Data.SqlTypes.SqlInt165389         public static implicit operator System.Data.SqlTypes.SqlInt16 (short x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt165390         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt165391         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt165392         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt165393         public static System.Data.SqlTypes.SqlInt16 operator %(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt165394         public static System.Data.SqlTypes.SqlInt16 operator *(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt165395         public static System.Data.SqlTypes.SqlInt16 operator ~(System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt165396         public static System.Data.SqlTypes.SqlInt16 operator -(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt165397         public static System.Data.SqlTypes.SqlInt16 operator -(System.Data.SqlTypes.SqlInt16 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt165398         public static System.Data.SqlTypes.SqlInt16 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt165399         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.SqlInt165400         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt165401         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt165402         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt165403         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt165404         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt165405         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt165406         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlInt165407         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlInt165408         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt165409         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt165410         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt165411         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt165412         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt165413         public static System.Data.SqlTypes.SqlInt16 Xor(System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y) { throw null; }
5414     }
5415     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5416     [System.SerializableAttribute]
5417     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5418     public partial struct SqlInt32 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5419     {
5420         public static readonly System.Data.SqlTypes.SqlInt32 MaxValue;
5421         public static readonly System.Data.SqlTypes.SqlInt32 MinValue;
5422         public static readonly System.Data.SqlTypes.SqlInt32 Null;
5423         public static readonly System.Data.SqlTypes.SqlInt32 Zero;
SqlInt32System.Data.SqlTypes.SqlInt325424         public SqlInt32(int value) { throw null;}
5425         public bool IsNull { get { throw null; } }
5426         public int Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt325427         public static System.Data.SqlTypes.SqlInt32 Add(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt325428         public static System.Data.SqlTypes.SqlInt32 BitwiseAnd(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt325429         public static System.Data.SqlTypes.SqlInt32 BitwiseOr(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt325430         public int CompareTo(System.Data.SqlTypes.SqlInt32 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt325431         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt325432         public static System.Data.SqlTypes.SqlInt32 Divide(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt325433         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt325434         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt325435         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt325436         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt325437         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt325438         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt325439         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt325440         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt325441         public static System.Data.SqlTypes.SqlInt32 Mod(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt325442         public static System.Data.SqlTypes.SqlInt32 Modulus(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt325443         public static System.Data.SqlTypes.SqlInt32 Multiply(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt325444         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt325445         public static System.Data.SqlTypes.SqlInt32 OnesComplement(System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt325446         public static System.Data.SqlTypes.SqlInt32 operator +(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt325447         public static System.Data.SqlTypes.SqlInt32 operator &(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt325448         public static System.Data.SqlTypes.SqlInt32 operator |(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt325449         public static System.Data.SqlTypes.SqlInt32 operator /(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt325450         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt325451         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.SqlInt325452         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325453         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325454         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator intSystem.Data.SqlTypes.SqlInt325455         public static explicit operator int (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325456         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325457         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325458         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325459         public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt325460         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt325461         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.SqlInt325462         public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325463         public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt32System.Data.SqlTypes.SqlInt325464         public static implicit operator System.Data.SqlTypes.SqlInt32 (int x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt325465         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt325466         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt325467         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt325468         public static System.Data.SqlTypes.SqlInt32 operator %(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt325469         public static System.Data.SqlTypes.SqlInt32 operator *(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt325470         public static System.Data.SqlTypes.SqlInt32 operator ~(System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt325471         public static System.Data.SqlTypes.SqlInt32 operator -(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt325472         public static System.Data.SqlTypes.SqlInt32 operator -(System.Data.SqlTypes.SqlInt32 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt325473         public static System.Data.SqlTypes.SqlInt32 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt325474         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.SqlInt325475         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt325476         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt325477         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt325478         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt325479         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt325480         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt325481         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlInt325482         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlInt325483         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt325484         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt325485         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt325486         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt325487         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt325488         public static System.Data.SqlTypes.SqlInt32 Xor(System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y) { throw null; }
5489     }
5490     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5491     [System.SerializableAttribute]
5492     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5493     public partial struct SqlInt64 : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5494     {
5495         public static readonly System.Data.SqlTypes.SqlInt64 MaxValue;
5496         public static readonly System.Data.SqlTypes.SqlInt64 MinValue;
5497         public static readonly System.Data.SqlTypes.SqlInt64 Null;
5498         public static readonly System.Data.SqlTypes.SqlInt64 Zero;
SqlInt64System.Data.SqlTypes.SqlInt645499         public SqlInt64(long value) { throw null;}
5500         public bool IsNull { get { throw null; } }
5501         public long Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlInt645502         public static System.Data.SqlTypes.SqlInt64 Add(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
BitwiseAndSystem.Data.SqlTypes.SqlInt645503         public static System.Data.SqlTypes.SqlInt64 BitwiseAnd(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
BitwiseOrSystem.Data.SqlTypes.SqlInt645504         public static System.Data.SqlTypes.SqlInt64 BitwiseOr(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt645505         public int CompareTo(System.Data.SqlTypes.SqlInt64 value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlInt645506         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlInt645507         public static System.Data.SqlTypes.SqlInt64 Divide(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt645508         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlInt645509         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlInt645510         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlInt645511         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlInt645512         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlInt645513         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlInt645514         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlInt645515         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
ModSystem.Data.SqlTypes.SqlInt645516         public static System.Data.SqlTypes.SqlInt64 Mod(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
ModulusSystem.Data.SqlTypes.SqlInt645517         public static System.Data.SqlTypes.SqlInt64 Modulus(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlInt645518         public static System.Data.SqlTypes.SqlInt64 Multiply(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlInt645519         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
OnesComplementSystem.Data.SqlTypes.SqlInt645520         public static System.Data.SqlTypes.SqlInt64 OnesComplement(System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator +System.Data.SqlTypes.SqlInt645521         public static System.Data.SqlTypes.SqlInt64 operator +(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator &System.Data.SqlTypes.SqlInt645522         public static System.Data.SqlTypes.SqlInt64 operator &(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator |System.Data.SqlTypes.SqlInt645523         public static System.Data.SqlTypes.SqlInt64 operator |(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator /System.Data.SqlTypes.SqlInt645524         public static System.Data.SqlTypes.SqlInt64 operator /(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ==System.Data.SqlTypes.SqlInt645525         public static System.Data.SqlTypes.SqlBoolean operator ==(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ^System.Data.SqlTypes.SqlInt645526         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.SqlInt645527         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645528         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645529         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator longSystem.Data.SqlTypes.SqlInt645530         public static explicit operator long (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645531         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645532         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645533         public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlInt645534         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator >=System.Data.SqlTypes.SqlInt645535         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.SqlInt645536         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645537         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645538         public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlInt64System.Data.SqlTypes.SqlInt645539         public static implicit operator System.Data.SqlTypes.SqlInt64 (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlInt645540         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator <System.Data.SqlTypes.SqlInt645541         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator <=System.Data.SqlTypes.SqlInt645542         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator %System.Data.SqlTypes.SqlInt645543         public static System.Data.SqlTypes.SqlInt64 operator %(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator *System.Data.SqlTypes.SqlInt645544         public static System.Data.SqlTypes.SqlInt64 operator *(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator ~System.Data.SqlTypes.SqlInt645545         public static System.Data.SqlTypes.SqlInt64 operator ~(System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator -System.Data.SqlTypes.SqlInt645546         public static System.Data.SqlTypes.SqlInt64 operator -(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
operator -System.Data.SqlTypes.SqlInt645547         public static System.Data.SqlTypes.SqlInt64 operator -(System.Data.SqlTypes.SqlInt64 x) { throw null; }
ParseSystem.Data.SqlTypes.SqlInt645548         public static System.Data.SqlTypes.SqlInt64 Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlInt645549         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.SqlInt645550         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlInt645551         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlInt645552         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlInt645553         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlInt645554         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlInt645555         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlInt645556         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlInt645557         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlInt645558         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlInt645559         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlInt645560         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlInt645561         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlInt645562         public override string ToString() { throw null; }
XorSystem.Data.SqlTypes.SqlInt645563         public static System.Data.SqlTypes.SqlInt64 Xor(System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y) { throw null; }
5564     }
5565     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5566     [System.SerializableAttribute]
5567     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5568     public partial struct SqlMoney : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5569     {
5570         public static readonly System.Data.SqlTypes.SqlMoney MaxValue;
5571         public static readonly System.Data.SqlTypes.SqlMoney MinValue;
5572         public static readonly System.Data.SqlTypes.SqlMoney Null;
5573         public static readonly System.Data.SqlTypes.SqlMoney Zero;
SqlMoneySystem.Data.SqlTypes.SqlMoney5574         public SqlMoney(decimal value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney5575         public SqlMoney(double value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney5576         public SqlMoney(int value) { throw null;}
SqlMoneySystem.Data.SqlTypes.SqlMoney5577         public SqlMoney(long value) { throw null;}
5578         public bool IsNull { get { throw null; } }
5579         public decimal Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlMoney5580         public static System.Data.SqlTypes.SqlMoney Add(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlMoney5581         public int CompareTo(System.Data.SqlTypes.SqlMoney value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlMoney5582         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlMoney5583         public static System.Data.SqlTypes.SqlMoney Divide(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlMoney5584         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlMoney5585         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlMoney5586         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlMoney5587         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlMoney5588         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlMoney5589         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlMoney5590         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlMoney5591         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlMoney5592         public static System.Data.SqlTypes.SqlMoney Multiply(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlMoney5593         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator +System.Data.SqlTypes.SqlMoney5594         public static System.Data.SqlTypes.SqlMoney operator +(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator /System.Data.SqlTypes.SqlMoney5595         public static System.Data.SqlTypes.SqlMoney operator /(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator ==System.Data.SqlTypes.SqlMoney5596         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.SqlMoney5597         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5598         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5599         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator decimalSystem.Data.SqlTypes.SqlMoney5600         public static explicit operator decimal (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5601         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5602         public static explicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlString x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5603         public static explicit operator System.Data.SqlTypes.SqlMoney (double x) { throw null; }
operator >System.Data.SqlTypes.SqlMoney5604         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator >=System.Data.SqlTypes.SqlMoney5605         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.SqlMoney5606         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5607         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5608         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5609         public static implicit operator System.Data.SqlTypes.SqlMoney (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5610         public static implicit operator System.Data.SqlTypes.SqlMoney (decimal x) { throw null; }
operator System.Data.SqlTypes.SqlMoneySystem.Data.SqlTypes.SqlMoney5611         public static implicit operator System.Data.SqlTypes.SqlMoney (long x) { throw null; }
operator !=System.Data.SqlTypes.SqlMoney5612         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator <System.Data.SqlTypes.SqlMoney5613         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator <=System.Data.SqlTypes.SqlMoney5614         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator *System.Data.SqlTypes.SqlMoney5615         public static System.Data.SqlTypes.SqlMoney operator *(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator -System.Data.SqlTypes.SqlMoney5616         public static System.Data.SqlTypes.SqlMoney operator -(System.Data.SqlTypes.SqlMoney x, System.Data.SqlTypes.SqlMoney y) { throw null; }
operator -System.Data.SqlTypes.SqlMoney5617         public static System.Data.SqlTypes.SqlMoney operator -(System.Data.SqlTypes.SqlMoney x) { throw null; }
ParseSystem.Data.SqlTypes.SqlMoney5618         public static System.Data.SqlTypes.SqlMoney Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlMoney5619         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.SqlMoney5620         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlMoney5621         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlMoney5622         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToDecimalSystem.Data.SqlTypes.SqlMoney5623         public decimal ToDecimal() { throw null; }
ToDoubleSystem.Data.SqlTypes.SqlMoney5624         public double ToDouble() { throw null; }
ToInt32System.Data.SqlTypes.SqlMoney5625         public int ToInt32() { throw null; }
ToInt64System.Data.SqlTypes.SqlMoney5626         public long ToInt64() { throw null; }
ToSqlBooleanSystem.Data.SqlTypes.SqlMoney5627         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlMoney5628         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlMoney5629         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlMoney5630         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlMoney5631         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlMoney5632         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlMoney5633         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlMoney5634         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlMoney5635         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlMoney5636         public override string ToString() { throw null; }
5637     }
5638     [System.SerializableAttribute]
5639     public sealed partial class SqlNotFilledException : System.Data.SqlTypes.SqlTypeException
5640     {
SqlNotFilledException()5641         public SqlNotFilledException() { }
SqlNotFilledException(string message)5642         public SqlNotFilledException(string message) { }
SqlNotFilledException(string message, System.Exception e)5643         public SqlNotFilledException(string message, System.Exception e) { }
5644     }
5645     [System.SerializableAttribute]
5646     public sealed partial class SqlNullValueException : System.Data.SqlTypes.SqlTypeException
5647     {
SqlNullValueException()5648         public SqlNullValueException() { }
SqlNullValueException(string message)5649         public SqlNullValueException(string message) { }
SqlNullValueException(string message, System.Exception e)5650         public SqlNullValueException(string message, System.Exception e) { }
5651     }
5652     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5653     [System.SerializableAttribute]
5654     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5655     public partial struct SqlSingle : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5656     {
5657         public static readonly System.Data.SqlTypes.SqlSingle MaxValue;
5658         public static readonly System.Data.SqlTypes.SqlSingle MinValue;
5659         public static readonly System.Data.SqlTypes.SqlSingle Null;
5660         public static readonly System.Data.SqlTypes.SqlSingle Zero;
SqlSingleSystem.Data.SqlTypes.SqlSingle5661         public SqlSingle(double value) { throw null;}
SqlSingleSystem.Data.SqlTypes.SqlSingle5662         public SqlSingle(float value) { throw null;}
5663         public bool IsNull { get { throw null; } }
5664         public float Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlSingle5665         public static System.Data.SqlTypes.SqlSingle Add(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
CompareToSystem.Data.SqlTypes.SqlSingle5666         public int CompareTo(System.Data.SqlTypes.SqlSingle value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlSingle5667         public int CompareTo(object value) { throw null; }
DivideSystem.Data.SqlTypes.SqlSingle5668         public static System.Data.SqlTypes.SqlSingle Divide(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlSingle5669         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlSingle5670         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlSingle5671         public override int GetHashCode() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlSingle5672         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlSingle5673         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlSingle5674         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlSingle5675         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlSingle5676         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
MultiplySystem.Data.SqlTypes.SqlSingle5677         public static System.Data.SqlTypes.SqlSingle Multiply(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlSingle5678         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator +System.Data.SqlTypes.SqlSingle5679         public static System.Data.SqlTypes.SqlSingle operator +(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator /System.Data.SqlTypes.SqlSingle5680         public static System.Data.SqlTypes.SqlSingle operator /(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator ==System.Data.SqlTypes.SqlSingle5681         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.SqlSingle5682         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5683         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator floatSystem.Data.SqlTypes.SqlSingle5684         public static explicit operator float (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5685         public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlSingle5686         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator >=System.Data.SqlTypes.SqlSingle5687         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.SqlSingle5688         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5689         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5690         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5691         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5692         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5693         public static implicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlSingleSystem.Data.SqlTypes.SqlSingle5694         public static implicit operator System.Data.SqlTypes.SqlSingle (float x) { throw null; }
operator !=System.Data.SqlTypes.SqlSingle5695         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator <System.Data.SqlTypes.SqlSingle5696         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator <=System.Data.SqlTypes.SqlSingle5697         public static System.Data.SqlTypes.SqlBoolean operator <=(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator *System.Data.SqlTypes.SqlSingle5698         public static System.Data.SqlTypes.SqlSingle operator *(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator -System.Data.SqlTypes.SqlSingle5699         public static System.Data.SqlTypes.SqlSingle operator -(System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y) { throw null; }
operator -System.Data.SqlTypes.SqlSingle5700         public static System.Data.SqlTypes.SqlSingle operator -(System.Data.SqlTypes.SqlSingle x) { throw null; }
ParseSystem.Data.SqlTypes.SqlSingle5701         public static System.Data.SqlTypes.SqlSingle Parse(string s) { throw null; }
SubtractSystem.Data.SqlTypes.SqlSingle5702         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.SqlSingle5703         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlSingle5704         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlSingle5705         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlSingle5706         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlSingle5707         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlSingle5708         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlSingle5709         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlSingle5710         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlSingle5711         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlSingle5712         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlSingle5713         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlStringSystem.Data.SqlTypes.SqlSingle5714         public System.Data.SqlTypes.SqlString ToSqlString() { throw null; }
ToStringSystem.Data.SqlTypes.SqlSingle5715         public override string ToString() { throw null; }
5716     }
5717     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5718     [System.SerializableAttribute]
5719     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
5720     public partial struct SqlString : System.Data.SqlTypes.INullable, System.IComparable, System.Xml.Serialization.IXmlSerializable
5721     {
5722         public static readonly int BinarySort;
5723         public static readonly int BinarySort2;
5724         public static readonly int IgnoreCase;
5725         public static readonly int IgnoreKanaType;
5726         public static readonly int IgnoreNonSpace;
5727         public static readonly int IgnoreWidth;
5728         public static readonly System.Data.SqlTypes.SqlString Null;
SqlStringSystem.Data.SqlTypes.SqlString5729         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5730         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, bool fUnicode) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5731         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5732         public SqlString(int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions, byte[] data, int index, int count, bool fUnicode) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5733         public SqlString(string data) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5734         public SqlString(string data, int lcid) { throw null;}
SqlStringSystem.Data.SqlTypes.SqlString5735         public SqlString(string data, int lcid, System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw null;}
5736         public System.Globalization.CompareInfo CompareInfo { get { throw null; } }
5737         public System.Globalization.CultureInfo CultureInfo { get { throw null; } }
5738         public bool IsNull { get { throw null; } }
5739         public int LCID { get { throw null; } }
5740         public System.Data.SqlTypes.SqlCompareOptions SqlCompareOptions { get { throw null; } }
5741         public string Value { get { throw null; } }
AddSystem.Data.SqlTypes.SqlString5742         public static System.Data.SqlTypes.SqlString Add(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
CloneSystem.Data.SqlTypes.SqlString5743         public System.Data.SqlTypes.SqlString Clone() { throw null; }
CompareOptionsFromSqlCompareOptionsSystem.Data.SqlTypes.SqlString5744         public static System.Globalization.CompareOptions CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw null; }
CompareToSystem.Data.SqlTypes.SqlString5745         public int CompareTo(System.Data.SqlTypes.SqlString value) { throw null; }
CompareToSystem.Data.SqlTypes.SqlString5746         public int CompareTo(object value) { throw null; }
ConcatSystem.Data.SqlTypes.SqlString5747         public static System.Data.SqlTypes.SqlString Concat(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlString5748         public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
EqualsSystem.Data.SqlTypes.SqlString5749         public override bool Equals(object value) { throw null; }
GetHashCodeSystem.Data.SqlTypes.SqlString5750         public override int GetHashCode() { throw null; }
GetNonUnicodeBytesSystem.Data.SqlTypes.SqlString5751         public byte[] GetNonUnicodeBytes() { throw null; }
GetUnicodeBytesSystem.Data.SqlTypes.SqlString5752         public byte[] GetUnicodeBytes() { throw null; }
GetXsdTypeSystem.Data.SqlTypes.SqlString5753         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
GreaterThanSystem.Data.SqlTypes.SqlString5754         public static System.Data.SqlTypes.SqlBoolean GreaterThan(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
GreaterThanOrEqualSystem.Data.SqlTypes.SqlString5755         public static System.Data.SqlTypes.SqlBoolean GreaterThanOrEqual(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
LessThanSystem.Data.SqlTypes.SqlString5756         public static System.Data.SqlTypes.SqlBoolean LessThan(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
LessThanOrEqualSystem.Data.SqlTypes.SqlString5757         public static System.Data.SqlTypes.SqlBoolean LessThanOrEqual(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
NotEqualsSystem.Data.SqlTypes.SqlString5758         public static System.Data.SqlTypes.SqlBoolean NotEquals(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator +System.Data.SqlTypes.SqlString5759         public static System.Data.SqlTypes.SqlString operator +(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator ==System.Data.SqlTypes.SqlString5760         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.SqlString5761         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlBoolean x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5762         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlByte x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5763         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDateTime x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5764         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDecimal x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5765         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlDouble x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5766         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlGuid x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5767         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt16 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5768         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt32 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5769         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlInt64 x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5770         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlMoney x) { throw null; }
operator System.Data.SqlTypes.SqlStringSystem.Data.SqlTypes.SqlString5771         public static explicit operator System.Data.SqlTypes.SqlString (System.Data.SqlTypes.SqlSingle x) { throw null; }
operator stringSystem.Data.SqlTypes.SqlString5772         public static explicit operator string (System.Data.SqlTypes.SqlString x) { throw null; }
operator >System.Data.SqlTypes.SqlString5773         public static System.Data.SqlTypes.SqlBoolean operator >(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator >=System.Data.SqlTypes.SqlString5774         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.SqlString5775         public static implicit operator System.Data.SqlTypes.SqlString (string x) { throw null; }
operator !=System.Data.SqlTypes.SqlString5776         public static System.Data.SqlTypes.SqlBoolean operator !=(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator <System.Data.SqlTypes.SqlString5777         public static System.Data.SqlTypes.SqlBoolean operator <(System.Data.SqlTypes.SqlString x, System.Data.SqlTypes.SqlString y) { throw null; }
operator <=System.Data.SqlTypes.SqlString5778         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.SqlString5779         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXmlSystem.Data.SqlTypes.SqlString5780         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader reader) { }
System.Xml.Serialization.IXmlSerializable.WriteXmlSystem.Data.SqlTypes.SqlString5781         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
ToSqlBooleanSystem.Data.SqlTypes.SqlString5782         public System.Data.SqlTypes.SqlBoolean ToSqlBoolean() { throw null; }
ToSqlByteSystem.Data.SqlTypes.SqlString5783         public System.Data.SqlTypes.SqlByte ToSqlByte() { throw null; }
ToSqlDateTimeSystem.Data.SqlTypes.SqlString5784         public System.Data.SqlTypes.SqlDateTime ToSqlDateTime() { throw null; }
ToSqlDecimalSystem.Data.SqlTypes.SqlString5785         public System.Data.SqlTypes.SqlDecimal ToSqlDecimal() { throw null; }
ToSqlDoubleSystem.Data.SqlTypes.SqlString5786         public System.Data.SqlTypes.SqlDouble ToSqlDouble() { throw null; }
ToSqlGuidSystem.Data.SqlTypes.SqlString5787         public System.Data.SqlTypes.SqlGuid ToSqlGuid() { throw null; }
ToSqlInt16System.Data.SqlTypes.SqlString5788         public System.Data.SqlTypes.SqlInt16 ToSqlInt16() { throw null; }
ToSqlInt32System.Data.SqlTypes.SqlString5789         public System.Data.SqlTypes.SqlInt32 ToSqlInt32() { throw null; }
ToSqlInt64System.Data.SqlTypes.SqlString5790         public System.Data.SqlTypes.SqlInt64 ToSqlInt64() { throw null; }
ToSqlMoneySystem.Data.SqlTypes.SqlString5791         public System.Data.SqlTypes.SqlMoney ToSqlMoney() { throw null; }
ToSqlSingleSystem.Data.SqlTypes.SqlString5792         public System.Data.SqlTypes.SqlSingle ToSqlSingle() { throw null; }
ToStringSystem.Data.SqlTypes.SqlString5793         public override string ToString() { throw null; }
5794     }
5795     [System.SerializableAttribute]
5796     public sealed partial class SqlTruncateException : System.Data.SqlTypes.SqlTypeException
5797     {
SqlTruncateException()5798         public SqlTruncateException() { }
SqlTruncateException(string message)5799         public SqlTruncateException(string message) { }
SqlTruncateException(string message, System.Exception e)5800         public SqlTruncateException(string message, System.Exception e) { }
5801     }
5802     [System.SerializableAttribute]
5803     public partial class SqlTypeException : System.SystemException
5804     {
SqlTypeException()5805         public SqlTypeException() { }
SqlTypeException(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc)5806         protected SqlTypeException(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext sc) { }
SqlTypeException(string message)5807         public SqlTypeException(string message) { }
SqlTypeException(string message, System.Exception e)5808         public SqlTypeException(string message, System.Exception e) { }
5809     }
5810     public partial class SqlTypesSchemaImporterExtensionHelper : System.Xml.Serialization.Advanced.SchemaImporterExtension
5811     {
5812         protected static readonly string SqlTypesNamespace;
SqlTypesSchemaImporterExtensionHelper(string name, string destinationType)5813         public SqlTypesSchemaImporterExtensionHelper(string name, string destinationType) { }
SqlTypesSchemaImporterExtensionHelper(string name, string destinationType, bool direct)5814         public SqlTypesSchemaImporterExtensionHelper(string name, string destinationType, bool direct) { }
SqlTypesSchemaImporterExtensionHelper(string name, string targetNamespace, string[] references, System.CodeDom.CodeNamespaceImport[] namespaceImports, string destinationType, bool direct)5815         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)5816         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)5817         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; }
5818     }
5819     [System.Xml.Serialization.XmlSchemaProviderAttribute("GetXsdType")]
5820     [System.SerializableAttribute]
5821     public sealed partial class SqlXml : System.Data.SqlTypes.INullable, System.Xml.Serialization.IXmlSerializable
5822     {
SqlXml()5823         public SqlXml() { }
SqlXml(System.IO.Stream value)5824         public SqlXml(System.IO.Stream value) { }
SqlXml(System.Xml.XmlReader value)5825         public SqlXml(System.Xml.XmlReader value) { }
5826         public bool IsNull { get { throw null; } }
5827         public static System.Data.SqlTypes.SqlXml Null { get { throw null; } }
5828         public string Value { get { throw null; } }
CreateReader()5829         public System.Xml.XmlReader CreateReader() { throw null; }
GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet)5830         public static System.Xml.XmlQualifiedName GetXsdType(System.Xml.Schema.XmlSchemaSet schemaSet) { throw null; }
System.Xml.Serialization.IXmlSerializable.GetSchema()5831         System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.GetSchema() { throw null; }
System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r)5832         void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader r) { }
System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer)5833         void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter writer) { }
5834     }
5835     public enum StorageState
5836     {
5837         Buffer = 0,
5838         Stream = 1,
5839         UnmanagedBuffer = 2,
5840     }
5841     public sealed partial class TypeBigIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5842     {
TypeBigIntSchemaImporterExtension()5843         public TypeBigIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5844     }
5845     public sealed partial class TypeBinarySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5846     {
TypeBinarySchemaImporterExtension()5847         public TypeBinarySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5848     }
5849     public sealed partial class TypeBitSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5850     {
TypeBitSchemaImporterExtension()5851         public TypeBitSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5852     }
5853     public sealed partial class TypeCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5854     {
TypeCharSchemaImporterExtension()5855         public TypeCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5856     }
5857     public sealed partial class TypeDateTimeSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5858     {
TypeDateTimeSchemaImporterExtension()5859         public TypeDateTimeSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5860     }
5861     public sealed partial class TypeDecimalSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5862     {
TypeDecimalSchemaImporterExtension()5863         public TypeDecimalSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5864     }
5865     public sealed partial class TypeFloatSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5866     {
TypeFloatSchemaImporterExtension()5867         public TypeFloatSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5868     }
5869     public sealed partial class TypeIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5870     {
TypeIntSchemaImporterExtension()5871         public TypeIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5872     }
5873     public sealed partial class TypeMoneySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5874     {
TypeMoneySchemaImporterExtension()5875         public TypeMoneySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5876     }
5877     public sealed partial class TypeNCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5878     {
TypeNCharSchemaImporterExtension()5879         public TypeNCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5880     }
5881     public sealed partial class TypeNTextSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5882     {
TypeNTextSchemaImporterExtension()5883         public TypeNTextSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5884     }
5885     public sealed partial class TypeNumericSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5886     {
TypeNumericSchemaImporterExtension()5887         public TypeNumericSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5888     }
5889     public sealed partial class TypeNVarCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5890     {
TypeNVarCharSchemaImporterExtension()5891         public TypeNVarCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5892     }
5893     public sealed partial class TypeRealSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5894     {
TypeRealSchemaImporterExtension()5895         public TypeRealSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5896     }
5897     public sealed partial class TypeSmallDateTimeSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5898     {
TypeSmallDateTimeSchemaImporterExtension()5899         public TypeSmallDateTimeSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5900     }
5901     public sealed partial class TypeSmallIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5902     {
TypeSmallIntSchemaImporterExtension()5903         public TypeSmallIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5904     }
5905     public sealed partial class TypeSmallMoneySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5906     {
TypeSmallMoneySchemaImporterExtension()5907         public TypeSmallMoneySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5908     }
5909     public sealed partial class TypeTextSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5910     {
TypeTextSchemaImporterExtension()5911         public TypeTextSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5912     }
5913     public sealed partial class TypeTinyIntSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5914     {
TypeTinyIntSchemaImporterExtension()5915         public TypeTinyIntSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5916     }
5917     public sealed partial class TypeUniqueIdentifierSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5918     {
TypeUniqueIdentifierSchemaImporterExtension()5919         public TypeUniqueIdentifierSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5920     }
5921     public sealed partial class TypeVarBinarySchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5922     {
TypeVarBinarySchemaImporterExtension()5923         public TypeVarBinarySchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5924     }
5925     public sealed partial class TypeVarCharSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5926     {
TypeVarCharSchemaImporterExtension()5927         public TypeVarCharSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5928     }
5929     public sealed partial class TypeVarImageSchemaImporterExtension : System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper
5930     {
TypeVarImageSchemaImporterExtension()5931         public TypeVarImageSchemaImporterExtension() : base (default(string), default(string), default(string[]), default(System.CodeDom.CodeNamespaceImport[]), default(string), default(bool)) { }
5932     }
5933 }
5934 namespace System.Xml
5935 {
5936     [System.ObsoleteAttribute("XmlDataDocument class will be removed in a future release.")]
5937     [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true)]
5938     public partial class XmlDataDocument : System.Xml.XmlDocument
5939     {
XmlDataDocument()5940         public XmlDataDocument() { }
XmlDataDocument(System.Data.DataSet dataset)5941         public XmlDataDocument(System.Data.DataSet dataset) { }
5942         public System.Data.DataSet DataSet { get { throw null; } }
CloneNode(bool deep)5943         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
CreateElement(string prefix, string localName, string namespaceURI)5944         public override System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceURI) { throw null; }
CreateEntityReference(string name)5945         public override System.Xml.XmlEntityReference CreateEntityReference(string name) { throw null; }
CreateNavigator(System.Xml.XmlNode node)5946         protected override System.Xml.XPath.XPathNavigator CreateNavigator(System.Xml.XmlNode node) { throw null; }
GetElementById(string elemId)5947         public override System.Xml.XmlElement GetElementById(string elemId) { throw null; }
GetElementFromRow(System.Data.DataRow r)5948         public System.Xml.XmlElement GetElementFromRow(System.Data.DataRow r) { throw null; }
GetElementsByTagName(string name)5949         public override System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetRowFromElement(System.Xml.XmlElement e)5950         public System.Data.DataRow GetRowFromElement(System.Xml.XmlElement e) { throw null; }
Load(System.IO.Stream inStream)5951         public override void Load(System.IO.Stream inStream) { }
Load(System.IO.TextReader txtReader)5952         public override void Load(System.IO.TextReader txtReader) { }
Load(string filename)5953         public override void Load(string filename) { }
Load(System.Xml.XmlReader reader)5954         public override void Load(System.Xml.XmlReader reader) { }
5955     }
5956 }
5957