@tsonic/dotnet 10.0.5 → 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 +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -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 +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -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 +12 -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 +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -72,6 +72,8 @@ export interface IDbColumnSchemaGenerator$instance {
|
|
|
72
72
|
export type IDbColumnSchemaGenerator = IDbColumnSchemaGenerator$instance;
|
|
73
73
|
|
|
74
74
|
export interface DataAdapter$instance extends Component {
|
|
75
|
+
readonly __tsonic_type_System_Data_Common_DataAdapter: never;
|
|
76
|
+
|
|
75
77
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
76
78
|
readonly __tsonic_iface_System_Data_IDataAdapter: never;
|
|
77
79
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -118,7 +120,9 @@ export interface __DataAdapter$views {
|
|
|
118
120
|
export type DataAdapter = DataAdapter$instance & __DataAdapter$views;
|
|
119
121
|
|
|
120
122
|
|
|
121
|
-
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
|
+
|
|
122
126
|
readonly __tsonic_iface_System_Data_IColumnMapping: never;
|
|
123
127
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
124
128
|
|
|
@@ -141,12 +145,12 @@ export interface __DataColumnMapping$views {
|
|
|
141
145
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
142
146
|
}
|
|
143
147
|
|
|
144
|
-
export interface DataColumnMapping$instance extends System_Data_Internal.IColumnMapping$instance, System_Internal.ICloneable$instance {}
|
|
145
|
-
|
|
146
148
|
export type DataColumnMapping = DataColumnMapping$instance & __DataColumnMapping$views;
|
|
147
149
|
|
|
148
150
|
|
|
149
151
|
export interface DataColumnMappingCollection$instance extends MarshalByRefObject {
|
|
152
|
+
readonly __tsonic_type_System_Data_Common_DataColumnMappingCollection: never;
|
|
153
|
+
|
|
150
154
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
151
155
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
152
156
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -197,7 +201,9 @@ export interface __DataColumnMappingCollection$views {
|
|
|
197
201
|
export type DataColumnMappingCollection = DataColumnMappingCollection$instance & __DataColumnMappingCollection$views;
|
|
198
202
|
|
|
199
203
|
|
|
200
|
-
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
|
+
|
|
201
207
|
readonly __tsonic_iface_System_Data_ITableMapping: never;
|
|
202
208
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
203
209
|
|
|
@@ -223,12 +229,12 @@ export interface __DataTableMapping$views {
|
|
|
223
229
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
224
230
|
}
|
|
225
231
|
|
|
226
|
-
export interface DataTableMapping$instance extends System_Internal.ICloneable$instance {}
|
|
227
|
-
|
|
228
232
|
export type DataTableMapping = DataTableMapping$instance & __DataTableMapping$views;
|
|
229
233
|
|
|
230
234
|
|
|
231
235
|
export interface DataTableMappingCollection$instance extends MarshalByRefObject {
|
|
236
|
+
readonly __tsonic_type_System_Data_Common_DataTableMappingCollection: never;
|
|
237
|
+
|
|
232
238
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
233
239
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
234
240
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -278,7 +284,9 @@ export interface __DataTableMappingCollection$views {
|
|
|
278
284
|
export type DataTableMappingCollection = DataTableMappingCollection$instance & __DataTableMappingCollection$views;
|
|
279
285
|
|
|
280
286
|
|
|
281
|
-
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
|
+
|
|
282
290
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
283
291
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
284
292
|
|
|
@@ -321,12 +329,12 @@ export interface __DbBatch$views {
|
|
|
321
329
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
322
330
|
}
|
|
323
331
|
|
|
324
|
-
export interface DbBatch$instance extends System_Internal.IAsyncDisposable$instance, System_Internal.IDisposable$instance {}
|
|
325
|
-
|
|
326
332
|
export type DbBatch = DbBatch$instance & __DbBatch$views;
|
|
327
333
|
|
|
328
334
|
|
|
329
335
|
export interface DbBatchCommand$instance {
|
|
336
|
+
readonly __tsonic_type_System_Data_Common_DbBatchCommand: never;
|
|
337
|
+
|
|
330
338
|
readonly CanCreateParameter: boolean;
|
|
331
339
|
CommandText: string;
|
|
332
340
|
CommandType: CommandType;
|
|
@@ -344,6 +352,8 @@ export const DbBatchCommand: (abstract new() => DbBatchCommand) & {
|
|
|
344
352
|
export type DbBatchCommand = DbBatchCommand$instance;
|
|
345
353
|
|
|
346
354
|
export interface DbBatchCommandCollection$instance {
|
|
355
|
+
readonly __tsonic_type_System_Data_Common_DbBatchCommandCollection: never;
|
|
356
|
+
|
|
347
357
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
348
358
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
349
359
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -381,6 +391,8 @@ export type DbBatchCommandCollection = DbBatchCommandCollection$instance & __DbB
|
|
|
381
391
|
|
|
382
392
|
|
|
383
393
|
export interface DbColumn$instance {
|
|
394
|
+
readonly __tsonic_type_System_Data_Common_DbColumn: never;
|
|
395
|
+
|
|
384
396
|
AllowDBNull: Nullable_1<System_Internal.Boolean>;
|
|
385
397
|
get BaseCatalogName(): string | undefined;
|
|
386
398
|
set BaseCatalogName(value: string | undefined);
|
|
@@ -422,7 +434,9 @@ export const DbColumn: (abstract new() => DbColumn) & {
|
|
|
422
434
|
|
|
423
435
|
export type DbColumn = DbColumn$instance;
|
|
424
436
|
|
|
425
|
-
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
|
+
|
|
426
440
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
427
441
|
readonly __tsonic_iface_System_Data_IDbCommand: never;
|
|
428
442
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
@@ -479,12 +493,12 @@ export interface __DbCommand$views {
|
|
|
479
493
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
480
494
|
}
|
|
481
495
|
|
|
482
|
-
export interface DbCommand$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
483
|
-
|
|
484
496
|
export type DbCommand = DbCommand$instance & __DbCommand$views;
|
|
485
497
|
|
|
486
498
|
|
|
487
499
|
export interface DbCommandBuilder$instance extends Component {
|
|
500
|
+
readonly __tsonic_type_System_Data_Common_DbCommandBuilder: never;
|
|
501
|
+
|
|
488
502
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
489
503
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
490
504
|
|
|
@@ -530,7 +544,9 @@ export interface __DbCommandBuilder$views {
|
|
|
530
544
|
export type DbCommandBuilder = DbCommandBuilder$instance & __DbCommandBuilder$views;
|
|
531
545
|
|
|
532
546
|
|
|
533
|
-
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
|
+
|
|
534
550
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
535
551
|
readonly __tsonic_iface_System_Data_IDbConnection: never;
|
|
536
552
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
@@ -586,12 +602,12 @@ export interface __DbConnection$views {
|
|
|
586
602
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
587
603
|
}
|
|
588
604
|
|
|
589
|
-
export interface DbConnection$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
590
|
-
|
|
591
605
|
export type DbConnection = DbConnection$instance & __DbConnection$views;
|
|
592
606
|
|
|
593
607
|
|
|
594
608
|
export interface DbConnectionStringBuilder$instance {
|
|
609
|
+
readonly __tsonic_type_System_Data_Common_DbConnectionStringBuilder: never;
|
|
610
|
+
|
|
595
611
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
596
612
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
597
613
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -635,7 +651,9 @@ export interface __DbConnectionStringBuilder$views {
|
|
|
635
651
|
export type DbConnectionStringBuilder = DbConnectionStringBuilder$instance & __DbConnectionStringBuilder$views;
|
|
636
652
|
|
|
637
653
|
|
|
638
|
-
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
|
+
|
|
639
657
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
640
658
|
readonly __tsonic_iface_System_Data_IDataAdapter: never;
|
|
641
659
|
readonly __tsonic_iface_System_Data_IDbDataAdapter: never;
|
|
@@ -694,12 +712,12 @@ export interface __DbDataAdapter$views {
|
|
|
694
712
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
695
713
|
}
|
|
696
714
|
|
|
697
|
-
export interface DbDataAdapter$instance extends System_Internal.ICloneable$instance {}
|
|
698
|
-
|
|
699
715
|
export type DbDataAdapter = DbDataAdapter$instance & __DbDataAdapter$views;
|
|
700
716
|
|
|
701
717
|
|
|
702
|
-
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
|
+
|
|
703
721
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
704
722
|
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
705
723
|
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
@@ -777,12 +795,12 @@ export interface __DbDataReader$views {
|
|
|
777
795
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
778
796
|
}
|
|
779
797
|
|
|
780
|
-
export interface DbDataReader$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
781
|
-
|
|
782
798
|
export type DbDataReader = DbDataReader$instance & __DbDataReader$views;
|
|
783
799
|
|
|
784
800
|
|
|
785
|
-
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
|
+
|
|
786
804
|
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
787
805
|
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
788
806
|
|
|
@@ -824,12 +842,12 @@ export interface __DbDataRecord$views {
|
|
|
824
842
|
As_IDataRecord(): System_Data_Internal.IDataRecord$instance;
|
|
825
843
|
}
|
|
826
844
|
|
|
827
|
-
export interface DbDataRecord$instance extends System_ComponentModel_Internal.ICustomTypeDescriptor$instance, System_Data_Internal.IDataRecord$instance {}
|
|
828
|
-
|
|
829
845
|
export type DbDataRecord = DbDataRecord$instance & __DbDataRecord$views;
|
|
830
846
|
|
|
831
847
|
|
|
832
|
-
export interface DbDataSource$instance {
|
|
848
|
+
export interface DbDataSource$instance extends System_Internal.IAsyncDisposable$instance {
|
|
849
|
+
readonly __tsonic_type_System_Data_Common_DbDataSource: never;
|
|
850
|
+
|
|
833
851
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
834
852
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
835
853
|
|
|
@@ -860,12 +878,12 @@ export interface __DbDataSource$views {
|
|
|
860
878
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
861
879
|
}
|
|
862
880
|
|
|
863
|
-
export interface DbDataSource$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
864
|
-
|
|
865
881
|
export type DbDataSource = DbDataSource$instance & __DbDataSource$views;
|
|
866
882
|
|
|
867
883
|
|
|
868
884
|
export interface DbDataSourceEnumerator$instance {
|
|
885
|
+
readonly __tsonic_type_System_Data_Common_DbDataSourceEnumerator: never;
|
|
886
|
+
|
|
869
887
|
GetDataSources(): DataTable;
|
|
870
888
|
}
|
|
871
889
|
|
|
@@ -877,6 +895,8 @@ export const DbDataSourceEnumerator: (abstract new() => DbDataSourceEnumerator)
|
|
|
877
895
|
export type DbDataSourceEnumerator = DbDataSourceEnumerator$instance;
|
|
878
896
|
|
|
879
897
|
export interface DbEnumerator$instance {
|
|
898
|
+
readonly __tsonic_type_System_Data_Common_DbEnumerator: never;
|
|
899
|
+
|
|
880
900
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
881
901
|
|
|
882
902
|
readonly Current: unknown;
|
|
@@ -901,6 +921,8 @@ export type DbEnumerator = DbEnumerator$instance & __DbEnumerator$views;
|
|
|
901
921
|
|
|
902
922
|
|
|
903
923
|
export interface DbException$instance extends ExternalException {
|
|
924
|
+
readonly __tsonic_type_System_Data_Common_DbException: never;
|
|
925
|
+
|
|
904
926
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
905
927
|
|
|
906
928
|
readonly BatchCommand: DbBatchCommand | undefined;
|
|
@@ -923,6 +945,8 @@ export type DbException = DbException$instance & __DbException$views;
|
|
|
923
945
|
|
|
924
946
|
|
|
925
947
|
export interface DbParameter$instance extends MarshalByRefObject {
|
|
948
|
+
readonly __tsonic_type_System_Data_Common_DbParameter: never;
|
|
949
|
+
|
|
926
950
|
readonly __tsonic_iface_System_Data_IDataParameter: never;
|
|
927
951
|
readonly __tsonic_iface_System_Data_IDbDataParameter: never;
|
|
928
952
|
|
|
@@ -955,6 +979,8 @@ export type DbParameter = DbParameter$instance & __DbParameter$views;
|
|
|
955
979
|
|
|
956
980
|
|
|
957
981
|
export interface DbParameterCollection$instance extends MarshalByRefObject {
|
|
982
|
+
readonly __tsonic_type_System_Data_Common_DbParameterCollection: never;
|
|
983
|
+
|
|
958
984
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
959
985
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
960
986
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -1004,6 +1030,8 @@ export type DbParameterCollection = DbParameterCollection$instance & __DbParamet
|
|
|
1004
1030
|
|
|
1005
1031
|
|
|
1006
1032
|
export interface DbProviderFactory$instance {
|
|
1033
|
+
readonly __tsonic_type_System_Data_Common_DbProviderFactory: never;
|
|
1034
|
+
|
|
1007
1035
|
readonly CanCreateBatch: boolean;
|
|
1008
1036
|
readonly CanCreateCommandBuilder: boolean;
|
|
1009
1037
|
readonly CanCreateDataAdapter: boolean;
|
|
@@ -1028,6 +1056,8 @@ export const DbProviderFactory: (abstract new() => DbProviderFactory) & {
|
|
|
1028
1056
|
export type DbProviderFactory = DbProviderFactory$instance;
|
|
1029
1057
|
|
|
1030
1058
|
export interface DbProviderSpecificTypePropertyAttribute$instance extends Attribute {
|
|
1059
|
+
readonly __tsonic_type_System_Data_Common_DbProviderSpecificTypePropertyAttribute: never;
|
|
1060
|
+
|
|
1031
1061
|
readonly IsProviderSpecificTypeProperty: boolean;
|
|
1032
1062
|
}
|
|
1033
1063
|
|
|
@@ -1039,7 +1069,9 @@ export const DbProviderSpecificTypePropertyAttribute: {
|
|
|
1039
1069
|
|
|
1040
1070
|
export type DbProviderSpecificTypePropertyAttribute = DbProviderSpecificTypePropertyAttribute$instance;
|
|
1041
1071
|
|
|
1042
|
-
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
|
+
|
|
1043
1075
|
readonly __tsonic_iface_System_Data_IDbTransaction: never;
|
|
1044
1076
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1045
1077
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1074,12 +1106,12 @@ export interface __DbTransaction$views {
|
|
|
1074
1106
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1075
1107
|
}
|
|
1076
1108
|
|
|
1077
|
-
export interface DbTransaction$instance extends System_Internal.IAsyncDisposable$instance {}
|
|
1078
|
-
|
|
1079
1109
|
export type DbTransaction = DbTransaction$instance & __DbTransaction$views;
|
|
1080
1110
|
|
|
1081
1111
|
|
|
1082
1112
|
export interface RowUpdatedEventArgs$instance extends EventArgs {
|
|
1113
|
+
readonly __tsonic_type_System_Data_Common_RowUpdatedEventArgs: never;
|
|
1114
|
+
|
|
1083
1115
|
readonly Command: IDbCommand | undefined;
|
|
1084
1116
|
get Errors(): Exception | undefined;
|
|
1085
1117
|
set Errors(value: Exception | undefined);
|
|
@@ -1102,6 +1134,8 @@ export const RowUpdatedEventArgs: {
|
|
|
1102
1134
|
export type RowUpdatedEventArgs = RowUpdatedEventArgs$instance;
|
|
1103
1135
|
|
|
1104
1136
|
export interface RowUpdatingEventArgs$instance extends EventArgs {
|
|
1137
|
+
readonly __tsonic_type_System_Data_Common_RowUpdatingEventArgs: never;
|
|
1138
|
+
|
|
1105
1139
|
get BaseCommand(): IDbCommand | undefined;
|
|
1106
1140
|
set BaseCommand(value: IDbCommand | undefined);
|
|
1107
1141
|
get Command(): IDbCommand | undefined;
|
|
@@ -46,7 +46,9 @@ export interface INullable$instance {
|
|
|
46
46
|
|
|
47
47
|
export type INullable = INullable$instance;
|
|
48
48
|
|
|
49
|
-
export interface SqlBinary$instance {
|
|
49
|
+
export interface SqlBinary$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
50
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlBinary: never;
|
|
51
|
+
|
|
50
52
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
51
53
|
readonly __tsonic_iface_System_IComparable: never;
|
|
52
54
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -93,12 +95,12 @@ export interface __SqlBinary$views {
|
|
|
93
95
|
CompareTo(obj: unknown): int;
|
|
94
96
|
}
|
|
95
97
|
|
|
96
|
-
export interface SqlBinary$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
97
|
-
|
|
98
98
|
export type SqlBinary = SqlBinary$instance & __SqlBinary$views;
|
|
99
99
|
|
|
100
100
|
|
|
101
|
-
export interface SqlBoolean$instance {
|
|
101
|
+
export interface SqlBoolean$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
102
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlBoolean: never;
|
|
103
|
+
|
|
102
104
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
103
105
|
readonly __tsonic_iface_System_IComparable: never;
|
|
104
106
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -161,12 +163,12 @@ export interface __SqlBoolean$views {
|
|
|
161
163
|
CompareTo(obj: unknown): int;
|
|
162
164
|
}
|
|
163
165
|
|
|
164
|
-
export interface SqlBoolean$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
165
|
-
|
|
166
166
|
export type SqlBoolean = SqlBoolean$instance & __SqlBoolean$views;
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
export interface SqlByte$instance {
|
|
169
|
+
export interface SqlByte$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
170
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlByte: never;
|
|
171
|
+
|
|
170
172
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
171
173
|
readonly __tsonic_iface_System_IComparable: never;
|
|
172
174
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -230,12 +232,12 @@ export interface __SqlByte$views {
|
|
|
230
232
|
CompareTo(obj: unknown): int;
|
|
231
233
|
}
|
|
232
234
|
|
|
233
|
-
export interface SqlByte$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
234
|
-
|
|
235
235
|
export type SqlByte = SqlByte$instance & __SqlByte$views;
|
|
236
236
|
|
|
237
237
|
|
|
238
|
-
export interface SqlDateTime$instance {
|
|
238
|
+
export interface SqlDateTime$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
239
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlDateTime: never;
|
|
240
|
+
|
|
239
241
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
240
242
|
readonly __tsonic_iface_System_IComparable: never;
|
|
241
243
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -292,12 +294,12 @@ export interface __SqlDateTime$views {
|
|
|
292
294
|
CompareTo(obj: unknown): int;
|
|
293
295
|
}
|
|
294
296
|
|
|
295
|
-
export interface SqlDateTime$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
296
|
-
|
|
297
297
|
export type SqlDateTime = SqlDateTime$instance & __SqlDateTime$views;
|
|
298
298
|
|
|
299
299
|
|
|
300
|
-
export interface SqlDecimal$instance {
|
|
300
|
+
export interface SqlDecimal$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
301
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlDecimal: never;
|
|
302
|
+
|
|
301
303
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
302
304
|
readonly __tsonic_iface_System_IComparable: never;
|
|
303
305
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -377,12 +379,12 @@ export interface __SqlDecimal$views {
|
|
|
377
379
|
CompareTo(obj: unknown): int;
|
|
378
380
|
}
|
|
379
381
|
|
|
380
|
-
export interface SqlDecimal$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
381
|
-
|
|
382
382
|
export type SqlDecimal = SqlDecimal$instance & __SqlDecimal$views;
|
|
383
383
|
|
|
384
384
|
|
|
385
|
-
export interface SqlDouble$instance {
|
|
385
|
+
export interface SqlDouble$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
386
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlDouble: never;
|
|
387
|
+
|
|
386
388
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
387
389
|
readonly __tsonic_iface_System_IComparable: never;
|
|
388
390
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -440,12 +442,12 @@ export interface __SqlDouble$views {
|
|
|
440
442
|
CompareTo(obj: unknown): int;
|
|
441
443
|
}
|
|
442
444
|
|
|
443
|
-
export interface SqlDouble$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
444
|
-
|
|
445
445
|
export type SqlDouble = SqlDouble$instance & __SqlDouble$views;
|
|
446
446
|
|
|
447
447
|
|
|
448
|
-
export interface SqlGuid$instance {
|
|
448
|
+
export interface SqlGuid$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
449
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlGuid: never;
|
|
450
|
+
|
|
449
451
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
450
452
|
readonly __tsonic_iface_System_IComparable: never;
|
|
451
453
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -495,12 +497,12 @@ export interface __SqlGuid$views {
|
|
|
495
497
|
CompareTo(obj: unknown): int;
|
|
496
498
|
}
|
|
497
499
|
|
|
498
|
-
export interface SqlGuid$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
499
|
-
|
|
500
500
|
export type SqlGuid = SqlGuid$instance & __SqlGuid$views;
|
|
501
501
|
|
|
502
502
|
|
|
503
|
-
export interface SqlInt16$instance {
|
|
503
|
+
export interface SqlInt16$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
504
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlInt16: never;
|
|
505
|
+
|
|
504
506
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
505
507
|
readonly __tsonic_iface_System_IComparable: never;
|
|
506
508
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -564,12 +566,12 @@ export interface __SqlInt16$views {
|
|
|
564
566
|
CompareTo(obj: unknown): int;
|
|
565
567
|
}
|
|
566
568
|
|
|
567
|
-
export interface SqlInt16$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
568
|
-
|
|
569
569
|
export type SqlInt16 = SqlInt16$instance & __SqlInt16$views;
|
|
570
570
|
|
|
571
571
|
|
|
572
|
-
export interface SqlInt32$instance {
|
|
572
|
+
export interface SqlInt32$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
573
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlInt32: never;
|
|
574
|
+
|
|
573
575
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
574
576
|
readonly __tsonic_iface_System_IComparable: never;
|
|
575
577
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -633,12 +635,12 @@ export interface __SqlInt32$views {
|
|
|
633
635
|
CompareTo(obj: unknown): int;
|
|
634
636
|
}
|
|
635
637
|
|
|
636
|
-
export interface SqlInt32$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
637
|
-
|
|
638
638
|
export type SqlInt32 = SqlInt32$instance & __SqlInt32$views;
|
|
639
639
|
|
|
640
640
|
|
|
641
|
-
export interface SqlInt64$instance {
|
|
641
|
+
export interface SqlInt64$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
642
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlInt64: never;
|
|
643
|
+
|
|
642
644
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
643
645
|
readonly __tsonic_iface_System_IComparable: never;
|
|
644
646
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -702,12 +704,12 @@ export interface __SqlInt64$views {
|
|
|
702
704
|
CompareTo(obj: unknown): int;
|
|
703
705
|
}
|
|
704
706
|
|
|
705
|
-
export interface SqlInt64$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
706
|
-
|
|
707
707
|
export type SqlInt64 = SqlInt64$instance & __SqlInt64$views;
|
|
708
708
|
|
|
709
709
|
|
|
710
|
-
export interface SqlMoney$instance {
|
|
710
|
+
export interface SqlMoney$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
711
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlMoney: never;
|
|
712
|
+
|
|
711
713
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
712
714
|
readonly __tsonic_iface_System_IComparable: never;
|
|
713
715
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -774,12 +776,12 @@ export interface __SqlMoney$views {
|
|
|
774
776
|
CompareTo(obj: unknown): int;
|
|
775
777
|
}
|
|
776
778
|
|
|
777
|
-
export interface SqlMoney$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
778
|
-
|
|
779
779
|
export type SqlMoney = SqlMoney$instance & __SqlMoney$views;
|
|
780
780
|
|
|
781
781
|
|
|
782
|
-
export interface SqlSingle$instance {
|
|
782
|
+
export interface SqlSingle$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
783
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlSingle: never;
|
|
784
|
+
|
|
783
785
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
784
786
|
readonly __tsonic_iface_System_IComparable: never;
|
|
785
787
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -838,12 +840,12 @@ export interface __SqlSingle$views {
|
|
|
838
840
|
CompareTo(obj: unknown): int;
|
|
839
841
|
}
|
|
840
842
|
|
|
841
|
-
export interface SqlSingle$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
842
|
-
|
|
843
843
|
export type SqlSingle = SqlSingle$instance & __SqlSingle$views;
|
|
844
844
|
|
|
845
845
|
|
|
846
|
-
export interface SqlString$instance {
|
|
846
|
+
export interface SqlString$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
847
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlString: never;
|
|
848
|
+
|
|
847
849
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
848
850
|
readonly __tsonic_iface_System_IComparable: never;
|
|
849
851
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -917,12 +919,12 @@ export interface __SqlString$views {
|
|
|
917
919
|
CompareTo(obj: unknown): int;
|
|
918
920
|
}
|
|
919
921
|
|
|
920
|
-
export interface SqlString$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
921
|
-
|
|
922
922
|
export type SqlString = SqlString$instance & __SqlString$views;
|
|
923
923
|
|
|
924
924
|
|
|
925
925
|
export interface SqlAlreadyFilledException$instance extends SqlTypeException$instance {
|
|
926
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlAlreadyFilledException: never;
|
|
927
|
+
|
|
926
928
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
927
929
|
|
|
928
930
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -943,7 +945,9 @@ export interface __SqlAlreadyFilledException$views {
|
|
|
943
945
|
export type SqlAlreadyFilledException = SqlAlreadyFilledException$instance & __SqlAlreadyFilledException$views;
|
|
944
946
|
|
|
945
947
|
|
|
946
|
-
export interface SqlBytes$instance {
|
|
948
|
+
export interface SqlBytes$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
949
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlBytes: never;
|
|
950
|
+
|
|
947
951
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
948
952
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
949
953
|
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
@@ -980,12 +984,12 @@ export interface __SqlBytes$views {
|
|
|
980
984
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
981
985
|
}
|
|
982
986
|
|
|
983
|
-
export interface SqlBytes$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
984
|
-
|
|
985
987
|
export type SqlBytes = SqlBytes$instance & __SqlBytes$views;
|
|
986
988
|
|
|
987
989
|
|
|
988
|
-
export interface SqlChars$instance {
|
|
990
|
+
export interface SqlChars$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
991
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlChars: never;
|
|
992
|
+
|
|
989
993
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
990
994
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
991
995
|
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
@@ -1020,12 +1024,12 @@ export interface __SqlChars$views {
|
|
|
1020
1024
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
1021
1025
|
}
|
|
1022
1026
|
|
|
1023
|
-
export interface SqlChars$instance extends INullable$instance, System_Runtime_Serialization_Internal.ISerializable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
1024
|
-
|
|
1025
1027
|
export type SqlChars = SqlChars$instance & __SqlChars$views;
|
|
1026
1028
|
|
|
1027
1029
|
|
|
1028
1030
|
export interface SqlNotFilledException$instance extends SqlTypeException$instance {
|
|
1031
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlNotFilledException: never;
|
|
1032
|
+
|
|
1029
1033
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1030
1034
|
|
|
1031
1035
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1047,6 +1051,8 @@ export type SqlNotFilledException = SqlNotFilledException$instance & __SqlNotFil
|
|
|
1047
1051
|
|
|
1048
1052
|
|
|
1049
1053
|
export interface SqlNullValueException$instance extends SqlTypeException$instance {
|
|
1054
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlNullValueException: never;
|
|
1055
|
+
|
|
1050
1056
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1051
1057
|
|
|
1052
1058
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1068,6 +1074,8 @@ export type SqlNullValueException = SqlNullValueException$instance & __SqlNullVa
|
|
|
1068
1074
|
|
|
1069
1075
|
|
|
1070
1076
|
export interface SqlTruncateException$instance extends SqlTypeException$instance {
|
|
1077
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlTruncateException: never;
|
|
1078
|
+
|
|
1071
1079
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1072
1080
|
|
|
1073
1081
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1089,6 +1097,8 @@ export type SqlTruncateException = SqlTruncateException$instance & __SqlTruncate
|
|
|
1089
1097
|
|
|
1090
1098
|
|
|
1091
1099
|
export interface SqlTypeException$instance extends SystemException {
|
|
1100
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlTypeException: never;
|
|
1101
|
+
|
|
1092
1102
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1093
1103
|
|
|
1094
1104
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1109,7 +1119,9 @@ export interface __SqlTypeException$views {
|
|
|
1109
1119
|
export type SqlTypeException = SqlTypeException$instance & __SqlTypeException$views;
|
|
1110
1120
|
|
|
1111
1121
|
|
|
1112
|
-
export interface SqlXml$instance {
|
|
1122
|
+
export interface SqlXml$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {
|
|
1123
|
+
readonly __tsonic_type_System_Data_SqlTypes_SqlXml: never;
|
|
1124
|
+
|
|
1113
1125
|
readonly __tsonic_iface_System_Data_SqlTypes_INullable: never;
|
|
1114
1126
|
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
1115
1127
|
|
|
@@ -1133,8 +1145,6 @@ export interface __SqlXml$views {
|
|
|
1133
1145
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
1134
1146
|
}
|
|
1135
1147
|
|
|
1136
|
-
export interface SqlXml$instance extends INullable$instance, System_Xml_Serialization_Internal.IXmlSerializable$instance {}
|
|
1137
|
-
|
|
1138
1148
|
export type SqlXml = SqlXml$instance & __SqlXml$views;
|
|
1139
1149
|
|
|
1140
1150
|
|