@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
|
@@ -336,6 +336,8 @@ export type StatementCompletedEventHandler = (sender: unknown, e: StatementCompl
|
|
|
336
336
|
|
|
337
337
|
|
|
338
338
|
export interface IColumnMapping$instance {
|
|
339
|
+
readonly __tsonic_iface_System_Data_IColumnMapping: never;
|
|
340
|
+
|
|
339
341
|
DataSetColumn: string;
|
|
340
342
|
SourceColumn: string;
|
|
341
343
|
}
|
|
@@ -344,6 +346,8 @@ export interface IColumnMapping$instance {
|
|
|
344
346
|
export type IColumnMapping = IColumnMapping$instance;
|
|
345
347
|
|
|
346
348
|
export interface IColumnMappingCollection$instance extends IList, ICollection, IEnumerable {
|
|
349
|
+
readonly __tsonic_iface_System_Data_IColumnMappingCollection: never;
|
|
350
|
+
|
|
347
351
|
readonly IsReadOnly: boolean;
|
|
348
352
|
readonly IsFixedSize: boolean;
|
|
349
353
|
readonly Count: int;
|
|
@@ -372,6 +376,8 @@ export interface IColumnMappingCollection$instance extends IList, ICollection, I
|
|
|
372
376
|
export type IColumnMappingCollection = IColumnMappingCollection$instance;
|
|
373
377
|
|
|
374
378
|
export interface IDataAdapter$instance {
|
|
379
|
+
readonly __tsonic_iface_System_Data_IDataAdapter: never;
|
|
380
|
+
|
|
375
381
|
MissingMappingAction: MissingMappingAction;
|
|
376
382
|
MissingSchemaAction: MissingSchemaAction;
|
|
377
383
|
readonly TableMappings: ITableMappingCollection;
|
|
@@ -384,6 +390,8 @@ export interface IDataAdapter$instance {
|
|
|
384
390
|
export type IDataAdapter = IDataAdapter$instance;
|
|
385
391
|
|
|
386
392
|
export interface IDataParameter$instance {
|
|
393
|
+
readonly __tsonic_iface_System_Data_IDataParameter: never;
|
|
394
|
+
|
|
387
395
|
DbType: DbType;
|
|
388
396
|
Direction: ParameterDirection;
|
|
389
397
|
readonly IsNullable: boolean;
|
|
@@ -398,6 +406,8 @@ export interface IDataParameter$instance {
|
|
|
398
406
|
export type IDataParameter = IDataParameter$instance;
|
|
399
407
|
|
|
400
408
|
export interface IDataParameterCollection$instance extends IList, ICollection, IEnumerable {
|
|
409
|
+
readonly __tsonic_iface_System_Data_IDataParameterCollection: never;
|
|
410
|
+
|
|
401
411
|
readonly IsReadOnly: boolean;
|
|
402
412
|
readonly IsFixedSize: boolean;
|
|
403
413
|
readonly Count: int;
|
|
@@ -424,6 +434,8 @@ export interface IDataParameterCollection$instance extends IList, ICollection, I
|
|
|
424
434
|
export type IDataParameterCollection = IDataParameterCollection$instance;
|
|
425
435
|
|
|
426
436
|
export interface IDataReader$instance extends IDisposable, IDataRecord {
|
|
437
|
+
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
438
|
+
|
|
427
439
|
readonly Depth: int;
|
|
428
440
|
readonly IsClosed: boolean;
|
|
429
441
|
readonly RecordsAffected: int;
|
|
@@ -462,6 +474,8 @@ export interface IDataReader$instance extends IDataRecord$instance, System_Inter
|
|
|
462
474
|
export type IDataReader = IDataReader$instance;
|
|
463
475
|
|
|
464
476
|
export interface IDataRecord$instance {
|
|
477
|
+
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
478
|
+
|
|
465
479
|
readonly FieldCount: int;
|
|
466
480
|
get_Item(i: int): unknown;
|
|
467
481
|
get_Item(name: string): unknown;
|
|
@@ -490,6 +504,8 @@ export interface IDataRecord$instance {
|
|
|
490
504
|
export type IDataRecord = IDataRecord$instance;
|
|
491
505
|
|
|
492
506
|
export interface IDbCommand$instance extends IDisposable {
|
|
507
|
+
readonly __tsonic_iface_System_Data_IDbCommand: never;
|
|
508
|
+
|
|
493
509
|
get Connection(): IDbConnection | undefined;
|
|
494
510
|
set Connection(value: IDbConnection | undefined);
|
|
495
511
|
get Transaction(): IDbTransaction | undefined;
|
|
@@ -514,6 +530,8 @@ export interface IDbCommand$instance extends System_Internal.IDisposable$instanc
|
|
|
514
530
|
export type IDbCommand = IDbCommand$instance;
|
|
515
531
|
|
|
516
532
|
export interface IDbConnection$instance extends IDisposable {
|
|
533
|
+
readonly __tsonic_iface_System_Data_IDbConnection: never;
|
|
534
|
+
|
|
517
535
|
ConnectionString: string;
|
|
518
536
|
readonly ConnectionTimeout: int;
|
|
519
537
|
readonly Database: string;
|
|
@@ -532,6 +550,8 @@ export interface IDbConnection$instance extends System_Internal.IDisposable$inst
|
|
|
532
550
|
export type IDbConnection = IDbConnection$instance;
|
|
533
551
|
|
|
534
552
|
export interface IDbDataAdapter$instance extends IDataAdapter {
|
|
553
|
+
readonly __tsonic_iface_System_Data_IDbDataAdapter: never;
|
|
554
|
+
|
|
535
555
|
get SelectCommand(): IDbCommand | undefined;
|
|
536
556
|
set SelectCommand(value: IDbCommand | undefined);
|
|
537
557
|
get InsertCommand(): IDbCommand | undefined;
|
|
@@ -554,6 +574,8 @@ export interface IDbDataAdapter$instance extends IDataAdapter$instance {}
|
|
|
554
574
|
export type IDbDataAdapter = IDbDataAdapter$instance;
|
|
555
575
|
|
|
556
576
|
export interface IDbDataParameter$instance extends IDataParameter {
|
|
577
|
+
readonly __tsonic_iface_System_Data_IDbDataParameter: never;
|
|
578
|
+
|
|
557
579
|
Precision: byte;
|
|
558
580
|
Scale: byte;
|
|
559
581
|
Size: int;
|
|
@@ -573,6 +595,8 @@ export interface IDbDataParameter$instance extends IDataParameter$instance {}
|
|
|
573
595
|
export type IDbDataParameter = IDbDataParameter$instance;
|
|
574
596
|
|
|
575
597
|
export interface IDbTransaction$instance extends IDisposable {
|
|
598
|
+
readonly __tsonic_iface_System_Data_IDbTransaction: never;
|
|
599
|
+
|
|
576
600
|
readonly Connection: IDbConnection | undefined;
|
|
577
601
|
readonly IsolationLevel: IsolationLevel;
|
|
578
602
|
Commit(): void;
|
|
@@ -585,6 +609,8 @@ export interface IDbTransaction$instance extends System_Internal.IDisposable$ins
|
|
|
585
609
|
export type IDbTransaction = IDbTransaction$instance;
|
|
586
610
|
|
|
587
611
|
export interface ITableMapping$instance {
|
|
612
|
+
readonly __tsonic_iface_System_Data_ITableMapping: never;
|
|
613
|
+
|
|
588
614
|
readonly ColumnMappings: IColumnMappingCollection;
|
|
589
615
|
DataSetTable: string;
|
|
590
616
|
SourceTable: string;
|
|
@@ -594,6 +620,8 @@ export interface ITableMapping$instance {
|
|
|
594
620
|
export type ITableMapping = ITableMapping$instance;
|
|
595
621
|
|
|
596
622
|
export interface ITableMappingCollection$instance extends IList, ICollection, IEnumerable {
|
|
623
|
+
readonly __tsonic_iface_System_Data_ITableMappingCollection: never;
|
|
624
|
+
|
|
597
625
|
readonly IsReadOnly: boolean;
|
|
598
626
|
readonly IsFixedSize: boolean;
|
|
599
627
|
readonly Count: int;
|
|
@@ -622,6 +650,8 @@ export interface ITableMappingCollection$instance extends IList, ICollection, IE
|
|
|
622
650
|
export type ITableMappingCollection = ITableMappingCollection$instance;
|
|
623
651
|
|
|
624
652
|
export interface Constraint$instance {
|
|
653
|
+
readonly __tsonic_type_System_Data_Constraint: never;
|
|
654
|
+
|
|
625
655
|
readonly _DataSet: DataSet | undefined;
|
|
626
656
|
ConstraintName: string;
|
|
627
657
|
readonly ExtendedProperties: PropertyCollection;
|
|
@@ -637,6 +667,11 @@ export const Constraint: {
|
|
|
637
667
|
export type Constraint = Constraint$instance;
|
|
638
668
|
|
|
639
669
|
export interface ConstraintCollection$instance extends InternalDataCollectionBase$instance {
|
|
670
|
+
readonly __tsonic_type_System_Data_ConstraintCollection: never;
|
|
671
|
+
|
|
672
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
673
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
674
|
+
|
|
640
675
|
readonly List: ArrayList;
|
|
641
676
|
Add(constraint: Constraint): void;
|
|
642
677
|
Add(name: string, columns: DataColumn[], primaryKey: boolean): Constraint;
|
|
@@ -672,6 +707,10 @@ export type ConstraintCollection = ConstraintCollection$instance & __ConstraintC
|
|
|
672
707
|
|
|
673
708
|
|
|
674
709
|
export interface ConstraintException$instance extends DataException$instance {
|
|
710
|
+
readonly __tsonic_type_System_Data_ConstraintException: never;
|
|
711
|
+
|
|
712
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
713
|
+
|
|
675
714
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
676
715
|
}
|
|
677
716
|
|
|
@@ -691,6 +730,12 @@ export type ConstraintException = ConstraintException$instance & __ConstraintExc
|
|
|
691
730
|
|
|
692
731
|
|
|
693
732
|
export interface DataColumn$instance extends MarshalByValueComponent {
|
|
733
|
+
readonly __tsonic_type_System_Data_DataColumn: never;
|
|
734
|
+
|
|
735
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
736
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
737
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
738
|
+
|
|
694
739
|
AllowDBNull: boolean;
|
|
695
740
|
AutoIncrement: boolean;
|
|
696
741
|
AutoIncrementSeed: long;
|
|
@@ -738,6 +783,8 @@ export type DataColumn = DataColumn$instance & __DataColumn$views;
|
|
|
738
783
|
|
|
739
784
|
|
|
740
785
|
export interface DataColumnChangeEventArgs$instance extends EventArgs {
|
|
786
|
+
readonly __tsonic_type_System_Data_DataColumnChangeEventArgs: never;
|
|
787
|
+
|
|
741
788
|
readonly Column: DataColumn | undefined;
|
|
742
789
|
get ProposedValue(): unknown | undefined;
|
|
743
790
|
set ProposedValue(value: unknown | undefined);
|
|
@@ -753,6 +800,11 @@ export const DataColumnChangeEventArgs: {
|
|
|
753
800
|
export type DataColumnChangeEventArgs = DataColumnChangeEventArgs$instance;
|
|
754
801
|
|
|
755
802
|
export interface DataColumnCollection$instance extends InternalDataCollectionBase$instance {
|
|
803
|
+
readonly __tsonic_type_System_Data_DataColumnCollection: never;
|
|
804
|
+
|
|
805
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
806
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
807
|
+
|
|
756
808
|
readonly List: ArrayList;
|
|
757
809
|
Add(column: DataColumn): void;
|
|
758
810
|
Add(columnName: string, type: Type, expression: string): DataColumn;
|
|
@@ -788,6 +840,10 @@ export type DataColumnCollection = DataColumnCollection$instance & __DataColumnC
|
|
|
788
840
|
|
|
789
841
|
|
|
790
842
|
export interface DataException$instance extends SystemException {
|
|
843
|
+
readonly __tsonic_type_System_Data_DataException: never;
|
|
844
|
+
|
|
845
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
846
|
+
|
|
791
847
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
792
848
|
}
|
|
793
849
|
|
|
@@ -807,6 +863,8 @@ export type DataException = DataException$instance & __DataException$views;
|
|
|
807
863
|
|
|
808
864
|
|
|
809
865
|
export interface DataRelation$instance {
|
|
866
|
+
readonly __tsonic_type_System_Data_DataRelation: never;
|
|
867
|
+
|
|
810
868
|
readonly ChildColumns: DataColumn[];
|
|
811
869
|
readonly ChildKeyConstraint: ForeignKeyConstraint | undefined;
|
|
812
870
|
readonly ChildTable: DataTable;
|
|
@@ -834,6 +892,11 @@ export const DataRelation: {
|
|
|
834
892
|
export type DataRelation = DataRelation$instance;
|
|
835
893
|
|
|
836
894
|
export interface DataRelationCollection$instance extends InternalDataCollectionBase$instance {
|
|
895
|
+
readonly __tsonic_type_System_Data_DataRelationCollection: never;
|
|
896
|
+
|
|
897
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
898
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
899
|
+
|
|
837
900
|
Add(relation: DataRelation): void;
|
|
838
901
|
Add(name: string, parentColumns: DataColumn[], childColumns: DataColumn[]): DataRelation;
|
|
839
902
|
Add(name: string, parentColumns: DataColumn[], childColumns: DataColumn[], createConstraints: boolean): DataRelation;
|
|
@@ -875,6 +938,8 @@ export type DataRelationCollection = DataRelationCollection$instance & __DataRel
|
|
|
875
938
|
|
|
876
939
|
|
|
877
940
|
export interface DataRow$instance {
|
|
941
|
+
readonly __tsonic_type_System_Data_DataRow: never;
|
|
942
|
+
|
|
878
943
|
readonly HasErrors: boolean;
|
|
879
944
|
ItemArray: (unknown | undefined)[];
|
|
880
945
|
RowError: string;
|
|
@@ -934,6 +999,8 @@ export const DataRow: (abstract new(builder: DataRowBuilder) => DataRow) & {
|
|
|
934
999
|
export type DataRow = DataRow$instance;
|
|
935
1000
|
|
|
936
1001
|
export interface DataRowBuilder$instance {
|
|
1002
|
+
readonly __tsonic_type_System_Data_DataRowBuilder: never;
|
|
1003
|
+
|
|
937
1004
|
}
|
|
938
1005
|
|
|
939
1006
|
|
|
@@ -944,6 +1011,8 @@ export const DataRowBuilder: {
|
|
|
944
1011
|
export type DataRowBuilder = DataRowBuilder$instance;
|
|
945
1012
|
|
|
946
1013
|
export interface DataRowChangeEventArgs$instance extends EventArgs {
|
|
1014
|
+
readonly __tsonic_type_System_Data_DataRowChangeEventArgs: never;
|
|
1015
|
+
|
|
947
1016
|
readonly Action: DataRowAction;
|
|
948
1017
|
readonly Row: DataRow;
|
|
949
1018
|
}
|
|
@@ -957,6 +1026,11 @@ export const DataRowChangeEventArgs: {
|
|
|
957
1026
|
export type DataRowChangeEventArgs = DataRowChangeEventArgs$instance;
|
|
958
1027
|
|
|
959
1028
|
export interface DataRowCollection$instance extends InternalDataCollectionBase$instance {
|
|
1029
|
+
readonly __tsonic_type_System_Data_DataRowCollection: never;
|
|
1030
|
+
|
|
1031
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1032
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1033
|
+
|
|
960
1034
|
readonly Count: int;
|
|
961
1035
|
readonly [index: number]: DataRow;
|
|
962
1036
|
Add(row: DataRow): void;
|
|
@@ -989,6 +1063,10 @@ export type DataRowCollection = DataRowCollection$instance & __DataRowCollection
|
|
|
989
1063
|
|
|
990
1064
|
|
|
991
1065
|
export interface DataRowComparer_1$instance<TRow extends DataRow> {
|
|
1066
|
+
readonly __tsonic_type_System_Data_DataRowComparer_1: never;
|
|
1067
|
+
|
|
1068
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1069
|
+
|
|
992
1070
|
Equals(leftRow: TRow, rightRow: TRow): boolean;
|
|
993
1071
|
GetHashCode(row: TRow): int;
|
|
994
1072
|
}
|
|
@@ -1006,7 +1084,14 @@ export interface __DataRowComparer_1$views<TRow extends DataRow> {
|
|
|
1006
1084
|
export type DataRowComparer_1<TRow extends DataRow> = DataRowComparer_1$instance<TRow> & __DataRowComparer_1$views<TRow>;
|
|
1007
1085
|
|
|
1008
1086
|
|
|
1009
|
-
export interface DataRowView$instance extends INotifyPropertyChanged {
|
|
1087
|
+
export interface DataRowView$instance extends INotifyPropertyChanged, System_ComponentModel_Internal.ICustomTypeDescriptor$instance, System_ComponentModel_Internal.IDataErrorInfo$instance, System_ComponentModel_Internal.IEditableObject$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {
|
|
1088
|
+
readonly __tsonic_type_System_Data_DataRowView: never;
|
|
1089
|
+
|
|
1090
|
+
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
1091
|
+
readonly __tsonic_iface_System_ComponentModel_IDataErrorInfo: never;
|
|
1092
|
+
readonly __tsonic_iface_System_ComponentModel_IEditableObject: never;
|
|
1093
|
+
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
1094
|
+
|
|
1010
1095
|
readonly DataView: DataView;
|
|
1011
1096
|
readonly IsEdit: boolean;
|
|
1012
1097
|
readonly IsNew: boolean;
|
|
@@ -1039,12 +1124,21 @@ export interface __DataRowView$views {
|
|
|
1039
1124
|
As_IDataErrorInfo(): System_ComponentModel_Internal.IDataErrorInfo$instance;
|
|
1040
1125
|
}
|
|
1041
1126
|
|
|
1042
|
-
export interface DataRowView$instance extends System_ComponentModel_Internal.ICustomTypeDescriptor$instance, System_ComponentModel_Internal.IDataErrorInfo$instance, System_ComponentModel_Internal.IEditableObject$instance, System_ComponentModel_Internal.INotifyPropertyChanged$instance {}
|
|
1043
|
-
|
|
1044
1127
|
export type DataRowView = DataRowView$instance & __DataRowView$views;
|
|
1045
1128
|
|
|
1046
1129
|
|
|
1047
|
-
export interface DataSet$instance extends MarshalByValueComponent {
|
|
1130
|
+
export interface DataSet$instance extends MarshalByValueComponent, System_ComponentModel_Internal.IListSource$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1131
|
+
readonly __tsonic_type_System_Data_DataSet: never;
|
|
1132
|
+
|
|
1133
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1134
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
1135
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
1136
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitializeNotification: never;
|
|
1137
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1138
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
1139
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1140
|
+
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
1141
|
+
|
|
1048
1142
|
CaseSensitive: boolean;
|
|
1049
1143
|
DataSetName: string;
|
|
1050
1144
|
readonly DefaultViewManager: DataViewManager;
|
|
@@ -1152,12 +1246,12 @@ export interface __DataSet$views {
|
|
|
1152
1246
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
1153
1247
|
}
|
|
1154
1248
|
|
|
1155
|
-
export interface DataSet$instance extends System_ComponentModel_Internal.IListSource$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1156
|
-
|
|
1157
1249
|
export type DataSet = DataSet$instance & __DataSet$views;
|
|
1158
1250
|
|
|
1159
1251
|
|
|
1160
1252
|
export interface DataSysDescriptionAttribute$instance extends DescriptionAttribute {
|
|
1253
|
+
readonly __tsonic_type_System_Data_DataSysDescriptionAttribute: never;
|
|
1254
|
+
|
|
1161
1255
|
readonly Description: string;
|
|
1162
1256
|
}
|
|
1163
1257
|
|
|
@@ -1169,7 +1263,18 @@ export const DataSysDescriptionAttribute: {
|
|
|
1169
1263
|
|
|
1170
1264
|
export type DataSysDescriptionAttribute = DataSysDescriptionAttribute$instance;
|
|
1171
1265
|
|
|
1172
|
-
export interface DataTable$instance extends MarshalByValueComponent {
|
|
1266
|
+
export interface DataTable$instance extends MarshalByValueComponent, System_ComponentModel_Internal.IListSource$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1267
|
+
readonly __tsonic_type_System_Data_DataTable: never;
|
|
1268
|
+
|
|
1269
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1270
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
1271
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
1272
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitializeNotification: never;
|
|
1273
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1274
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
1275
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1276
|
+
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
1277
|
+
|
|
1173
1278
|
CaseSensitive: boolean;
|
|
1174
1279
|
readonly ChildRelations: DataRelationCollection;
|
|
1175
1280
|
readonly Columns: DataColumnCollection;
|
|
@@ -1295,12 +1400,12 @@ export interface __DataTable$views {
|
|
|
1295
1400
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
1296
1401
|
}
|
|
1297
1402
|
|
|
1298
|
-
export interface DataTable$instance extends System_ComponentModel_Internal.IListSource$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1299
|
-
|
|
1300
1403
|
export type DataTable = DataTable$instance & __DataTable$views;
|
|
1301
1404
|
|
|
1302
1405
|
|
|
1303
1406
|
export interface DataTableClearEventArgs$instance extends EventArgs {
|
|
1407
|
+
readonly __tsonic_type_System_Data_DataTableClearEventArgs: never;
|
|
1408
|
+
|
|
1304
1409
|
readonly Table: DataTable;
|
|
1305
1410
|
readonly TableName: string;
|
|
1306
1411
|
readonly TableNamespace: string;
|
|
@@ -1315,6 +1420,11 @@ export const DataTableClearEventArgs: {
|
|
|
1315
1420
|
export type DataTableClearEventArgs = DataTableClearEventArgs$instance;
|
|
1316
1421
|
|
|
1317
1422
|
export interface DataTableCollection$instance extends InternalDataCollectionBase$instance {
|
|
1423
|
+
readonly __tsonic_type_System_Data_DataTableCollection: never;
|
|
1424
|
+
|
|
1425
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1426
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1427
|
+
|
|
1318
1428
|
readonly List: ArrayList;
|
|
1319
1429
|
Add(table: DataTable): void;
|
|
1320
1430
|
Add(name: string): DataTable;
|
|
@@ -1353,6 +1463,8 @@ export type DataTableCollection = DataTableCollection$instance & __DataTableColl
|
|
|
1353
1463
|
|
|
1354
1464
|
|
|
1355
1465
|
export interface DataTableNewRowEventArgs$instance extends EventArgs {
|
|
1466
|
+
readonly __tsonic_type_System_Data_DataTableNewRowEventArgs: never;
|
|
1467
|
+
|
|
1356
1468
|
readonly Row: DataRow;
|
|
1357
1469
|
}
|
|
1358
1470
|
|
|
@@ -1365,6 +1477,14 @@ export const DataTableNewRowEventArgs: {
|
|
|
1365
1477
|
export type DataTableNewRowEventArgs = DataTableNewRowEventArgs$instance;
|
|
1366
1478
|
|
|
1367
1479
|
export interface DataTableReader$instance extends DbDataReader {
|
|
1480
|
+
readonly __tsonic_type_System_Data_DataTableReader: never;
|
|
1481
|
+
|
|
1482
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1483
|
+
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
1484
|
+
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
1485
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1486
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1487
|
+
|
|
1368
1488
|
readonly Depth: int;
|
|
1369
1489
|
readonly FieldCount: int;
|
|
1370
1490
|
readonly HasRows: boolean;
|
|
@@ -1426,7 +1546,21 @@ export interface __DataTableReader$views {
|
|
|
1426
1546
|
export type DataTableReader = DataTableReader$instance & __DataTableReader$views;
|
|
1427
1547
|
|
|
1428
1548
|
|
|
1429
|
-
export interface DataView$instance extends MarshalByValueComponent {
|
|
1549
|
+
export interface DataView$instance extends MarshalByValueComponent, System_ComponentModel_Internal.ITypedList$instance {
|
|
1550
|
+
readonly __tsonic_type_System_Data_DataView: never;
|
|
1551
|
+
|
|
1552
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1553
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1554
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1555
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingList: never;
|
|
1556
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingListView: never;
|
|
1557
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1558
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
1559
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitializeNotification: never;
|
|
1560
|
+
readonly __tsonic_iface_System_ComponentModel_ITypedList: never;
|
|
1561
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1562
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
1563
|
+
|
|
1430
1564
|
AllowDelete: boolean;
|
|
1431
1565
|
AllowEdit: boolean;
|
|
1432
1566
|
AllowNew: boolean;
|
|
@@ -1488,12 +1622,21 @@ export interface __DataView$views {
|
|
|
1488
1622
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1489
1623
|
}
|
|
1490
1624
|
|
|
1491
|
-
export interface DataView$instance extends System_ComponentModel_Internal.ITypedList$instance {}
|
|
1492
|
-
|
|
1493
1625
|
export type DataView = DataView$instance & __DataView$views;
|
|
1494
1626
|
|
|
1495
1627
|
|
|
1496
|
-
export interface DataViewManager$instance extends MarshalByValueComponent {
|
|
1628
|
+
export interface DataViewManager$instance extends MarshalByValueComponent, System_ComponentModel_Internal.IBindingList$instance, System_ComponentModel_Internal.ITypedList$instance {
|
|
1629
|
+
readonly __tsonic_type_System_Data_DataViewManager: never;
|
|
1630
|
+
|
|
1631
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1632
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1633
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1634
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingList: never;
|
|
1635
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1636
|
+
readonly __tsonic_iface_System_ComponentModel_ITypedList: never;
|
|
1637
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1638
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
1639
|
+
|
|
1497
1640
|
get DataSet(): DataSet | undefined;
|
|
1498
1641
|
set DataSet(value: DataSet | undefined);
|
|
1499
1642
|
DataViewSettingCollectionString: string;
|
|
@@ -1525,12 +1668,12 @@ export interface __DataViewManager$views {
|
|
|
1525
1668
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1526
1669
|
}
|
|
1527
1670
|
|
|
1528
|
-
export interface DataViewManager$instance extends System_ComponentModel_Internal.IBindingList$instance, System_ComponentModel_Internal.ITypedList$instance {}
|
|
1529
|
-
|
|
1530
1671
|
export type DataViewManager = DataViewManager$instance & __DataViewManager$views;
|
|
1531
1672
|
|
|
1532
1673
|
|
|
1533
1674
|
export interface DataViewSetting$instance {
|
|
1675
|
+
readonly __tsonic_type_System_Data_DataViewSetting: never;
|
|
1676
|
+
|
|
1534
1677
|
ApplyDefaultSort: boolean;
|
|
1535
1678
|
readonly DataViewManager: DataViewManager | undefined;
|
|
1536
1679
|
RowFilter: string;
|
|
@@ -1547,6 +1690,11 @@ export const DataViewSetting: {
|
|
|
1547
1690
|
export type DataViewSetting = DataViewSetting$instance;
|
|
1548
1691
|
|
|
1549
1692
|
export interface DataViewSettingCollection$instance {
|
|
1693
|
+
readonly __tsonic_type_System_Data_DataViewSettingCollection: never;
|
|
1694
|
+
|
|
1695
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1696
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1697
|
+
|
|
1550
1698
|
readonly Count: int;
|
|
1551
1699
|
readonly IsReadOnly: boolean;
|
|
1552
1700
|
readonly IsSynchronized: boolean;
|
|
@@ -1575,6 +1723,10 @@ export type DataViewSettingCollection = DataViewSettingCollection$instance & __D
|
|
|
1575
1723
|
|
|
1576
1724
|
|
|
1577
1725
|
export interface DBConcurrencyException$instance extends SystemException {
|
|
1726
|
+
readonly __tsonic_type_System_Data_DBConcurrencyException: never;
|
|
1727
|
+
|
|
1728
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1729
|
+
|
|
1578
1730
|
get Row(): DataRow | undefined;
|
|
1579
1731
|
set Row(value: DataRow | undefined);
|
|
1580
1732
|
readonly RowCount: int;
|
|
@@ -1600,6 +1752,10 @@ export type DBConcurrencyException = DBConcurrencyException$instance & __DBConcu
|
|
|
1600
1752
|
|
|
1601
1753
|
|
|
1602
1754
|
export interface DeletedRowInaccessibleException$instance extends DataException$instance {
|
|
1755
|
+
readonly __tsonic_type_System_Data_DeletedRowInaccessibleException: never;
|
|
1756
|
+
|
|
1757
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1758
|
+
|
|
1603
1759
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1604
1760
|
}
|
|
1605
1761
|
|
|
@@ -1619,6 +1775,10 @@ export type DeletedRowInaccessibleException = DeletedRowInaccessibleException$in
|
|
|
1619
1775
|
|
|
1620
1776
|
|
|
1621
1777
|
export interface DuplicateNameException$instance extends DataException$instance {
|
|
1778
|
+
readonly __tsonic_type_System_Data_DuplicateNameException: never;
|
|
1779
|
+
|
|
1780
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1781
|
+
|
|
1622
1782
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1623
1783
|
}
|
|
1624
1784
|
|
|
@@ -1638,6 +1798,10 @@ export type DuplicateNameException = DuplicateNameException$instance & __Duplica
|
|
|
1638
1798
|
|
|
1639
1799
|
|
|
1640
1800
|
export interface EnumerableRowCollection$instance {
|
|
1801
|
+
readonly __tsonic_type_System_Data_EnumerableRowCollection: never;
|
|
1802
|
+
|
|
1803
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1804
|
+
|
|
1641
1805
|
}
|
|
1642
1806
|
|
|
1643
1807
|
|
|
@@ -1649,12 +1813,15 @@ export interface __EnumerableRowCollection$views {
|
|
|
1649
1813
|
As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
|
|
1650
1814
|
}
|
|
1651
1815
|
|
|
1652
|
-
export interface EnumerableRowCollection$instance extends System_Collections_Internal.IEnumerable$instance {}
|
|
1653
|
-
|
|
1654
1816
|
export type EnumerableRowCollection = EnumerableRowCollection$instance & __EnumerableRowCollection$views;
|
|
1655
1817
|
|
|
1656
1818
|
|
|
1657
1819
|
export interface EnumerableRowCollection_1$instance<TRow> extends EnumerableRowCollection$instance {
|
|
1820
|
+
readonly __tsonic_type_System_Data_EnumerableRowCollection_1: never;
|
|
1821
|
+
|
|
1822
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1823
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1824
|
+
|
|
1658
1825
|
GetEnumerator(): IEnumerator;
|
|
1659
1826
|
}
|
|
1660
1827
|
|
|
@@ -1672,6 +1839,10 @@ export type EnumerableRowCollection_1<TRow> = EnumerableRowCollection_1$instance
|
|
|
1672
1839
|
|
|
1673
1840
|
|
|
1674
1841
|
export interface EvaluateException$instance extends InvalidExpressionException$instance {
|
|
1842
|
+
readonly __tsonic_type_System_Data_EvaluateException: never;
|
|
1843
|
+
|
|
1844
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1845
|
+
|
|
1675
1846
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1676
1847
|
}
|
|
1677
1848
|
|
|
@@ -1691,6 +1862,8 @@ export type EvaluateException = EvaluateException$instance & __EvaluateException
|
|
|
1691
1862
|
|
|
1692
1863
|
|
|
1693
1864
|
export interface FillErrorEventArgs$instance extends EventArgs {
|
|
1865
|
+
readonly __tsonic_type_System_Data_FillErrorEventArgs: never;
|
|
1866
|
+
|
|
1694
1867
|
Continue: boolean;
|
|
1695
1868
|
readonly DataTable: DataTable | undefined;
|
|
1696
1869
|
get Errors(): Exception | undefined;
|
|
@@ -1707,6 +1880,8 @@ export const FillErrorEventArgs: {
|
|
|
1707
1880
|
export type FillErrorEventArgs = FillErrorEventArgs$instance;
|
|
1708
1881
|
|
|
1709
1882
|
export interface ForeignKeyConstraint$instance extends Constraint {
|
|
1883
|
+
readonly __tsonic_type_System_Data_ForeignKeyConstraint: never;
|
|
1884
|
+
|
|
1710
1885
|
AcceptRejectRule: AcceptRejectRule;
|
|
1711
1886
|
readonly Columns: DataColumn[];
|
|
1712
1887
|
DeleteRule: Rule;
|
|
@@ -1732,6 +1907,10 @@ export const ForeignKeyConstraint: {
|
|
|
1732
1907
|
export type ForeignKeyConstraint = ForeignKeyConstraint$instance;
|
|
1733
1908
|
|
|
1734
1909
|
export interface InRowChangingEventException$instance extends DataException$instance {
|
|
1910
|
+
readonly __tsonic_type_System_Data_InRowChangingEventException: never;
|
|
1911
|
+
|
|
1912
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1913
|
+
|
|
1735
1914
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1736
1915
|
}
|
|
1737
1916
|
|
|
@@ -1751,6 +1930,11 @@ export type InRowChangingEventException = InRowChangingEventException$instance &
|
|
|
1751
1930
|
|
|
1752
1931
|
|
|
1753
1932
|
export interface InternalDataCollectionBase$instance {
|
|
1933
|
+
readonly __tsonic_type_System_Data_InternalDataCollectionBase: never;
|
|
1934
|
+
|
|
1935
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1936
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1937
|
+
|
|
1754
1938
|
readonly Count: int;
|
|
1755
1939
|
readonly IsReadOnly: boolean;
|
|
1756
1940
|
readonly IsSynchronized: boolean;
|
|
@@ -1775,6 +1959,10 @@ export type InternalDataCollectionBase = InternalDataCollectionBase$instance & _
|
|
|
1775
1959
|
|
|
1776
1960
|
|
|
1777
1961
|
export interface InvalidConstraintException$instance extends DataException$instance {
|
|
1962
|
+
readonly __tsonic_type_System_Data_InvalidConstraintException: never;
|
|
1963
|
+
|
|
1964
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1965
|
+
|
|
1778
1966
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1779
1967
|
}
|
|
1780
1968
|
|
|
@@ -1794,6 +1982,10 @@ export type InvalidConstraintException = InvalidConstraintException$instance & _
|
|
|
1794
1982
|
|
|
1795
1983
|
|
|
1796
1984
|
export interface InvalidExpressionException$instance extends DataException$instance {
|
|
1985
|
+
readonly __tsonic_type_System_Data_InvalidExpressionException: never;
|
|
1986
|
+
|
|
1987
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1988
|
+
|
|
1797
1989
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1798
1990
|
}
|
|
1799
1991
|
|
|
@@ -1813,6 +2005,8 @@ export type InvalidExpressionException = InvalidExpressionException$instance & _
|
|
|
1813
2005
|
|
|
1814
2006
|
|
|
1815
2007
|
export interface MergeFailedEventArgs$instance extends EventArgs {
|
|
2008
|
+
readonly __tsonic_type_System_Data_MergeFailedEventArgs: never;
|
|
2009
|
+
|
|
1816
2010
|
readonly Conflict: string;
|
|
1817
2011
|
readonly Table: DataTable | undefined;
|
|
1818
2012
|
}
|
|
@@ -1826,6 +2020,10 @@ export const MergeFailedEventArgs: {
|
|
|
1826
2020
|
export type MergeFailedEventArgs = MergeFailedEventArgs$instance;
|
|
1827
2021
|
|
|
1828
2022
|
export interface MissingPrimaryKeyException$instance extends DataException$instance {
|
|
2023
|
+
readonly __tsonic_type_System_Data_MissingPrimaryKeyException: never;
|
|
2024
|
+
|
|
2025
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2026
|
+
|
|
1829
2027
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1830
2028
|
}
|
|
1831
2029
|
|
|
@@ -1845,6 +2043,10 @@ export type MissingPrimaryKeyException = MissingPrimaryKeyException$instance & _
|
|
|
1845
2043
|
|
|
1846
2044
|
|
|
1847
2045
|
export interface NoNullAllowedException$instance extends DataException$instance {
|
|
2046
|
+
readonly __tsonic_type_System_Data_NoNullAllowedException: never;
|
|
2047
|
+
|
|
2048
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2049
|
+
|
|
1848
2050
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1849
2051
|
}
|
|
1850
2052
|
|
|
@@ -1864,6 +2066,11 @@ export type NoNullAllowedException = NoNullAllowedException$instance & __NoNullA
|
|
|
1864
2066
|
|
|
1865
2067
|
|
|
1866
2068
|
export interface OrderedEnumerableRowCollection_1$instance<TRow> extends EnumerableRowCollection_1$instance<TRow> {
|
|
2069
|
+
readonly __tsonic_type_System_Data_OrderedEnumerableRowCollection_1: never;
|
|
2070
|
+
|
|
2071
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2072
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2073
|
+
|
|
1867
2074
|
GetEnumerator(): IEnumerator_1<TRow>;
|
|
1868
2075
|
GetEnumerator(): IEnumerator;
|
|
1869
2076
|
}
|
|
@@ -1882,6 +2089,15 @@ export type OrderedEnumerableRowCollection_1<TRow> = OrderedEnumerableRowCollect
|
|
|
1882
2089
|
|
|
1883
2090
|
|
|
1884
2091
|
export interface PropertyCollection$instance extends Hashtable {
|
|
2092
|
+
readonly __tsonic_type_System_Data_PropertyCollection: never;
|
|
2093
|
+
|
|
2094
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2095
|
+
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
2096
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2097
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
2098
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
2099
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2100
|
+
|
|
1885
2101
|
Add(key: unknown, value: unknown): void;
|
|
1886
2102
|
Clear(): void;
|
|
1887
2103
|
Clone(): unknown;
|
|
@@ -1913,6 +2129,10 @@ export type PropertyCollection = PropertyCollection$instance & __PropertyCollect
|
|
|
1913
2129
|
|
|
1914
2130
|
|
|
1915
2131
|
export interface ReadOnlyException$instance extends DataException$instance {
|
|
2132
|
+
readonly __tsonic_type_System_Data_ReadOnlyException: never;
|
|
2133
|
+
|
|
2134
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2135
|
+
|
|
1916
2136
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1917
2137
|
}
|
|
1918
2138
|
|
|
@@ -1932,6 +2152,10 @@ export type ReadOnlyException = ReadOnlyException$instance & __ReadOnlyException
|
|
|
1932
2152
|
|
|
1933
2153
|
|
|
1934
2154
|
export interface RowNotInTableException$instance extends DataException$instance {
|
|
2155
|
+
readonly __tsonic_type_System_Data_RowNotInTableException: never;
|
|
2156
|
+
|
|
2157
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2158
|
+
|
|
1935
2159
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1936
2160
|
}
|
|
1937
2161
|
|
|
@@ -1951,6 +2175,8 @@ export type RowNotInTableException = RowNotInTableException$instance & __RowNotI
|
|
|
1951
2175
|
|
|
1952
2176
|
|
|
1953
2177
|
export interface StateChangeEventArgs$instance extends EventArgs {
|
|
2178
|
+
readonly __tsonic_type_System_Data_StateChangeEventArgs: never;
|
|
2179
|
+
|
|
1954
2180
|
readonly CurrentState: ConnectionState;
|
|
1955
2181
|
readonly OriginalState: ConnectionState;
|
|
1956
2182
|
}
|
|
@@ -1964,6 +2190,8 @@ export const StateChangeEventArgs: {
|
|
|
1964
2190
|
export type StateChangeEventArgs = StateChangeEventArgs$instance;
|
|
1965
2191
|
|
|
1966
2192
|
export interface StatementCompletedEventArgs$instance extends EventArgs {
|
|
2193
|
+
readonly __tsonic_type_System_Data_StatementCompletedEventArgs: never;
|
|
2194
|
+
|
|
1967
2195
|
readonly RecordCount: int;
|
|
1968
2196
|
}
|
|
1969
2197
|
|
|
@@ -1976,6 +2204,10 @@ export const StatementCompletedEventArgs: {
|
|
|
1976
2204
|
export type StatementCompletedEventArgs = StatementCompletedEventArgs$instance;
|
|
1977
2205
|
|
|
1978
2206
|
export interface StrongTypingException$instance extends DataException$instance {
|
|
2207
|
+
readonly __tsonic_type_System_Data_StrongTypingException: never;
|
|
2208
|
+
|
|
2209
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2210
|
+
|
|
1979
2211
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1980
2212
|
}
|
|
1981
2213
|
|
|
@@ -1995,6 +2227,10 @@ export type StrongTypingException = StrongTypingException$instance & __StrongTyp
|
|
|
1995
2227
|
|
|
1996
2228
|
|
|
1997
2229
|
export interface SyntaxErrorException$instance extends InvalidExpressionException$instance {
|
|
2230
|
+
readonly __tsonic_type_System_Data_SyntaxErrorException: never;
|
|
2231
|
+
|
|
2232
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2233
|
+
|
|
1998
2234
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1999
2235
|
}
|
|
2000
2236
|
|
|
@@ -2013,7 +2249,20 @@ export interface __SyntaxErrorException$views {
|
|
|
2013
2249
|
export type SyntaxErrorException = SyntaxErrorException$instance & __SyntaxErrorException$views;
|
|
2014
2250
|
|
|
2015
2251
|
|
|
2016
|
-
export interface TypedTableBase_1$instance<T extends DataRow> extends DataTable$instance {
|
|
2252
|
+
export interface TypedTableBase_1$instance<T extends DataRow> extends DataTable$instance, System_ComponentModel_Internal.IListSource$instance, System_ComponentModel_Internal.ISupportInitializeNotification$instance {
|
|
2253
|
+
readonly __tsonic_type_System_Data_TypedTableBase_1: never;
|
|
2254
|
+
|
|
2255
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2256
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2257
|
+
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
2258
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
2259
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
2260
|
+
readonly __tsonic_iface_System_ComponentModel_ISupportInitializeNotification: never;
|
|
2261
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2262
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
2263
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2264
|
+
readonly __tsonic_iface_System_Xml_Serialization_IXmlSerializable: never;
|
|
2265
|
+
|
|
2017
2266
|
BeginInit(): void;
|
|
2018
2267
|
Cast<TResult>(): EnumerableRowCollection_1<TResult>;
|
|
2019
2268
|
Dispose(): void;
|
|
@@ -2064,12 +2313,12 @@ export interface __TypedTableBase_1$views<T extends DataRow> {
|
|
|
2064
2313
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
2065
2314
|
}
|
|
2066
2315
|
|
|
2067
|
-
export interface TypedTableBase_1$instance<T extends DataRow> extends System_ComponentModel_Internal.IListSource$instance, System_ComponentModel_Internal.ISupportInitializeNotification$instance {}
|
|
2068
|
-
|
|
2069
2316
|
export type TypedTableBase_1<T extends DataRow> = TypedTableBase_1$instance<T> & __TypedTableBase_1$views<T>;
|
|
2070
2317
|
|
|
2071
2318
|
|
|
2072
2319
|
export interface UniqueConstraint$instance extends Constraint {
|
|
2320
|
+
readonly __tsonic_type_System_Data_UniqueConstraint: never;
|
|
2321
|
+
|
|
2073
2322
|
readonly Columns: DataColumn[];
|
|
2074
2323
|
readonly IsPrimaryKey: boolean;
|
|
2075
2324
|
readonly Table: DataTable | undefined;
|
|
@@ -2094,6 +2343,10 @@ export const UniqueConstraint: {
|
|
|
2094
2343
|
export type UniqueConstraint = UniqueConstraint$instance;
|
|
2095
2344
|
|
|
2096
2345
|
export interface VersionNotFoundException$instance extends DataException$instance {
|
|
2346
|
+
readonly __tsonic_type_System_Data_VersionNotFoundException: never;
|
|
2347
|
+
|
|
2348
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2349
|
+
|
|
2097
2350
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
2098
2351
|
}
|
|
2099
2352
|
|