@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
|
@@ -650,6 +650,8 @@ export interface ITableMappingCollection$instance extends IList, ICollection, IE
|
|
|
650
650
|
export type ITableMappingCollection = ITableMappingCollection$instance;
|
|
651
651
|
|
|
652
652
|
export interface Constraint$instance {
|
|
653
|
+
readonly __tsonic_type_System_Data_Constraint: never;
|
|
654
|
+
|
|
653
655
|
readonly _DataSet: DataSet | undefined;
|
|
654
656
|
ConstraintName: string;
|
|
655
657
|
readonly ExtendedProperties: PropertyCollection;
|
|
@@ -665,6 +667,8 @@ export const Constraint: {
|
|
|
665
667
|
export type Constraint = Constraint$instance;
|
|
666
668
|
|
|
667
669
|
export interface ConstraintCollection$instance extends InternalDataCollectionBase$instance {
|
|
670
|
+
readonly __tsonic_type_System_Data_ConstraintCollection: never;
|
|
671
|
+
|
|
668
672
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
669
673
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
670
674
|
|
|
@@ -703,6 +707,8 @@ export type ConstraintCollection = ConstraintCollection$instance & __ConstraintC
|
|
|
703
707
|
|
|
704
708
|
|
|
705
709
|
export interface ConstraintException$instance extends DataException$instance {
|
|
710
|
+
readonly __tsonic_type_System_Data_ConstraintException: never;
|
|
711
|
+
|
|
706
712
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
707
713
|
|
|
708
714
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -724,6 +730,8 @@ export type ConstraintException = ConstraintException$instance & __ConstraintExc
|
|
|
724
730
|
|
|
725
731
|
|
|
726
732
|
export interface DataColumn$instance extends MarshalByValueComponent {
|
|
733
|
+
readonly __tsonic_type_System_Data_DataColumn: never;
|
|
734
|
+
|
|
727
735
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
728
736
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
729
737
|
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
@@ -775,6 +783,8 @@ export type DataColumn = DataColumn$instance & __DataColumn$views;
|
|
|
775
783
|
|
|
776
784
|
|
|
777
785
|
export interface DataColumnChangeEventArgs$instance extends EventArgs {
|
|
786
|
+
readonly __tsonic_type_System_Data_DataColumnChangeEventArgs: never;
|
|
787
|
+
|
|
778
788
|
readonly Column: DataColumn | undefined;
|
|
779
789
|
get ProposedValue(): unknown | undefined;
|
|
780
790
|
set ProposedValue(value: unknown | undefined);
|
|
@@ -790,6 +800,8 @@ export const DataColumnChangeEventArgs: {
|
|
|
790
800
|
export type DataColumnChangeEventArgs = DataColumnChangeEventArgs$instance;
|
|
791
801
|
|
|
792
802
|
export interface DataColumnCollection$instance extends InternalDataCollectionBase$instance {
|
|
803
|
+
readonly __tsonic_type_System_Data_DataColumnCollection: never;
|
|
804
|
+
|
|
793
805
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
794
806
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
795
807
|
|
|
@@ -828,6 +840,8 @@ export type DataColumnCollection = DataColumnCollection$instance & __DataColumnC
|
|
|
828
840
|
|
|
829
841
|
|
|
830
842
|
export interface DataException$instance extends SystemException {
|
|
843
|
+
readonly __tsonic_type_System_Data_DataException: never;
|
|
844
|
+
|
|
831
845
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
832
846
|
|
|
833
847
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -849,6 +863,8 @@ export type DataException = DataException$instance & __DataException$views;
|
|
|
849
863
|
|
|
850
864
|
|
|
851
865
|
export interface DataRelation$instance {
|
|
866
|
+
readonly __tsonic_type_System_Data_DataRelation: never;
|
|
867
|
+
|
|
852
868
|
readonly ChildColumns: DataColumn[];
|
|
853
869
|
readonly ChildKeyConstraint: ForeignKeyConstraint | undefined;
|
|
854
870
|
readonly ChildTable: DataTable;
|
|
@@ -876,6 +892,8 @@ export const DataRelation: {
|
|
|
876
892
|
export type DataRelation = DataRelation$instance;
|
|
877
893
|
|
|
878
894
|
export interface DataRelationCollection$instance extends InternalDataCollectionBase$instance {
|
|
895
|
+
readonly __tsonic_type_System_Data_DataRelationCollection: never;
|
|
896
|
+
|
|
879
897
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
880
898
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
881
899
|
|
|
@@ -920,6 +938,8 @@ export type DataRelationCollection = DataRelationCollection$instance & __DataRel
|
|
|
920
938
|
|
|
921
939
|
|
|
922
940
|
export interface DataRow$instance {
|
|
941
|
+
readonly __tsonic_type_System_Data_DataRow: never;
|
|
942
|
+
|
|
923
943
|
readonly HasErrors: boolean;
|
|
924
944
|
ItemArray: (unknown | undefined)[];
|
|
925
945
|
RowError: string;
|
|
@@ -979,6 +999,8 @@ export const DataRow: (abstract new(builder: DataRowBuilder) => DataRow) & {
|
|
|
979
999
|
export type DataRow = DataRow$instance;
|
|
980
1000
|
|
|
981
1001
|
export interface DataRowBuilder$instance {
|
|
1002
|
+
readonly __tsonic_type_System_Data_DataRowBuilder: never;
|
|
1003
|
+
|
|
982
1004
|
}
|
|
983
1005
|
|
|
984
1006
|
|
|
@@ -989,6 +1011,8 @@ export const DataRowBuilder: {
|
|
|
989
1011
|
export type DataRowBuilder = DataRowBuilder$instance;
|
|
990
1012
|
|
|
991
1013
|
export interface DataRowChangeEventArgs$instance extends EventArgs {
|
|
1014
|
+
readonly __tsonic_type_System_Data_DataRowChangeEventArgs: never;
|
|
1015
|
+
|
|
992
1016
|
readonly Action: DataRowAction;
|
|
993
1017
|
readonly Row: DataRow;
|
|
994
1018
|
}
|
|
@@ -1002,6 +1026,8 @@ export const DataRowChangeEventArgs: {
|
|
|
1002
1026
|
export type DataRowChangeEventArgs = DataRowChangeEventArgs$instance;
|
|
1003
1027
|
|
|
1004
1028
|
export interface DataRowCollection$instance extends InternalDataCollectionBase$instance {
|
|
1029
|
+
readonly __tsonic_type_System_Data_DataRowCollection: never;
|
|
1030
|
+
|
|
1005
1031
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1006
1032
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1007
1033
|
|
|
@@ -1037,6 +1063,8 @@ export type DataRowCollection = DataRowCollection$instance & __DataRowCollection
|
|
|
1037
1063
|
|
|
1038
1064
|
|
|
1039
1065
|
export interface DataRowComparer_1$instance<TRow extends DataRow> {
|
|
1066
|
+
readonly __tsonic_type_System_Data_DataRowComparer_1: never;
|
|
1067
|
+
|
|
1040
1068
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1041
1069
|
|
|
1042
1070
|
Equals(leftRow: TRow, rightRow: TRow): boolean;
|
|
@@ -1056,7 +1084,9 @@ export interface __DataRowComparer_1$views<TRow extends DataRow> {
|
|
|
1056
1084
|
export type DataRowComparer_1<TRow extends DataRow> = DataRowComparer_1$instance<TRow> & __DataRowComparer_1$views<TRow>;
|
|
1057
1085
|
|
|
1058
1086
|
|
|
1059
|
-
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
|
+
|
|
1060
1090
|
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
1061
1091
|
readonly __tsonic_iface_System_ComponentModel_IDataErrorInfo: never;
|
|
1062
1092
|
readonly __tsonic_iface_System_ComponentModel_IEditableObject: never;
|
|
@@ -1094,12 +1124,12 @@ export interface __DataRowView$views {
|
|
|
1094
1124
|
As_IDataErrorInfo(): System_ComponentModel_Internal.IDataErrorInfo$instance;
|
|
1095
1125
|
}
|
|
1096
1126
|
|
|
1097
|
-
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 {}
|
|
1098
|
-
|
|
1099
1127
|
export type DataRowView = DataRowView$instance & __DataRowView$views;
|
|
1100
1128
|
|
|
1101
1129
|
|
|
1102
|
-
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
|
+
|
|
1103
1133
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1104
1134
|
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
1105
1135
|
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
@@ -1216,12 +1246,12 @@ export interface __DataSet$views {
|
|
|
1216
1246
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
1217
1247
|
}
|
|
1218
1248
|
|
|
1219
|
-
export interface DataSet$instance extends System_ComponentModel_Internal.IListSource$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1220
|
-
|
|
1221
1249
|
export type DataSet = DataSet$instance & __DataSet$views;
|
|
1222
1250
|
|
|
1223
1251
|
|
|
1224
1252
|
export interface DataSysDescriptionAttribute$instance extends DescriptionAttribute {
|
|
1253
|
+
readonly __tsonic_type_System_Data_DataSysDescriptionAttribute: never;
|
|
1254
|
+
|
|
1225
1255
|
readonly Description: string;
|
|
1226
1256
|
}
|
|
1227
1257
|
|
|
@@ -1233,7 +1263,9 @@ export const DataSysDescriptionAttribute: {
|
|
|
1233
1263
|
|
|
1234
1264
|
export type DataSysDescriptionAttribute = DataSysDescriptionAttribute$instance;
|
|
1235
1265
|
|
|
1236
|
-
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
|
+
|
|
1237
1269
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
1238
1270
|
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
1239
1271
|
readonly __tsonic_iface_System_ComponentModel_ISupportInitialize: never;
|
|
@@ -1368,12 +1400,12 @@ export interface __DataTable$views {
|
|
|
1368
1400
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
1369
1401
|
}
|
|
1370
1402
|
|
|
1371
|
-
export interface DataTable$instance extends System_ComponentModel_Internal.IListSource$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1372
|
-
|
|
1373
1403
|
export type DataTable = DataTable$instance & __DataTable$views;
|
|
1374
1404
|
|
|
1375
1405
|
|
|
1376
1406
|
export interface DataTableClearEventArgs$instance extends EventArgs {
|
|
1407
|
+
readonly __tsonic_type_System_Data_DataTableClearEventArgs: never;
|
|
1408
|
+
|
|
1377
1409
|
readonly Table: DataTable;
|
|
1378
1410
|
readonly TableName: string;
|
|
1379
1411
|
readonly TableNamespace: string;
|
|
@@ -1388,6 +1420,8 @@ export const DataTableClearEventArgs: {
|
|
|
1388
1420
|
export type DataTableClearEventArgs = DataTableClearEventArgs$instance;
|
|
1389
1421
|
|
|
1390
1422
|
export interface DataTableCollection$instance extends InternalDataCollectionBase$instance {
|
|
1423
|
+
readonly __tsonic_type_System_Data_DataTableCollection: never;
|
|
1424
|
+
|
|
1391
1425
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1392
1426
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1393
1427
|
|
|
@@ -1429,6 +1463,8 @@ export type DataTableCollection = DataTableCollection$instance & __DataTableColl
|
|
|
1429
1463
|
|
|
1430
1464
|
|
|
1431
1465
|
export interface DataTableNewRowEventArgs$instance extends EventArgs {
|
|
1466
|
+
readonly __tsonic_type_System_Data_DataTableNewRowEventArgs: never;
|
|
1467
|
+
|
|
1432
1468
|
readonly Row: DataRow;
|
|
1433
1469
|
}
|
|
1434
1470
|
|
|
@@ -1441,6 +1477,8 @@ export const DataTableNewRowEventArgs: {
|
|
|
1441
1477
|
export type DataTableNewRowEventArgs = DataTableNewRowEventArgs$instance;
|
|
1442
1478
|
|
|
1443
1479
|
export interface DataTableReader$instance extends DbDataReader {
|
|
1480
|
+
readonly __tsonic_type_System_Data_DataTableReader: never;
|
|
1481
|
+
|
|
1444
1482
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1445
1483
|
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
1446
1484
|
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
@@ -1508,7 +1546,9 @@ export interface __DataTableReader$views {
|
|
|
1508
1546
|
export type DataTableReader = DataTableReader$instance & __DataTableReader$views;
|
|
1509
1547
|
|
|
1510
1548
|
|
|
1511
|
-
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
|
+
|
|
1512
1552
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1513
1553
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1514
1554
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -1582,12 +1622,12 @@ export interface __DataView$views {
|
|
|
1582
1622
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1583
1623
|
}
|
|
1584
1624
|
|
|
1585
|
-
export interface DataView$instance extends System_ComponentModel_Internal.ITypedList$instance {}
|
|
1586
|
-
|
|
1587
1625
|
export type DataView = DataView$instance & __DataView$views;
|
|
1588
1626
|
|
|
1589
1627
|
|
|
1590
|
-
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
|
+
|
|
1591
1631
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1592
1632
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1593
1633
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -1628,12 +1668,12 @@ export interface __DataViewManager$views {
|
|
|
1628
1668
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1629
1669
|
}
|
|
1630
1670
|
|
|
1631
|
-
export interface DataViewManager$instance extends System_ComponentModel_Internal.IBindingList$instance, System_ComponentModel_Internal.ITypedList$instance {}
|
|
1632
|
-
|
|
1633
1671
|
export type DataViewManager = DataViewManager$instance & __DataViewManager$views;
|
|
1634
1672
|
|
|
1635
1673
|
|
|
1636
1674
|
export interface DataViewSetting$instance {
|
|
1675
|
+
readonly __tsonic_type_System_Data_DataViewSetting: never;
|
|
1676
|
+
|
|
1637
1677
|
ApplyDefaultSort: boolean;
|
|
1638
1678
|
readonly DataViewManager: DataViewManager | undefined;
|
|
1639
1679
|
RowFilter: string;
|
|
@@ -1650,6 +1690,8 @@ export const DataViewSetting: {
|
|
|
1650
1690
|
export type DataViewSetting = DataViewSetting$instance;
|
|
1651
1691
|
|
|
1652
1692
|
export interface DataViewSettingCollection$instance {
|
|
1693
|
+
readonly __tsonic_type_System_Data_DataViewSettingCollection: never;
|
|
1694
|
+
|
|
1653
1695
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1654
1696
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1655
1697
|
|
|
@@ -1681,6 +1723,8 @@ export type DataViewSettingCollection = DataViewSettingCollection$instance & __D
|
|
|
1681
1723
|
|
|
1682
1724
|
|
|
1683
1725
|
export interface DBConcurrencyException$instance extends SystemException {
|
|
1726
|
+
readonly __tsonic_type_System_Data_DBConcurrencyException: never;
|
|
1727
|
+
|
|
1684
1728
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1685
1729
|
|
|
1686
1730
|
get Row(): DataRow | undefined;
|
|
@@ -1708,6 +1752,8 @@ export type DBConcurrencyException = DBConcurrencyException$instance & __DBConcu
|
|
|
1708
1752
|
|
|
1709
1753
|
|
|
1710
1754
|
export interface DeletedRowInaccessibleException$instance extends DataException$instance {
|
|
1755
|
+
readonly __tsonic_type_System_Data_DeletedRowInaccessibleException: never;
|
|
1756
|
+
|
|
1711
1757
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1712
1758
|
|
|
1713
1759
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1729,6 +1775,8 @@ export type DeletedRowInaccessibleException = DeletedRowInaccessibleException$in
|
|
|
1729
1775
|
|
|
1730
1776
|
|
|
1731
1777
|
export interface DuplicateNameException$instance extends DataException$instance {
|
|
1778
|
+
readonly __tsonic_type_System_Data_DuplicateNameException: never;
|
|
1779
|
+
|
|
1732
1780
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1733
1781
|
|
|
1734
1782
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1750,6 +1798,8 @@ export type DuplicateNameException = DuplicateNameException$instance & __Duplica
|
|
|
1750
1798
|
|
|
1751
1799
|
|
|
1752
1800
|
export interface EnumerableRowCollection$instance {
|
|
1801
|
+
readonly __tsonic_type_System_Data_EnumerableRowCollection: never;
|
|
1802
|
+
|
|
1753
1803
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1754
1804
|
|
|
1755
1805
|
}
|
|
@@ -1767,6 +1817,8 @@ export type EnumerableRowCollection = EnumerableRowCollection$instance & __Enume
|
|
|
1767
1817
|
|
|
1768
1818
|
|
|
1769
1819
|
export interface EnumerableRowCollection_1$instance<TRow> extends EnumerableRowCollection$instance {
|
|
1820
|
+
readonly __tsonic_type_System_Data_EnumerableRowCollection_1: never;
|
|
1821
|
+
|
|
1770
1822
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1771
1823
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1772
1824
|
|
|
@@ -1787,6 +1839,8 @@ export type EnumerableRowCollection_1<TRow> = EnumerableRowCollection_1$instance
|
|
|
1787
1839
|
|
|
1788
1840
|
|
|
1789
1841
|
export interface EvaluateException$instance extends InvalidExpressionException$instance {
|
|
1842
|
+
readonly __tsonic_type_System_Data_EvaluateException: never;
|
|
1843
|
+
|
|
1790
1844
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1791
1845
|
|
|
1792
1846
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1808,6 +1862,8 @@ export type EvaluateException = EvaluateException$instance & __EvaluateException
|
|
|
1808
1862
|
|
|
1809
1863
|
|
|
1810
1864
|
export interface FillErrorEventArgs$instance extends EventArgs {
|
|
1865
|
+
readonly __tsonic_type_System_Data_FillErrorEventArgs: never;
|
|
1866
|
+
|
|
1811
1867
|
Continue: boolean;
|
|
1812
1868
|
readonly DataTable: DataTable | undefined;
|
|
1813
1869
|
get Errors(): Exception | undefined;
|
|
@@ -1824,6 +1880,8 @@ export const FillErrorEventArgs: {
|
|
|
1824
1880
|
export type FillErrorEventArgs = FillErrorEventArgs$instance;
|
|
1825
1881
|
|
|
1826
1882
|
export interface ForeignKeyConstraint$instance extends Constraint {
|
|
1883
|
+
readonly __tsonic_type_System_Data_ForeignKeyConstraint: never;
|
|
1884
|
+
|
|
1827
1885
|
AcceptRejectRule: AcceptRejectRule;
|
|
1828
1886
|
readonly Columns: DataColumn[];
|
|
1829
1887
|
DeleteRule: Rule;
|
|
@@ -1849,6 +1907,8 @@ export const ForeignKeyConstraint: {
|
|
|
1849
1907
|
export type ForeignKeyConstraint = ForeignKeyConstraint$instance;
|
|
1850
1908
|
|
|
1851
1909
|
export interface InRowChangingEventException$instance extends DataException$instance {
|
|
1910
|
+
readonly __tsonic_type_System_Data_InRowChangingEventException: never;
|
|
1911
|
+
|
|
1852
1912
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1853
1913
|
|
|
1854
1914
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1870,6 +1930,8 @@ export type InRowChangingEventException = InRowChangingEventException$instance &
|
|
|
1870
1930
|
|
|
1871
1931
|
|
|
1872
1932
|
export interface InternalDataCollectionBase$instance {
|
|
1933
|
+
readonly __tsonic_type_System_Data_InternalDataCollectionBase: never;
|
|
1934
|
+
|
|
1873
1935
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1874
1936
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1875
1937
|
|
|
@@ -1897,6 +1959,8 @@ export type InternalDataCollectionBase = InternalDataCollectionBase$instance & _
|
|
|
1897
1959
|
|
|
1898
1960
|
|
|
1899
1961
|
export interface InvalidConstraintException$instance extends DataException$instance {
|
|
1962
|
+
readonly __tsonic_type_System_Data_InvalidConstraintException: never;
|
|
1963
|
+
|
|
1900
1964
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1901
1965
|
|
|
1902
1966
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1918,6 +1982,8 @@ export type InvalidConstraintException = InvalidConstraintException$instance & _
|
|
|
1918
1982
|
|
|
1919
1983
|
|
|
1920
1984
|
export interface InvalidExpressionException$instance extends DataException$instance {
|
|
1985
|
+
readonly __tsonic_type_System_Data_InvalidExpressionException: never;
|
|
1986
|
+
|
|
1921
1987
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1922
1988
|
|
|
1923
1989
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1939,6 +2005,8 @@ export type InvalidExpressionException = InvalidExpressionException$instance & _
|
|
|
1939
2005
|
|
|
1940
2006
|
|
|
1941
2007
|
export interface MergeFailedEventArgs$instance extends EventArgs {
|
|
2008
|
+
readonly __tsonic_type_System_Data_MergeFailedEventArgs: never;
|
|
2009
|
+
|
|
1942
2010
|
readonly Conflict: string;
|
|
1943
2011
|
readonly Table: DataTable | undefined;
|
|
1944
2012
|
}
|
|
@@ -1952,6 +2020,8 @@ export const MergeFailedEventArgs: {
|
|
|
1952
2020
|
export type MergeFailedEventArgs = MergeFailedEventArgs$instance;
|
|
1953
2021
|
|
|
1954
2022
|
export interface MissingPrimaryKeyException$instance extends DataException$instance {
|
|
2023
|
+
readonly __tsonic_type_System_Data_MissingPrimaryKeyException: never;
|
|
2024
|
+
|
|
1955
2025
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1956
2026
|
|
|
1957
2027
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1973,6 +2043,8 @@ export type MissingPrimaryKeyException = MissingPrimaryKeyException$instance & _
|
|
|
1973
2043
|
|
|
1974
2044
|
|
|
1975
2045
|
export interface NoNullAllowedException$instance extends DataException$instance {
|
|
2046
|
+
readonly __tsonic_type_System_Data_NoNullAllowedException: never;
|
|
2047
|
+
|
|
1976
2048
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1977
2049
|
|
|
1978
2050
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1994,6 +2066,8 @@ export type NoNullAllowedException = NoNullAllowedException$instance & __NoNullA
|
|
|
1994
2066
|
|
|
1995
2067
|
|
|
1996
2068
|
export interface OrderedEnumerableRowCollection_1$instance<TRow> extends EnumerableRowCollection_1$instance<TRow> {
|
|
2069
|
+
readonly __tsonic_type_System_Data_OrderedEnumerableRowCollection_1: never;
|
|
2070
|
+
|
|
1997
2071
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1998
2072
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1999
2073
|
|
|
@@ -2015,6 +2089,8 @@ export type OrderedEnumerableRowCollection_1<TRow> = OrderedEnumerableRowCollect
|
|
|
2015
2089
|
|
|
2016
2090
|
|
|
2017
2091
|
export interface PropertyCollection$instance extends Hashtable {
|
|
2092
|
+
readonly __tsonic_type_System_Data_PropertyCollection: never;
|
|
2093
|
+
|
|
2018
2094
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2019
2095
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
2020
2096
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2053,6 +2129,8 @@ export type PropertyCollection = PropertyCollection$instance & __PropertyCollect
|
|
|
2053
2129
|
|
|
2054
2130
|
|
|
2055
2131
|
export interface ReadOnlyException$instance extends DataException$instance {
|
|
2132
|
+
readonly __tsonic_type_System_Data_ReadOnlyException: never;
|
|
2133
|
+
|
|
2056
2134
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2057
2135
|
|
|
2058
2136
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -2074,6 +2152,8 @@ export type ReadOnlyException = ReadOnlyException$instance & __ReadOnlyException
|
|
|
2074
2152
|
|
|
2075
2153
|
|
|
2076
2154
|
export interface RowNotInTableException$instance extends DataException$instance {
|
|
2155
|
+
readonly __tsonic_type_System_Data_RowNotInTableException: never;
|
|
2156
|
+
|
|
2077
2157
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2078
2158
|
|
|
2079
2159
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -2095,6 +2175,8 @@ export type RowNotInTableException = RowNotInTableException$instance & __RowNotI
|
|
|
2095
2175
|
|
|
2096
2176
|
|
|
2097
2177
|
export interface StateChangeEventArgs$instance extends EventArgs {
|
|
2178
|
+
readonly __tsonic_type_System_Data_StateChangeEventArgs: never;
|
|
2179
|
+
|
|
2098
2180
|
readonly CurrentState: ConnectionState;
|
|
2099
2181
|
readonly OriginalState: ConnectionState;
|
|
2100
2182
|
}
|
|
@@ -2108,6 +2190,8 @@ export const StateChangeEventArgs: {
|
|
|
2108
2190
|
export type StateChangeEventArgs = StateChangeEventArgs$instance;
|
|
2109
2191
|
|
|
2110
2192
|
export interface StatementCompletedEventArgs$instance extends EventArgs {
|
|
2193
|
+
readonly __tsonic_type_System_Data_StatementCompletedEventArgs: never;
|
|
2194
|
+
|
|
2111
2195
|
readonly RecordCount: int;
|
|
2112
2196
|
}
|
|
2113
2197
|
|
|
@@ -2120,6 +2204,8 @@ export const StatementCompletedEventArgs: {
|
|
|
2120
2204
|
export type StatementCompletedEventArgs = StatementCompletedEventArgs$instance;
|
|
2121
2205
|
|
|
2122
2206
|
export interface StrongTypingException$instance extends DataException$instance {
|
|
2207
|
+
readonly __tsonic_type_System_Data_StrongTypingException: never;
|
|
2208
|
+
|
|
2123
2209
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2124
2210
|
|
|
2125
2211
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -2141,6 +2227,8 @@ export type StrongTypingException = StrongTypingException$instance & __StrongTyp
|
|
|
2141
2227
|
|
|
2142
2228
|
|
|
2143
2229
|
export interface SyntaxErrorException$instance extends InvalidExpressionException$instance {
|
|
2230
|
+
readonly __tsonic_type_System_Data_SyntaxErrorException: never;
|
|
2231
|
+
|
|
2144
2232
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2145
2233
|
|
|
2146
2234
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -2161,7 +2249,9 @@ export interface __SyntaxErrorException$views {
|
|
|
2161
2249
|
export type SyntaxErrorException = SyntaxErrorException$instance & __SyntaxErrorException$views;
|
|
2162
2250
|
|
|
2163
2251
|
|
|
2164
|
-
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
|
+
|
|
2165
2255
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2166
2256
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2167
2257
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
@@ -2223,12 +2313,12 @@ export interface __TypedTableBase_1$views<T extends DataRow> {
|
|
|
2223
2313
|
As_IXmlSerializable(): System_Xml_Serialization_Internal.IXmlSerializable$instance;
|
|
2224
2314
|
}
|
|
2225
2315
|
|
|
2226
|
-
export interface TypedTableBase_1$instance<T extends DataRow> extends System_ComponentModel_Internal.IListSource$instance, System_ComponentModel_Internal.ISupportInitializeNotification$instance {}
|
|
2227
|
-
|
|
2228
2316
|
export type TypedTableBase_1<T extends DataRow> = TypedTableBase_1$instance<T> & __TypedTableBase_1$views<T>;
|
|
2229
2317
|
|
|
2230
2318
|
|
|
2231
2319
|
export interface UniqueConstraint$instance extends Constraint {
|
|
2320
|
+
readonly __tsonic_type_System_Data_UniqueConstraint: never;
|
|
2321
|
+
|
|
2232
2322
|
readonly Columns: DataColumn[];
|
|
2233
2323
|
readonly IsPrimaryKey: boolean;
|
|
2234
2324
|
readonly Table: DataTable | undefined;
|
|
@@ -2253,6 +2343,8 @@ export const UniqueConstraint: {
|
|
|
2253
2343
|
export type UniqueConstraint = UniqueConstraint$instance;
|
|
2254
2344
|
|
|
2255
2345
|
export interface VersionNotFoundException$instance extends DataException$instance {
|
|
2346
|
+
readonly __tsonic_type_System_Data_VersionNotFoundException: never;
|
|
2347
|
+
|
|
2256
2348
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
2257
2349
|
|
|
2258
2350
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|