@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -63,6 +63,8 @@ export enum SupportedJoinOperators {
|
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
export interface IDbColumnSchemaGenerator$instance {
|
|
66
|
+
readonly __tsonic_iface_System_Data_Common_IDbColumnSchemaGenerator: never;
|
|
67
|
+
|
|
66
68
|
GetColumnSchema(): ReadOnlyCollection_1<DbColumn>;
|
|
67
69
|
}
|
|
68
70
|
|
|
@@ -70,6 +72,12 @@ export interface IDbColumnSchemaGenerator$instance {
|
|
|
70
72
|
export type IDbColumnSchemaGenerator = IDbColumnSchemaGenerator$instance;
|
|
71
73
|
|
|
72
74
|
export interface DataAdapter$instance extends Component {
|
|
75
|
+
readonly __tsonic_type_System_Data_Common_DataAdapter: never;
|
|
76
|
+
|
|
77
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
78
|
+
readonly __tsonic_iface_System_Data_IDataAdapter: never;
|
|
79
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
80
|
+
|
|
73
81
|
AcceptChangesDuringFill: boolean;
|
|
74
82
|
AcceptChangesDuringUpdate: boolean;
|
|
75
83
|
ContinueUpdateOnError: boolean;
|
|
@@ -112,7 +120,12 @@ export interface __DataAdapter$views {
|
|
|
112
120
|
export type DataAdapter = DataAdapter$instance & __DataAdapter$views;
|
|
113
121
|
|
|
114
122
|
|
|
115
|
-
export interface DataColumnMapping$instance extends MarshalByRefObject {
|
|
123
|
+
export interface DataColumnMapping$instance extends MarshalByRefObject, System_Data_Internal.IColumnMapping$instance, System_Internal.ICloneable$instance {
|
|
124
|
+
readonly __tsonic_type_System_Data_Common_DataColumnMapping: never;
|
|
125
|
+
|
|
126
|
+
readonly __tsonic_iface_System_Data_IColumnMapping: never;
|
|
127
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
128
|
+
|
|
116
129
|
DataSetColumn: string;
|
|
117
130
|
SourceColumn: string;
|
|
118
131
|
GetDataColumnBySchemaAction(dataTable: DataTable, dataType: Type, schemaAction: MissingSchemaAction): DataColumn | undefined;
|
|
@@ -132,12 +145,17 @@ export interface __DataColumnMapping$views {
|
|
|
132
145
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
133
146
|
}
|
|
134
147
|
|
|
135
|
-
export interface DataColumnMapping$instance extends System_Data_Internal.IColumnMapping$instance, System_Internal.ICloneable$instance {}
|
|
136
|
-
|
|
137
148
|
export type DataColumnMapping = DataColumnMapping$instance & __DataColumnMapping$views;
|
|
138
149
|
|
|
139
150
|
|
|
140
151
|
export interface DataColumnMappingCollection$instance extends MarshalByRefObject {
|
|
152
|
+
readonly __tsonic_type_System_Data_Common_DataColumnMappingCollection: never;
|
|
153
|
+
|
|
154
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
155
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
156
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
157
|
+
readonly __tsonic_iface_System_Data_IColumnMappingCollection: never;
|
|
158
|
+
|
|
141
159
|
readonly Count: int;
|
|
142
160
|
Add(value: unknown): int;
|
|
143
161
|
Add(sourceColumn: string, dataSetColumn: string): DataColumnMapping;
|
|
@@ -183,7 +201,12 @@ export interface __DataColumnMappingCollection$views {
|
|
|
183
201
|
export type DataColumnMappingCollection = DataColumnMappingCollection$instance & __DataColumnMappingCollection$views;
|
|
184
202
|
|
|
185
203
|
|
|
186
|
-
export interface DataTableMapping$instance extends MarshalByRefObject {
|
|
204
|
+
export interface DataTableMapping$instance extends MarshalByRefObject, System_Internal.ICloneable$instance {
|
|
205
|
+
readonly __tsonic_type_System_Data_Common_DataTableMapping: never;
|
|
206
|
+
|
|
207
|
+
readonly __tsonic_iface_System_Data_ITableMapping: never;
|
|
208
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
209
|
+
|
|
187
210
|
readonly ColumnMappings: DataColumnMappingCollection;
|
|
188
211
|
DataSetTable: string;
|
|
189
212
|
SourceTable: string;
|
|
@@ -206,12 +229,17 @@ export interface __DataTableMapping$views {
|
|
|
206
229
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
207
230
|
}
|
|
208
231
|
|
|
209
|
-
export interface DataTableMapping$instance extends System_Internal.ICloneable$instance {}
|
|
210
|
-
|
|
211
232
|
export type DataTableMapping = DataTableMapping$instance & __DataTableMapping$views;
|
|
212
233
|
|
|
213
234
|
|
|
214
235
|
export interface DataTableMappingCollection$instance extends MarshalByRefObject {
|
|
236
|
+
readonly __tsonic_type_System_Data_Common_DataTableMappingCollection: never;
|
|
237
|
+
|
|
238
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
239
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
240
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
241
|
+
readonly __tsonic_iface_System_Data_ITableMappingCollection: never;
|
|
242
|
+
|
|
215
243
|
readonly Count: int;
|
|
216
244
|
Add(value: unknown): int;
|
|
217
245
|
Add(sourceTable: string, dataSetTable: string): DataTableMapping;
|
|
@@ -256,7 +284,12 @@ export interface __DataTableMappingCollection$views {
|
|
|
256
284
|
export type DataTableMappingCollection = DataTableMappingCollection$instance & __DataTableMappingCollection$views;
|
|
257
285
|
|
|
258
286
|
|
|
259
|
-
export interface DbBatch$instance {
|
|
287
|
+
export interface DbBatch$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {
|
|
288
|
+
readonly __tsonic_type_System_Data_Common_DbBatch: never;
|
|
289
|
+
|
|
290
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
291
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
292
|
+
|
|
260
293
|
readonly BatchCommands: DbBatchCommandCollection;
|
|
261
294
|
get Connection(): DbConnection | undefined;
|
|
262
295
|
set Connection(value: DbConnection | undefined);
|
|
@@ -296,12 +329,12 @@ export interface __DbBatch$views {
|
|
|
296
329
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
297
330
|
}
|
|
298
331
|
|
|
299
|
-
export interface DbBatch$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {}
|
|
300
|
-
|
|
301
332
|
export type DbBatch = DbBatch$instance & __DbBatch$views;
|
|
302
333
|
|
|
303
334
|
|
|
304
335
|
export interface DbBatchCommand$instance {
|
|
336
|
+
readonly __tsonic_type_System_Data_Common_DbBatchCommand: never;
|
|
337
|
+
|
|
305
338
|
readonly CanCreateParameter: boolean;
|
|
306
339
|
CommandText: string;
|
|
307
340
|
CommandType: CommandType;
|
|
@@ -319,6 +352,13 @@ export const DbBatchCommand: (abstract new() => DbBatchCommand) & {
|
|
|
319
352
|
export type DbBatchCommand = DbBatchCommand$instance;
|
|
320
353
|
|
|
321
354
|
export interface DbBatchCommandCollection$instance {
|
|
355
|
+
readonly __tsonic_type_System_Data_Common_DbBatchCommandCollection: never;
|
|
356
|
+
|
|
357
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
358
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
359
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
360
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
361
|
+
|
|
322
362
|
readonly Count: int;
|
|
323
363
|
readonly IsReadOnly: boolean;
|
|
324
364
|
[index: number]: DbBatchCommand;
|
|
@@ -351,6 +391,8 @@ export type DbBatchCommandCollection = DbBatchCommandCollection$instance & __DbB
|
|
|
351
391
|
|
|
352
392
|
|
|
353
393
|
export interface DbColumn$instance {
|
|
394
|
+
readonly __tsonic_type_System_Data_Common_DbColumn: never;
|
|
395
|
+
|
|
354
396
|
AllowDBNull: Nullable_1<System_Internal.Boolean>;
|
|
355
397
|
get BaseCatalogName(): string | undefined;
|
|
356
398
|
set BaseCatalogName(value: string | undefined);
|
|
@@ -392,7 +434,14 @@ export const DbColumn: (abstract new() => DbColumn) & {
|
|
|
392
434
|
|
|
393
435
|
export type DbColumn = DbColumn$instance;
|
|
394
436
|
|
|
395
|
-
export interface DbCommand$instance extends Component {
|
|
437
|
+
export interface DbCommand$instance extends Component, System_Internal.IAsyncDisposable$instance {
|
|
438
|
+
readonly __tsonic_type_System_Data_Common_DbCommand: never;
|
|
439
|
+
|
|
440
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
441
|
+
readonly __tsonic_iface_System_Data_IDbCommand: never;
|
|
442
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
443
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
444
|
+
|
|
396
445
|
CommandText: string;
|
|
397
446
|
CommandTimeout: int;
|
|
398
447
|
CommandType: CommandType;
|
|
@@ -444,12 +493,15 @@ export interface __DbCommand$views {
|
|
|
444
493
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
445
494
|
}
|
|
446
495
|
|
|
447
|
-
export interface DbCommand$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
448
|
-
|
|
449
496
|
export type DbCommand = DbCommand$instance & __DbCommand$views;
|
|
450
497
|
|
|
451
498
|
|
|
452
499
|
export interface DbCommandBuilder$instance extends Component {
|
|
500
|
+
readonly __tsonic_type_System_Data_Common_DbCommandBuilder: never;
|
|
501
|
+
|
|
502
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
503
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
504
|
+
|
|
453
505
|
CatalogLocation: CatalogLocation;
|
|
454
506
|
CatalogSeparator: string;
|
|
455
507
|
ConflictOption: ConflictOption;
|
|
@@ -492,7 +544,14 @@ export interface __DbCommandBuilder$views {
|
|
|
492
544
|
export type DbCommandBuilder = DbCommandBuilder$instance & __DbCommandBuilder$views;
|
|
493
545
|
|
|
494
546
|
|
|
495
|
-
export interface DbConnection$instance extends Component {
|
|
547
|
+
export interface DbConnection$instance extends Component, System_Internal.IAsyncDisposable$instance {
|
|
548
|
+
readonly __tsonic_type_System_Data_Common_DbConnection: never;
|
|
549
|
+
|
|
550
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
551
|
+
readonly __tsonic_iface_System_Data_IDbConnection: never;
|
|
552
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
553
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
554
|
+
|
|
496
555
|
readonly CanCreateBatch: boolean;
|
|
497
556
|
ConnectionString: string;
|
|
498
557
|
readonly ConnectionTimeout: int;
|
|
@@ -543,12 +602,17 @@ export interface __DbConnection$views {
|
|
|
543
602
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
544
603
|
}
|
|
545
604
|
|
|
546
|
-
export interface DbConnection$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
547
|
-
|
|
548
605
|
export type DbConnection = DbConnection$instance & __DbConnection$views;
|
|
549
606
|
|
|
550
607
|
|
|
551
608
|
export interface DbConnectionStringBuilder$instance {
|
|
609
|
+
readonly __tsonic_type_System_Data_Common_DbConnectionStringBuilder: never;
|
|
610
|
+
|
|
611
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
612
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
613
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
614
|
+
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
615
|
+
|
|
552
616
|
BrowsableConnectionString: boolean;
|
|
553
617
|
ConnectionString: string;
|
|
554
618
|
readonly Count: int;
|
|
@@ -587,7 +651,15 @@ export interface __DbConnectionStringBuilder$views {
|
|
|
587
651
|
export type DbConnectionStringBuilder = DbConnectionStringBuilder$instance & __DbConnectionStringBuilder$views;
|
|
588
652
|
|
|
589
653
|
|
|
590
|
-
export interface DbDataAdapter$instance extends DataAdapter$instance {
|
|
654
|
+
export interface DbDataAdapter$instance extends DataAdapter$instance, System_Internal.ICloneable$instance {
|
|
655
|
+
readonly __tsonic_type_System_Data_Common_DbDataAdapter: never;
|
|
656
|
+
|
|
657
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
658
|
+
readonly __tsonic_iface_System_Data_IDataAdapter: never;
|
|
659
|
+
readonly __tsonic_iface_System_Data_IDbDataAdapter: never;
|
|
660
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
661
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
662
|
+
|
|
591
663
|
get DeleteCommand(): DbCommand | undefined;
|
|
592
664
|
set DeleteCommand(value: DbCommand | undefined);
|
|
593
665
|
get InsertCommand(): DbCommand | undefined;
|
|
@@ -640,12 +712,18 @@ export interface __DbDataAdapter$views {
|
|
|
640
712
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
641
713
|
}
|
|
642
714
|
|
|
643
|
-
export interface DbDataAdapter$instance extends System_Internal.ICloneable$instance {}
|
|
644
|
-
|
|
645
715
|
export type DbDataAdapter = DbDataAdapter$instance & __DbDataAdapter$views;
|
|
646
716
|
|
|
647
717
|
|
|
648
|
-
export interface DbDataReader$instance extends MarshalByRefObject {
|
|
718
|
+
export interface DbDataReader$instance extends MarshalByRefObject, System_Internal.IAsyncDisposable$instance {
|
|
719
|
+
readonly __tsonic_type_System_Data_Common_DbDataReader: never;
|
|
720
|
+
|
|
721
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
722
|
+
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
723
|
+
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
724
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
725
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
726
|
+
|
|
649
727
|
readonly Depth: int;
|
|
650
728
|
readonly FieldCount: int;
|
|
651
729
|
readonly HasRows: boolean;
|
|
@@ -717,12 +795,15 @@ export interface __DbDataReader$views {
|
|
|
717
795
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
718
796
|
}
|
|
719
797
|
|
|
720
|
-
export interface DbDataReader$instance extends System_Collections_Internal.IEnumerable$instance, System_Internal.IAsyncDisposable$instance {}
|
|
721
|
-
|
|
722
798
|
export type DbDataReader = DbDataReader$instance & __DbDataReader$views;
|
|
723
799
|
|
|
724
800
|
|
|
725
|
-
export interface DbDataRecord$instance {
|
|
801
|
+
export interface DbDataRecord$instance extends System_ComponentModel_Internal.ICustomTypeDescriptor$instance, System_Data_Internal.IDataRecord$instance {
|
|
802
|
+
readonly __tsonic_type_System_Data_Common_DbDataRecord: never;
|
|
803
|
+
|
|
804
|
+
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
805
|
+
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
806
|
+
|
|
726
807
|
readonly FieldCount: int;
|
|
727
808
|
get_Item(i: int): unknown;
|
|
728
809
|
get_Item(name: string): unknown;
|
|
@@ -761,12 +842,15 @@ export interface __DbDataRecord$views {
|
|
|
761
842
|
As_IDataRecord(): System_Data_Internal.IDataRecord$instance;
|
|
762
843
|
}
|
|
763
844
|
|
|
764
|
-
export interface DbDataRecord$instance extends System_ComponentModel_Internal.ICustomTypeDescriptor$instance, System_Data_Internal.IDataRecord$instance {}
|
|
765
|
-
|
|
766
845
|
export type DbDataRecord = DbDataRecord$instance & __DbDataRecord$views;
|
|
767
846
|
|
|
768
847
|
|
|
769
|
-
export interface DbDataSource$instance {
|
|
848
|
+
export interface DbDataSource$instance extends System_Internal.IAsyncDisposable$instance {
|
|
849
|
+
readonly __tsonic_type_System_Data_Common_DbDataSource: never;
|
|
850
|
+
|
|
851
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
852
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
853
|
+
|
|
770
854
|
readonly ConnectionString: string;
|
|
771
855
|
CreateBatch(): DbBatch;
|
|
772
856
|
CreateCommand(commandText?: string): DbCommand;
|
|
@@ -794,12 +878,12 @@ export interface __DbDataSource$views {
|
|
|
794
878
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
795
879
|
}
|
|
796
880
|
|
|
797
|
-
export interface DbDataSource$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
798
|
-
|
|
799
881
|
export type DbDataSource = DbDataSource$instance & __DbDataSource$views;
|
|
800
882
|
|
|
801
883
|
|
|
802
884
|
export interface DbDataSourceEnumerator$instance {
|
|
885
|
+
readonly __tsonic_type_System_Data_Common_DbDataSourceEnumerator: never;
|
|
886
|
+
|
|
803
887
|
GetDataSources(): DataTable;
|
|
804
888
|
}
|
|
805
889
|
|
|
@@ -811,6 +895,10 @@ export const DbDataSourceEnumerator: (abstract new() => DbDataSourceEnumerator)
|
|
|
811
895
|
export type DbDataSourceEnumerator = DbDataSourceEnumerator$instance;
|
|
812
896
|
|
|
813
897
|
export interface DbEnumerator$instance {
|
|
898
|
+
readonly __tsonic_type_System_Data_Common_DbEnumerator: never;
|
|
899
|
+
|
|
900
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
901
|
+
|
|
814
902
|
readonly Current: unknown;
|
|
815
903
|
MoveNext(): boolean;
|
|
816
904
|
Reset(): void;
|
|
@@ -829,12 +917,14 @@ export interface __DbEnumerator$views {
|
|
|
829
917
|
As_IEnumerator(): System_Collections_Internal.IEnumerator$instance;
|
|
830
918
|
}
|
|
831
919
|
|
|
832
|
-
export interface DbEnumerator$instance extends System_Collections_Internal.IEnumerator$instance {}
|
|
833
|
-
|
|
834
920
|
export type DbEnumerator = DbEnumerator$instance & __DbEnumerator$views;
|
|
835
921
|
|
|
836
922
|
|
|
837
923
|
export interface DbException$instance extends ExternalException {
|
|
924
|
+
readonly __tsonic_type_System_Data_Common_DbException: never;
|
|
925
|
+
|
|
926
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
927
|
+
|
|
838
928
|
readonly BatchCommand: DbBatchCommand | undefined;
|
|
839
929
|
readonly DbBatchCommand: DbBatchCommand | undefined;
|
|
840
930
|
readonly IsTransient: boolean;
|
|
@@ -855,6 +945,11 @@ export type DbException = DbException$instance & __DbException$views;
|
|
|
855
945
|
|
|
856
946
|
|
|
857
947
|
export interface DbParameter$instance extends MarshalByRefObject {
|
|
948
|
+
readonly __tsonic_type_System_Data_Common_DbParameter: never;
|
|
949
|
+
|
|
950
|
+
readonly __tsonic_iface_System_Data_IDataParameter: never;
|
|
951
|
+
readonly __tsonic_iface_System_Data_IDbDataParameter: never;
|
|
952
|
+
|
|
858
953
|
DbType: DbType;
|
|
859
954
|
Direction: ParameterDirection;
|
|
860
955
|
IsNullable: boolean;
|
|
@@ -884,6 +979,13 @@ export type DbParameter = DbParameter$instance & __DbParameter$views;
|
|
|
884
979
|
|
|
885
980
|
|
|
886
981
|
export interface DbParameterCollection$instance extends MarshalByRefObject {
|
|
982
|
+
readonly __tsonic_type_System_Data_Common_DbParameterCollection: never;
|
|
983
|
+
|
|
984
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
985
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
986
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
987
|
+
readonly __tsonic_iface_System_Data_IDataParameterCollection: never;
|
|
988
|
+
|
|
887
989
|
readonly Count: int;
|
|
888
990
|
readonly IsFixedSize: boolean;
|
|
889
991
|
readonly IsReadOnly: boolean;
|
|
@@ -928,6 +1030,8 @@ export type DbParameterCollection = DbParameterCollection$instance & __DbParamet
|
|
|
928
1030
|
|
|
929
1031
|
|
|
930
1032
|
export interface DbProviderFactory$instance {
|
|
1033
|
+
readonly __tsonic_type_System_Data_Common_DbProviderFactory: never;
|
|
1034
|
+
|
|
931
1035
|
readonly CanCreateBatch: boolean;
|
|
932
1036
|
readonly CanCreateCommandBuilder: boolean;
|
|
933
1037
|
readonly CanCreateDataAdapter: boolean;
|
|
@@ -952,6 +1056,8 @@ export const DbProviderFactory: (abstract new() => DbProviderFactory) & {
|
|
|
952
1056
|
export type DbProviderFactory = DbProviderFactory$instance;
|
|
953
1057
|
|
|
954
1058
|
export interface DbProviderSpecificTypePropertyAttribute$instance extends Attribute {
|
|
1059
|
+
readonly __tsonic_type_System_Data_Common_DbProviderSpecificTypePropertyAttribute: never;
|
|
1060
|
+
|
|
955
1061
|
readonly IsProviderSpecificTypeProperty: boolean;
|
|
956
1062
|
}
|
|
957
1063
|
|
|
@@ -963,7 +1069,13 @@ export const DbProviderSpecificTypePropertyAttribute: {
|
|
|
963
1069
|
|
|
964
1070
|
export type DbProviderSpecificTypePropertyAttribute = DbProviderSpecificTypePropertyAttribute$instance;
|
|
965
1071
|
|
|
966
|
-
export interface DbTransaction$instance extends MarshalByRefObject {
|
|
1072
|
+
export interface DbTransaction$instance extends MarshalByRefObject, System_Internal.IAsyncDisposable$instance {
|
|
1073
|
+
readonly __tsonic_type_System_Data_Common_DbTransaction: never;
|
|
1074
|
+
|
|
1075
|
+
readonly __tsonic_iface_System_Data_IDbTransaction: never;
|
|
1076
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1077
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1078
|
+
|
|
967
1079
|
readonly Connection: DbConnection | undefined;
|
|
968
1080
|
readonly DbConnection: DbConnection | undefined;
|
|
969
1081
|
readonly IsolationLevel: IsolationLevel;
|
|
@@ -994,12 +1106,12 @@ export interface __DbTransaction$views {
|
|
|
994
1106
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
995
1107
|
}
|
|
996
1108
|
|
|
997
|
-
export interface DbTransaction$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
998
|
-
|
|
999
1109
|
export type DbTransaction = DbTransaction$instance & __DbTransaction$views;
|
|
1000
1110
|
|
|
1001
1111
|
|
|
1002
1112
|
export interface RowUpdatedEventArgs$instance extends EventArgs {
|
|
1113
|
+
readonly __tsonic_type_System_Data_Common_RowUpdatedEventArgs: never;
|
|
1114
|
+
|
|
1003
1115
|
readonly Command: IDbCommand | undefined;
|
|
1004
1116
|
get Errors(): Exception | undefined;
|
|
1005
1117
|
set Errors(value: Exception | undefined);
|
|
@@ -1022,6 +1134,8 @@ export const RowUpdatedEventArgs: {
|
|
|
1022
1134
|
export type RowUpdatedEventArgs = RowUpdatedEventArgs$instance;
|
|
1023
1135
|
|
|
1024
1136
|
export interface RowUpdatingEventArgs$instance extends EventArgs {
|
|
1137
|
+
readonly __tsonic_type_System_Data_Common_RowUpdatingEventArgs: never;
|
|
1138
|
+
|
|
1025
1139
|
get BaseCommand(): IDbCommand | undefined;
|
|
1026
1140
|
set BaseCommand(value: IDbCommand | undefined);
|
|
1027
1141
|
get Command(): IDbCommand | undefined;
|