@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
|
@@ -545,6 +545,8 @@ export interface ITypedList$instance {
|
|
|
545
545
|
export type ITypedList = ITypedList$instance;
|
|
546
546
|
|
|
547
547
|
export interface AddingNewEventArgs$instance extends EventArgs {
|
|
548
|
+
readonly __tsonic_type_System_ComponentModel_AddingNewEventArgs: never;
|
|
549
|
+
|
|
548
550
|
get NewObject(): unknown | undefined;
|
|
549
551
|
set NewObject(value: unknown | undefined);
|
|
550
552
|
}
|
|
@@ -559,6 +561,8 @@ export const AddingNewEventArgs: {
|
|
|
559
561
|
export type AddingNewEventArgs = AddingNewEventArgs$instance;
|
|
560
562
|
|
|
561
563
|
export interface AmbientValueAttribute$instance extends Attribute {
|
|
564
|
+
readonly __tsonic_type_System_ComponentModel_AmbientValueAttribute: never;
|
|
565
|
+
|
|
562
566
|
readonly Value: unknown | undefined;
|
|
563
567
|
Equals(obj: unknown): boolean;
|
|
564
568
|
GetHashCode(): int;
|
|
@@ -583,6 +587,8 @@ export const AmbientValueAttribute: {
|
|
|
583
587
|
export type AmbientValueAttribute = AmbientValueAttribute$instance;
|
|
584
588
|
|
|
585
589
|
export interface ArrayConverter$instance extends CollectionConverter {
|
|
590
|
+
readonly __tsonic_type_System_ComponentModel_ArrayConverter: never;
|
|
591
|
+
|
|
586
592
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
587
593
|
ConvertTo(value: unknown, destinationType: Type): unknown | undefined;
|
|
588
594
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
@@ -601,6 +607,8 @@ export const ArrayConverter: {
|
|
|
601
607
|
export type ArrayConverter = ArrayConverter$instance;
|
|
602
608
|
|
|
603
609
|
export interface AsyncCompletedEventArgs$instance extends EventArgs {
|
|
610
|
+
readonly __tsonic_type_System_ComponentModel_AsyncCompletedEventArgs: never;
|
|
611
|
+
|
|
604
612
|
readonly Cancelled: boolean;
|
|
605
613
|
readonly Error: Exception | undefined;
|
|
606
614
|
readonly UserState: unknown | undefined;
|
|
@@ -615,6 +623,8 @@ export const AsyncCompletedEventArgs: {
|
|
|
615
623
|
export type AsyncCompletedEventArgs = AsyncCompletedEventArgs$instance;
|
|
616
624
|
|
|
617
625
|
export interface AsyncOperation$instance {
|
|
626
|
+
readonly __tsonic_type_System_ComponentModel_AsyncOperation: never;
|
|
627
|
+
|
|
618
628
|
readonly SynchronizationContext: SynchronizationContext;
|
|
619
629
|
readonly UserSuppliedState: unknown | undefined;
|
|
620
630
|
Finalize(): void;
|
|
@@ -631,6 +641,8 @@ export const AsyncOperation: {
|
|
|
631
641
|
export type AsyncOperation = AsyncOperation$instance;
|
|
632
642
|
|
|
633
643
|
export interface AttributeCollection$instance {
|
|
644
|
+
readonly __tsonic_type_System_ComponentModel_AttributeCollection: never;
|
|
645
|
+
|
|
634
646
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
635
647
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
636
648
|
|
|
@@ -663,6 +675,8 @@ export type AttributeCollection = AttributeCollection$instance & __AttributeColl
|
|
|
663
675
|
|
|
664
676
|
|
|
665
677
|
export interface AttributeProviderAttribute$instance extends Attribute {
|
|
678
|
+
readonly __tsonic_type_System_ComponentModel_AttributeProviderAttribute: never;
|
|
679
|
+
|
|
666
680
|
readonly PropertyName: string | undefined;
|
|
667
681
|
readonly TypeName: string | undefined;
|
|
668
682
|
}
|
|
@@ -678,6 +692,8 @@ export const AttributeProviderAttribute: {
|
|
|
678
692
|
export type AttributeProviderAttribute = AttributeProviderAttribute$instance;
|
|
679
693
|
|
|
680
694
|
export interface BackgroundWorker$instance extends Component$instance {
|
|
695
|
+
readonly __tsonic_type_System_ComponentModel_BackgroundWorker: never;
|
|
696
|
+
|
|
681
697
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
682
698
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
683
699
|
|
|
@@ -712,6 +728,8 @@ export type BackgroundWorker = BackgroundWorker$instance & __BackgroundWorker$vi
|
|
|
712
728
|
|
|
713
729
|
|
|
714
730
|
export interface BaseNumberConverter$instance extends TypeConverter {
|
|
731
|
+
readonly __tsonic_type_System_ComponentModel_BaseNumberConverter: never;
|
|
732
|
+
|
|
715
733
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
716
734
|
CanConvertFrom(sourceType: Type): boolean;
|
|
717
735
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -730,6 +748,8 @@ export const BaseNumberConverter: {
|
|
|
730
748
|
export type BaseNumberConverter = BaseNumberConverter$instance;
|
|
731
749
|
|
|
732
750
|
export interface BindableAttribute$instance extends Attribute {
|
|
751
|
+
readonly __tsonic_type_System_ComponentModel_BindableAttribute: never;
|
|
752
|
+
|
|
733
753
|
readonly Bindable: boolean;
|
|
734
754
|
readonly Direction: BindingDirection;
|
|
735
755
|
Equals(obj: unknown): boolean;
|
|
@@ -751,7 +771,9 @@ export const BindableAttribute: {
|
|
|
751
771
|
|
|
752
772
|
export type BindableAttribute = BindableAttribute$instance;
|
|
753
773
|
|
|
754
|
-
export interface BindingList_1$instance<T> extends Collection_1<T
|
|
774
|
+
export interface BindingList_1$instance<T> extends Collection_1<T>, ICancelAddNew$instance, IRaiseItemChangedEvents$instance {
|
|
775
|
+
readonly __tsonic_type_System_ComponentModel_BindingList_1: never;
|
|
776
|
+
|
|
755
777
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
756
778
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
757
779
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -826,12 +848,12 @@ export interface __BindingList_1$views<T> {
|
|
|
826
848
|
As_IList(): System_Collections_Internal.IList$instance;
|
|
827
849
|
}
|
|
828
850
|
|
|
829
|
-
export interface BindingList_1$instance<T> extends ICancelAddNew$instance, IRaiseItemChangedEvents$instance {}
|
|
830
|
-
|
|
831
851
|
export type BindingList_1<T> = BindingList_1$instance<T> & __BindingList_1$views<T>;
|
|
832
852
|
|
|
833
853
|
|
|
834
854
|
export interface BooleanConverter$instance extends TypeConverter {
|
|
855
|
+
readonly __tsonic_type_System_ComponentModel_BooleanConverter: never;
|
|
856
|
+
|
|
835
857
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
836
858
|
CanConvertFrom(sourceType: Type): boolean;
|
|
837
859
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -853,6 +875,8 @@ export const BooleanConverter: {
|
|
|
853
875
|
export type BooleanConverter = BooleanConverter$instance;
|
|
854
876
|
|
|
855
877
|
export interface BrowsableAttribute$instance extends Attribute {
|
|
878
|
+
readonly __tsonic_type_System_ComponentModel_BrowsableAttribute: never;
|
|
879
|
+
|
|
856
880
|
readonly Browsable: boolean;
|
|
857
881
|
Equals(obj: unknown): boolean;
|
|
858
882
|
GetHashCode(): int;
|
|
@@ -871,6 +895,8 @@ export const BrowsableAttribute: {
|
|
|
871
895
|
export type BrowsableAttribute = BrowsableAttribute$instance;
|
|
872
896
|
|
|
873
897
|
export interface ByteConverter$instance extends BaseNumberConverter {
|
|
898
|
+
readonly __tsonic_type_System_ComponentModel_ByteConverter: never;
|
|
899
|
+
|
|
874
900
|
}
|
|
875
901
|
|
|
876
902
|
|
|
@@ -882,6 +908,8 @@ export const ByteConverter: {
|
|
|
882
908
|
export type ByteConverter = ByteConverter$instance;
|
|
883
909
|
|
|
884
910
|
export interface CancelEventArgs$instance extends EventArgs {
|
|
911
|
+
readonly __tsonic_type_System_ComponentModel_CancelEventArgs: never;
|
|
912
|
+
|
|
885
913
|
Cancel: boolean;
|
|
886
914
|
}
|
|
887
915
|
|
|
@@ -895,6 +923,8 @@ export const CancelEventArgs: {
|
|
|
895
923
|
export type CancelEventArgs = CancelEventArgs$instance;
|
|
896
924
|
|
|
897
925
|
export interface CategoryAttribute$instance extends Attribute {
|
|
926
|
+
readonly __tsonic_type_System_ComponentModel_CategoryAttribute: never;
|
|
927
|
+
|
|
898
928
|
readonly Category: string;
|
|
899
929
|
Equals(obj: unknown): boolean;
|
|
900
930
|
GetHashCode(): int;
|
|
@@ -926,6 +956,8 @@ export const CategoryAttribute: {
|
|
|
926
956
|
export type CategoryAttribute = CategoryAttribute$instance;
|
|
927
957
|
|
|
928
958
|
export interface CharConverter$instance extends TypeConverter {
|
|
959
|
+
readonly __tsonic_type_System_ComponentModel_CharConverter: never;
|
|
960
|
+
|
|
929
961
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
930
962
|
CanConvertFrom(sourceType: Type): boolean;
|
|
931
963
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -943,6 +975,8 @@ export const CharConverter: {
|
|
|
943
975
|
export type CharConverter = CharConverter$instance;
|
|
944
976
|
|
|
945
977
|
export interface CollectionChangeEventArgs$instance extends EventArgs {
|
|
978
|
+
readonly __tsonic_type_System_ComponentModel_CollectionChangeEventArgs: never;
|
|
979
|
+
|
|
946
980
|
readonly Action: CollectionChangeAction;
|
|
947
981
|
readonly Element: unknown | undefined;
|
|
948
982
|
}
|
|
@@ -956,6 +990,8 @@ export const CollectionChangeEventArgs: {
|
|
|
956
990
|
export type CollectionChangeEventArgs = CollectionChangeEventArgs$instance;
|
|
957
991
|
|
|
958
992
|
export interface CollectionConverter$instance extends TypeConverter {
|
|
993
|
+
readonly __tsonic_type_System_ComponentModel_CollectionConverter: never;
|
|
994
|
+
|
|
959
995
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
960
996
|
ConvertTo(value: unknown, destinationType: Type): unknown | undefined;
|
|
961
997
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
@@ -972,6 +1008,8 @@ export const CollectionConverter: {
|
|
|
972
1008
|
export type CollectionConverter = CollectionConverter$instance;
|
|
973
1009
|
|
|
974
1010
|
export interface ComplexBindingPropertiesAttribute$instance extends Attribute {
|
|
1011
|
+
readonly __tsonic_type_System_ComponentModel_ComplexBindingPropertiesAttribute: never;
|
|
1012
|
+
|
|
975
1013
|
readonly DataMember: string | undefined;
|
|
976
1014
|
readonly DataSource: string | undefined;
|
|
977
1015
|
Equals(obj: unknown): boolean;
|
|
@@ -990,6 +1028,8 @@ export const ComplexBindingPropertiesAttribute: {
|
|
|
990
1028
|
export type ComplexBindingPropertiesAttribute = ComplexBindingPropertiesAttribute$instance;
|
|
991
1029
|
|
|
992
1030
|
export interface Component$instance extends MarshalByRefObject {
|
|
1031
|
+
readonly __tsonic_type_System_ComponentModel_Component: never;
|
|
1032
|
+
|
|
993
1033
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
994
1034
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
995
1035
|
|
|
@@ -1019,6 +1059,8 @@ export type Component = Component$instance & __Component$views;
|
|
|
1019
1059
|
|
|
1020
1060
|
|
|
1021
1061
|
export interface ComponentCollection$instance extends ReadOnlyCollectionBase {
|
|
1062
|
+
readonly __tsonic_type_System_ComponentModel_ComponentCollection: never;
|
|
1063
|
+
|
|
1022
1064
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1023
1065
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1024
1066
|
|
|
@@ -1043,6 +1085,8 @@ export type ComponentCollection = ComponentCollection$instance & __ComponentColl
|
|
|
1043
1085
|
|
|
1044
1086
|
|
|
1045
1087
|
export interface ComponentConverter$instance extends ReferenceConverter {
|
|
1088
|
+
readonly __tsonic_type_System_ComponentModel_ComponentConverter: never;
|
|
1089
|
+
|
|
1046
1090
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
1047
1091
|
GetProperties(value: unknown): PropertyDescriptorCollection | undefined;
|
|
1048
1092
|
GetProperties(context: ITypeDescriptorContext, value: unknown): PropertyDescriptorCollection | undefined;
|
|
@@ -1059,6 +1103,8 @@ export const ComponentConverter: {
|
|
|
1059
1103
|
export type ComponentConverter = ComponentConverter$instance;
|
|
1060
1104
|
|
|
1061
1105
|
export interface ComponentEditor$instance {
|
|
1106
|
+
readonly __tsonic_type_System_ComponentModel_ComponentEditor: never;
|
|
1107
|
+
|
|
1062
1108
|
EditComponent(component: unknown): boolean;
|
|
1063
1109
|
EditComponent(context: ITypeDescriptorContext, component: unknown): boolean;
|
|
1064
1110
|
}
|
|
@@ -1071,6 +1117,8 @@ export const ComponentEditor: (abstract new() => ComponentEditor) & {
|
|
|
1071
1117
|
export type ComponentEditor = ComponentEditor$instance;
|
|
1072
1118
|
|
|
1073
1119
|
export interface ComponentResourceManager$instance extends ResourceManager {
|
|
1120
|
+
readonly __tsonic_type_System_ComponentModel_ComponentResourceManager: never;
|
|
1121
|
+
|
|
1074
1122
|
ApplyResources(value: unknown, objectName: string): void;
|
|
1075
1123
|
ApplyResources(value: unknown, objectName: string, culture: CultureInfo): void;
|
|
1076
1124
|
ApplyResourcesToRegisteredType(value: unknown, objectName: string, culture: CultureInfo): void;
|
|
@@ -1086,6 +1134,8 @@ export const ComponentResourceManager: {
|
|
|
1086
1134
|
export type ComponentResourceManager = ComponentResourceManager$instance;
|
|
1087
1135
|
|
|
1088
1136
|
export interface Container$instance {
|
|
1137
|
+
readonly __tsonic_type_System_ComponentModel_Container: never;
|
|
1138
|
+
|
|
1089
1139
|
readonly __tsonic_iface_System_ComponentModel_IContainer: never;
|
|
1090
1140
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1091
1141
|
|
|
@@ -1116,6 +1166,8 @@ export type Container = Container$instance & __Container$views;
|
|
|
1116
1166
|
|
|
1117
1167
|
|
|
1118
1168
|
export interface ContainerFilterService$instance {
|
|
1169
|
+
readonly __tsonic_type_System_ComponentModel_ContainerFilterService: never;
|
|
1170
|
+
|
|
1119
1171
|
FilterComponents(components: ComponentCollection): ComponentCollection;
|
|
1120
1172
|
}
|
|
1121
1173
|
|
|
@@ -1127,6 +1179,8 @@ export const ContainerFilterService: (abstract new() => ContainerFilterService)
|
|
|
1127
1179
|
export type ContainerFilterService = ContainerFilterService$instance;
|
|
1128
1180
|
|
|
1129
1181
|
export interface CultureInfoConverter$instance extends TypeConverter {
|
|
1182
|
+
readonly __tsonic_type_System_ComponentModel_CultureInfoConverter: never;
|
|
1183
|
+
|
|
1130
1184
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1131
1185
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1132
1186
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1152,7 +1206,9 @@ export const CultureInfoConverter: {
|
|
|
1152
1206
|
|
|
1153
1207
|
export type CultureInfoConverter = CultureInfoConverter$instance;
|
|
1154
1208
|
|
|
1155
|
-
export interface CustomTypeDescriptor$instance {
|
|
1209
|
+
export interface CustomTypeDescriptor$instance extends ICustomTypeDescriptor$instance {
|
|
1210
|
+
readonly __tsonic_type_System_ComponentModel_CustomTypeDescriptor: never;
|
|
1211
|
+
|
|
1156
1212
|
readonly __tsonic_iface_System_ComponentModel_ICustomTypeDescriptor: never;
|
|
1157
1213
|
|
|
1158
1214
|
readonly RequireRegisteredTypes: Nullable_1<System_Internal.Boolean>;
|
|
@@ -1182,12 +1238,12 @@ export interface __CustomTypeDescriptor$views {
|
|
|
1182
1238
|
As_ICustomTypeDescriptor(): ICustomTypeDescriptor$instance;
|
|
1183
1239
|
}
|
|
1184
1240
|
|
|
1185
|
-
export interface CustomTypeDescriptor$instance extends ICustomTypeDescriptor$instance {}
|
|
1186
|
-
|
|
1187
1241
|
export type CustomTypeDescriptor = CustomTypeDescriptor$instance & __CustomTypeDescriptor$views;
|
|
1188
1242
|
|
|
1189
1243
|
|
|
1190
1244
|
export interface DataErrorsChangedEventArgs$instance extends EventArgs {
|
|
1245
|
+
readonly __tsonic_type_System_ComponentModel_DataErrorsChangedEventArgs: never;
|
|
1246
|
+
|
|
1191
1247
|
readonly PropertyName: string | undefined;
|
|
1192
1248
|
}
|
|
1193
1249
|
|
|
@@ -1200,6 +1256,8 @@ export const DataErrorsChangedEventArgs: {
|
|
|
1200
1256
|
export type DataErrorsChangedEventArgs = DataErrorsChangedEventArgs$instance;
|
|
1201
1257
|
|
|
1202
1258
|
export interface DataObjectAttribute$instance extends Attribute {
|
|
1259
|
+
readonly __tsonic_type_System_ComponentModel_DataObjectAttribute: never;
|
|
1260
|
+
|
|
1203
1261
|
readonly IsDataObject: boolean;
|
|
1204
1262
|
Equals(obj: unknown): boolean;
|
|
1205
1263
|
GetHashCode(): int;
|
|
@@ -1219,6 +1277,8 @@ export const DataObjectAttribute: {
|
|
|
1219
1277
|
export type DataObjectAttribute = DataObjectAttribute$instance;
|
|
1220
1278
|
|
|
1221
1279
|
export interface DataObjectFieldAttribute$instance extends Attribute {
|
|
1280
|
+
readonly __tsonic_type_System_ComponentModel_DataObjectFieldAttribute: never;
|
|
1281
|
+
|
|
1222
1282
|
readonly IsIdentity: boolean;
|
|
1223
1283
|
readonly IsNullable: boolean;
|
|
1224
1284
|
readonly Length: int;
|
|
@@ -1239,6 +1299,8 @@ export const DataObjectFieldAttribute: {
|
|
|
1239
1299
|
export type DataObjectFieldAttribute = DataObjectFieldAttribute$instance;
|
|
1240
1300
|
|
|
1241
1301
|
export interface DataObjectMethodAttribute$instance extends Attribute {
|
|
1302
|
+
readonly __tsonic_type_System_ComponentModel_DataObjectMethodAttribute: never;
|
|
1303
|
+
|
|
1242
1304
|
readonly IsDefault: boolean;
|
|
1243
1305
|
readonly MethodType: DataObjectMethodType;
|
|
1244
1306
|
Equals(obj: unknown): boolean;
|
|
@@ -1256,6 +1318,8 @@ export const DataObjectMethodAttribute: {
|
|
|
1256
1318
|
export type DataObjectMethodAttribute = DataObjectMethodAttribute$instance;
|
|
1257
1319
|
|
|
1258
1320
|
export interface DateOnlyConverter$instance extends TypeConverter {
|
|
1321
|
+
readonly __tsonic_type_System_ComponentModel_DateOnlyConverter: never;
|
|
1322
|
+
|
|
1259
1323
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1260
1324
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1261
1325
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1275,6 +1339,8 @@ export const DateOnlyConverter: {
|
|
|
1275
1339
|
export type DateOnlyConverter = DateOnlyConverter$instance;
|
|
1276
1340
|
|
|
1277
1341
|
export interface DateTimeConverter$instance extends TypeConverter {
|
|
1342
|
+
readonly __tsonic_type_System_ComponentModel_DateTimeConverter: never;
|
|
1343
|
+
|
|
1278
1344
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1279
1345
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1280
1346
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1294,6 +1360,8 @@ export const DateTimeConverter: {
|
|
|
1294
1360
|
export type DateTimeConverter = DateTimeConverter$instance;
|
|
1295
1361
|
|
|
1296
1362
|
export interface DateTimeOffsetConverter$instance extends TypeConverter {
|
|
1363
|
+
readonly __tsonic_type_System_ComponentModel_DateTimeOffsetConverter: never;
|
|
1364
|
+
|
|
1297
1365
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1298
1366
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1299
1367
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1313,6 +1381,8 @@ export const DateTimeOffsetConverter: {
|
|
|
1313
1381
|
export type DateTimeOffsetConverter = DateTimeOffsetConverter$instance;
|
|
1314
1382
|
|
|
1315
1383
|
export interface DecimalConverter$instance extends BaseNumberConverter {
|
|
1384
|
+
readonly __tsonic_type_System_ComponentModel_DecimalConverter: never;
|
|
1385
|
+
|
|
1316
1386
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
1317
1387
|
CanConvertTo(destinationType: Type): boolean;
|
|
1318
1388
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
@@ -1328,6 +1398,8 @@ export const DecimalConverter: {
|
|
|
1328
1398
|
export type DecimalConverter = DecimalConverter$instance;
|
|
1329
1399
|
|
|
1330
1400
|
export interface DefaultBindingPropertyAttribute$instance extends Attribute {
|
|
1401
|
+
readonly __tsonic_type_System_ComponentModel_DefaultBindingPropertyAttribute: never;
|
|
1402
|
+
|
|
1331
1403
|
readonly Name: string | undefined;
|
|
1332
1404
|
Equals(obj: unknown): boolean;
|
|
1333
1405
|
GetHashCode(): int;
|
|
@@ -1344,6 +1416,8 @@ export const DefaultBindingPropertyAttribute: {
|
|
|
1344
1416
|
export type DefaultBindingPropertyAttribute = DefaultBindingPropertyAttribute$instance;
|
|
1345
1417
|
|
|
1346
1418
|
export interface DefaultEventAttribute$instance extends Attribute {
|
|
1419
|
+
readonly __tsonic_type_System_ComponentModel_DefaultEventAttribute: never;
|
|
1420
|
+
|
|
1347
1421
|
readonly Name: string | undefined;
|
|
1348
1422
|
Equals(obj: unknown): boolean;
|
|
1349
1423
|
GetHashCode(): int;
|
|
@@ -1359,6 +1433,8 @@ export const DefaultEventAttribute: {
|
|
|
1359
1433
|
export type DefaultEventAttribute = DefaultEventAttribute$instance;
|
|
1360
1434
|
|
|
1361
1435
|
export interface DefaultPropertyAttribute$instance extends Attribute {
|
|
1436
|
+
readonly __tsonic_type_System_ComponentModel_DefaultPropertyAttribute: never;
|
|
1437
|
+
|
|
1362
1438
|
readonly Name: string | undefined;
|
|
1363
1439
|
Equals(obj: unknown): boolean;
|
|
1364
1440
|
GetHashCode(): int;
|
|
@@ -1374,6 +1450,8 @@ export const DefaultPropertyAttribute: {
|
|
|
1374
1450
|
export type DefaultPropertyAttribute = DefaultPropertyAttribute$instance;
|
|
1375
1451
|
|
|
1376
1452
|
export interface DefaultValueAttribute$instance extends Attribute {
|
|
1453
|
+
readonly __tsonic_type_System_ComponentModel_DefaultValueAttribute: never;
|
|
1454
|
+
|
|
1377
1455
|
readonly Value: unknown | undefined;
|
|
1378
1456
|
Equals(obj: unknown): boolean;
|
|
1379
1457
|
GetHashCode(): int;
|
|
@@ -1402,6 +1480,8 @@ export const DefaultValueAttribute: {
|
|
|
1402
1480
|
export type DefaultValueAttribute = DefaultValueAttribute$instance;
|
|
1403
1481
|
|
|
1404
1482
|
export interface DescriptionAttribute$instance extends Attribute {
|
|
1483
|
+
readonly __tsonic_type_System_ComponentModel_DescriptionAttribute: never;
|
|
1484
|
+
|
|
1405
1485
|
readonly Description: string;
|
|
1406
1486
|
Equals(obj: unknown): boolean;
|
|
1407
1487
|
GetHashCode(): int;
|
|
@@ -1419,6 +1499,8 @@ export const DescriptionAttribute: {
|
|
|
1419
1499
|
export type DescriptionAttribute = DescriptionAttribute$instance;
|
|
1420
1500
|
|
|
1421
1501
|
export interface DesignerAttribute$instance extends Attribute {
|
|
1502
|
+
readonly __tsonic_type_System_ComponentModel_DesignerAttribute: never;
|
|
1503
|
+
|
|
1422
1504
|
readonly DesignerBaseTypeName: string;
|
|
1423
1505
|
readonly DesignerTypeName: string;
|
|
1424
1506
|
readonly TypeId: unknown;
|
|
@@ -1439,6 +1521,8 @@ export const DesignerAttribute: {
|
|
|
1439
1521
|
export type DesignerAttribute = DesignerAttribute$instance;
|
|
1440
1522
|
|
|
1441
1523
|
export interface DesignerCategoryAttribute$instance extends Attribute {
|
|
1524
|
+
readonly __tsonic_type_System_ComponentModel_DesignerCategoryAttribute: never;
|
|
1525
|
+
|
|
1442
1526
|
readonly Category: string;
|
|
1443
1527
|
readonly TypeId: unknown;
|
|
1444
1528
|
Equals(obj: unknown): boolean;
|
|
@@ -1460,6 +1544,8 @@ export const DesignerCategoryAttribute: {
|
|
|
1460
1544
|
export type DesignerCategoryAttribute = DesignerCategoryAttribute$instance;
|
|
1461
1545
|
|
|
1462
1546
|
export interface DesignerSerializationVisibilityAttribute$instance extends Attribute {
|
|
1547
|
+
readonly __tsonic_type_System_ComponentModel_DesignerSerializationVisibilityAttribute: never;
|
|
1548
|
+
|
|
1463
1549
|
readonly Visibility: DesignerSerializationVisibility;
|
|
1464
1550
|
Equals(obj: unknown): boolean;
|
|
1465
1551
|
GetHashCode(): int;
|
|
@@ -1479,6 +1565,8 @@ export const DesignerSerializationVisibilityAttribute: {
|
|
|
1479
1565
|
export type DesignerSerializationVisibilityAttribute = DesignerSerializationVisibilityAttribute$instance;
|
|
1480
1566
|
|
|
1481
1567
|
export interface DesignOnlyAttribute$instance extends Attribute {
|
|
1568
|
+
readonly __tsonic_type_System_ComponentModel_DesignOnlyAttribute: never;
|
|
1569
|
+
|
|
1482
1570
|
readonly IsDesignOnly: boolean;
|
|
1483
1571
|
Equals(obj: unknown): boolean;
|
|
1484
1572
|
GetHashCode(): int;
|
|
@@ -1497,6 +1585,8 @@ export const DesignOnlyAttribute: {
|
|
|
1497
1585
|
export type DesignOnlyAttribute = DesignOnlyAttribute$instance;
|
|
1498
1586
|
|
|
1499
1587
|
export interface DesignTimeVisibleAttribute$instance extends Attribute {
|
|
1588
|
+
readonly __tsonic_type_System_ComponentModel_DesignTimeVisibleAttribute: never;
|
|
1589
|
+
|
|
1500
1590
|
readonly Visible: boolean;
|
|
1501
1591
|
Equals(obj: unknown): boolean;
|
|
1502
1592
|
GetHashCode(): int;
|
|
@@ -1516,6 +1606,8 @@ export const DesignTimeVisibleAttribute: {
|
|
|
1516
1606
|
export type DesignTimeVisibleAttribute = DesignTimeVisibleAttribute$instance;
|
|
1517
1607
|
|
|
1518
1608
|
export interface DisplayNameAttribute$instance extends Attribute {
|
|
1609
|
+
readonly __tsonic_type_System_ComponentModel_DisplayNameAttribute: never;
|
|
1610
|
+
|
|
1519
1611
|
readonly DisplayName: string;
|
|
1520
1612
|
Equals(obj: unknown): boolean;
|
|
1521
1613
|
GetHashCode(): int;
|
|
@@ -1533,6 +1625,8 @@ export const DisplayNameAttribute: {
|
|
|
1533
1625
|
export type DisplayNameAttribute = DisplayNameAttribute$instance;
|
|
1534
1626
|
|
|
1535
1627
|
export interface DoubleConverter$instance extends BaseNumberConverter {
|
|
1628
|
+
readonly __tsonic_type_System_ComponentModel_DoubleConverter: never;
|
|
1629
|
+
|
|
1536
1630
|
}
|
|
1537
1631
|
|
|
1538
1632
|
|
|
@@ -1544,6 +1638,8 @@ export const DoubleConverter: {
|
|
|
1544
1638
|
export type DoubleConverter = DoubleConverter$instance;
|
|
1545
1639
|
|
|
1546
1640
|
export interface DoWorkEventArgs$instance extends CancelEventArgs {
|
|
1641
|
+
readonly __tsonic_type_System_ComponentModel_DoWorkEventArgs: never;
|
|
1642
|
+
|
|
1547
1643
|
readonly Argument: unknown | undefined;
|
|
1548
1644
|
get Result(): unknown | undefined;
|
|
1549
1645
|
set Result(value: unknown | undefined);
|
|
@@ -1558,6 +1654,8 @@ export const DoWorkEventArgs: {
|
|
|
1558
1654
|
export type DoWorkEventArgs = DoWorkEventArgs$instance;
|
|
1559
1655
|
|
|
1560
1656
|
export interface EditorAttribute$instance extends Attribute {
|
|
1657
|
+
readonly __tsonic_type_System_ComponentModel_EditorAttribute: never;
|
|
1658
|
+
|
|
1561
1659
|
readonly EditorBaseTypeName: string | undefined;
|
|
1562
1660
|
readonly EditorTypeName: string;
|
|
1563
1661
|
readonly TypeId: unknown;
|
|
@@ -1577,6 +1675,8 @@ export const EditorAttribute: {
|
|
|
1577
1675
|
export type EditorAttribute = EditorAttribute$instance;
|
|
1578
1676
|
|
|
1579
1677
|
export interface EditorBrowsableAttribute$instance extends Attribute {
|
|
1678
|
+
readonly __tsonic_type_System_ComponentModel_EditorBrowsableAttribute: never;
|
|
1679
|
+
|
|
1580
1680
|
readonly State: EditorBrowsableState;
|
|
1581
1681
|
Equals(obj: unknown): boolean;
|
|
1582
1682
|
GetHashCode(): int;
|
|
@@ -1592,6 +1692,8 @@ export const EditorBrowsableAttribute: {
|
|
|
1592
1692
|
export type EditorBrowsableAttribute = EditorBrowsableAttribute$instance;
|
|
1593
1693
|
|
|
1594
1694
|
export interface EnumConverter$instance extends TypeConverter {
|
|
1695
|
+
readonly __tsonic_type_System_ComponentModel_EnumConverter: never;
|
|
1696
|
+
|
|
1595
1697
|
readonly Comparer: IComparer;
|
|
1596
1698
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1597
1699
|
CanConvertFrom(sourceType: Type): boolean;
|
|
@@ -1620,6 +1722,8 @@ export const EnumConverter: {
|
|
|
1620
1722
|
export type EnumConverter = EnumConverter$instance;
|
|
1621
1723
|
|
|
1622
1724
|
export interface EventDescriptor$instance extends MemberDescriptor {
|
|
1725
|
+
readonly __tsonic_type_System_ComponentModel_EventDescriptor: never;
|
|
1726
|
+
|
|
1623
1727
|
readonly ComponentType: Type;
|
|
1624
1728
|
readonly EventType: Type;
|
|
1625
1729
|
readonly IsMulticast: boolean;
|
|
@@ -1635,6 +1739,8 @@ export const EventDescriptor: (abstract new(name: string, attrs: Attribute[]) =>
|
|
|
1635
1739
|
export type EventDescriptor = EventDescriptor$instance;
|
|
1636
1740
|
|
|
1637
1741
|
export interface EventDescriptorCollection$instance {
|
|
1742
|
+
readonly __tsonic_type_System_ComponentModel_EventDescriptorCollection: never;
|
|
1743
|
+
|
|
1638
1744
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1639
1745
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1640
1746
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -1674,7 +1780,9 @@ export interface __EventDescriptorCollection$views {
|
|
|
1674
1780
|
export type EventDescriptorCollection = EventDescriptorCollection$instance & __EventDescriptorCollection$views;
|
|
1675
1781
|
|
|
1676
1782
|
|
|
1677
|
-
export interface EventHandlerList$instance {
|
|
1783
|
+
export interface EventHandlerList$instance extends System_Internal.IDisposable$instance {
|
|
1784
|
+
readonly __tsonic_type_System_ComponentModel_EventHandlerList: never;
|
|
1785
|
+
|
|
1678
1786
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1679
1787
|
|
|
1680
1788
|
get Item(): Function | undefined;
|
|
@@ -1695,12 +1803,12 @@ export interface __EventHandlerList$views {
|
|
|
1695
1803
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1696
1804
|
}
|
|
1697
1805
|
|
|
1698
|
-
export interface EventHandlerList$instance extends System_Internal.IDisposable$instance {}
|
|
1699
|
-
|
|
1700
1806
|
export type EventHandlerList = EventHandlerList$instance & __EventHandlerList$views;
|
|
1701
1807
|
|
|
1702
1808
|
|
|
1703
1809
|
export interface ExpandableObjectConverter$instance extends TypeConverter {
|
|
1810
|
+
readonly __tsonic_type_System_ComponentModel_ExpandableObjectConverter: never;
|
|
1811
|
+
|
|
1704
1812
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection;
|
|
1705
1813
|
GetProperties(value: unknown): PropertyDescriptorCollection | undefined;
|
|
1706
1814
|
GetProperties(context: ITypeDescriptorContext, value: unknown): PropertyDescriptorCollection | undefined;
|
|
@@ -1717,6 +1825,8 @@ export const ExpandableObjectConverter: {
|
|
|
1717
1825
|
export type ExpandableObjectConverter = ExpandableObjectConverter$instance;
|
|
1718
1826
|
|
|
1719
1827
|
export interface ExtenderProvidedPropertyAttribute$instance extends Attribute {
|
|
1828
|
+
readonly __tsonic_type_System_ComponentModel_ExtenderProvidedPropertyAttribute: never;
|
|
1829
|
+
|
|
1720
1830
|
get ExtenderProperty(): PropertyDescriptor | undefined;
|
|
1721
1831
|
set ExtenderProperty(value: PropertyDescriptor | undefined);
|
|
1722
1832
|
get Provider(): IExtenderProvider | undefined;
|
|
@@ -1737,6 +1847,8 @@ export const ExtenderProvidedPropertyAttribute: {
|
|
|
1737
1847
|
export type ExtenderProvidedPropertyAttribute = ExtenderProvidedPropertyAttribute$instance;
|
|
1738
1848
|
|
|
1739
1849
|
export interface GuidConverter$instance extends TypeConverter {
|
|
1850
|
+
readonly __tsonic_type_System_ComponentModel_GuidConverter: never;
|
|
1851
|
+
|
|
1740
1852
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
1741
1853
|
CanConvertFrom(sourceType: Type): boolean;
|
|
1742
1854
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -1756,6 +1868,8 @@ export const GuidConverter: {
|
|
|
1756
1868
|
export type GuidConverter = GuidConverter$instance;
|
|
1757
1869
|
|
|
1758
1870
|
export interface HalfConverter$instance extends BaseNumberConverter {
|
|
1871
|
+
readonly __tsonic_type_System_ComponentModel_HalfConverter: never;
|
|
1872
|
+
|
|
1759
1873
|
}
|
|
1760
1874
|
|
|
1761
1875
|
|
|
@@ -1767,6 +1881,8 @@ export const HalfConverter: {
|
|
|
1767
1881
|
export type HalfConverter = HalfConverter$instance;
|
|
1768
1882
|
|
|
1769
1883
|
export interface HandledEventArgs$instance extends EventArgs {
|
|
1884
|
+
readonly __tsonic_type_System_ComponentModel_HandledEventArgs: never;
|
|
1885
|
+
|
|
1770
1886
|
Handled: boolean;
|
|
1771
1887
|
}
|
|
1772
1888
|
|
|
@@ -1780,6 +1896,8 @@ export const HandledEventArgs: {
|
|
|
1780
1896
|
export type HandledEventArgs = HandledEventArgs$instance;
|
|
1781
1897
|
|
|
1782
1898
|
export interface ImmutableObjectAttribute$instance extends Attribute {
|
|
1899
|
+
readonly __tsonic_type_System_ComponentModel_ImmutableObjectAttribute: never;
|
|
1900
|
+
|
|
1783
1901
|
readonly Immutable: boolean;
|
|
1784
1902
|
Equals(obj: unknown): boolean;
|
|
1785
1903
|
GetHashCode(): int;
|
|
@@ -1798,6 +1916,8 @@ export const ImmutableObjectAttribute: {
|
|
|
1798
1916
|
export type ImmutableObjectAttribute = ImmutableObjectAttribute$instance;
|
|
1799
1917
|
|
|
1800
1918
|
export interface InheritanceAttribute$instance extends Attribute {
|
|
1919
|
+
readonly __tsonic_type_System_ComponentModel_InheritanceAttribute: never;
|
|
1920
|
+
|
|
1801
1921
|
readonly InheritanceLevel: InheritanceLevel;
|
|
1802
1922
|
Equals(value: unknown): boolean;
|
|
1803
1923
|
GetHashCode(): int;
|
|
@@ -1819,6 +1939,8 @@ export const InheritanceAttribute: {
|
|
|
1819
1939
|
export type InheritanceAttribute = InheritanceAttribute$instance;
|
|
1820
1940
|
|
|
1821
1941
|
export interface InitializationEventAttribute$instance extends Attribute {
|
|
1942
|
+
readonly __tsonic_type_System_ComponentModel_InitializationEventAttribute: never;
|
|
1943
|
+
|
|
1822
1944
|
readonly EventName: string;
|
|
1823
1945
|
}
|
|
1824
1946
|
|
|
@@ -1831,6 +1953,8 @@ export const InitializationEventAttribute: {
|
|
|
1831
1953
|
export type InitializationEventAttribute = InitializationEventAttribute$instance;
|
|
1832
1954
|
|
|
1833
1955
|
export interface InstallerTypeAttribute$instance extends Attribute {
|
|
1956
|
+
readonly __tsonic_type_System_ComponentModel_InstallerTypeAttribute: never;
|
|
1957
|
+
|
|
1834
1958
|
readonly InstallerType: Type | undefined;
|
|
1835
1959
|
Equals(obj: unknown): boolean;
|
|
1836
1960
|
GetHashCode(): int;
|
|
@@ -1846,6 +1970,8 @@ export const InstallerTypeAttribute: {
|
|
|
1846
1970
|
export type InstallerTypeAttribute = InstallerTypeAttribute$instance;
|
|
1847
1971
|
|
|
1848
1972
|
export interface InstanceCreationEditor$instance {
|
|
1973
|
+
readonly __tsonic_type_System_ComponentModel_InstanceCreationEditor: never;
|
|
1974
|
+
|
|
1849
1975
|
readonly Text: string;
|
|
1850
1976
|
CreateInstance(context: ITypeDescriptorContext, instanceType: Type): unknown | undefined;
|
|
1851
1977
|
}
|
|
@@ -1858,6 +1984,8 @@ export const InstanceCreationEditor: (abstract new() => InstanceCreationEditor)
|
|
|
1858
1984
|
export type InstanceCreationEditor = InstanceCreationEditor$instance;
|
|
1859
1985
|
|
|
1860
1986
|
export interface Int128Converter$instance extends BaseNumberConverter {
|
|
1987
|
+
readonly __tsonic_type_System_ComponentModel_Int128Converter: never;
|
|
1988
|
+
|
|
1861
1989
|
}
|
|
1862
1990
|
|
|
1863
1991
|
|
|
@@ -1869,6 +1997,8 @@ export const Int128Converter: {
|
|
|
1869
1997
|
export type Int128Converter = Int128Converter$instance;
|
|
1870
1998
|
|
|
1871
1999
|
export interface Int16Converter$instance extends BaseNumberConverter {
|
|
2000
|
+
readonly __tsonic_type_System_ComponentModel_Int16Converter: never;
|
|
2001
|
+
|
|
1872
2002
|
}
|
|
1873
2003
|
|
|
1874
2004
|
|
|
@@ -1880,6 +2010,8 @@ export const Int16Converter: {
|
|
|
1880
2010
|
export type Int16Converter = Int16Converter$instance;
|
|
1881
2011
|
|
|
1882
2012
|
export interface Int32Converter$instance extends BaseNumberConverter {
|
|
2013
|
+
readonly __tsonic_type_System_ComponentModel_Int32Converter: never;
|
|
2014
|
+
|
|
1883
2015
|
}
|
|
1884
2016
|
|
|
1885
2017
|
|
|
@@ -1891,6 +2023,8 @@ export const Int32Converter: {
|
|
|
1891
2023
|
export type Int32Converter = Int32Converter$instance;
|
|
1892
2024
|
|
|
1893
2025
|
export interface Int64Converter$instance extends BaseNumberConverter {
|
|
2026
|
+
readonly __tsonic_type_System_ComponentModel_Int64Converter: never;
|
|
2027
|
+
|
|
1894
2028
|
}
|
|
1895
2029
|
|
|
1896
2030
|
|
|
@@ -1902,6 +2036,8 @@ export const Int64Converter: {
|
|
|
1902
2036
|
export type Int64Converter = Int64Converter$instance;
|
|
1903
2037
|
|
|
1904
2038
|
export interface InvalidAsynchronousStateException$instance extends ArgumentException {
|
|
2039
|
+
readonly __tsonic_type_System_ComponentModel_InvalidAsynchronousStateException: never;
|
|
2040
|
+
|
|
1905
2041
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1906
2042
|
|
|
1907
2043
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1923,6 +2059,8 @@ export type InvalidAsynchronousStateException = InvalidAsynchronousStateExceptio
|
|
|
1923
2059
|
|
|
1924
2060
|
|
|
1925
2061
|
export interface InvalidEnumArgumentException$instance extends ArgumentException {
|
|
2062
|
+
readonly __tsonic_type_System_ComponentModel_InvalidEnumArgumentException: never;
|
|
2063
|
+
|
|
1926
2064
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1927
2065
|
|
|
1928
2066
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1944,7 +2082,9 @@ export interface __InvalidEnumArgumentException$views {
|
|
|
1944
2082
|
export type InvalidEnumArgumentException = InvalidEnumArgumentException$instance & __InvalidEnumArgumentException$views;
|
|
1945
2083
|
|
|
1946
2084
|
|
|
1947
|
-
export interface License$instance {
|
|
2085
|
+
export interface License$instance extends System_Internal.IDisposable$instance {
|
|
2086
|
+
readonly __tsonic_type_System_ComponentModel_License: never;
|
|
2087
|
+
|
|
1948
2088
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1949
2089
|
|
|
1950
2090
|
readonly LicenseKey: string;
|
|
@@ -1960,12 +2100,12 @@ export interface __License$views {
|
|
|
1960
2100
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1961
2101
|
}
|
|
1962
2102
|
|
|
1963
|
-
export interface License$instance extends System_Internal.IDisposable$instance {}
|
|
1964
|
-
|
|
1965
2103
|
export type License = License$instance & __License$views;
|
|
1966
2104
|
|
|
1967
2105
|
|
|
1968
|
-
export interface LicenseContext$instance {
|
|
2106
|
+
export interface LicenseContext$instance extends System_Internal.IServiceProvider$instance {
|
|
2107
|
+
readonly __tsonic_type_System_ComponentModel_LicenseContext: never;
|
|
2108
|
+
|
|
1969
2109
|
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
1970
2110
|
|
|
1971
2111
|
readonly UsageMode: LicenseUsageMode;
|
|
@@ -1984,12 +2124,12 @@ export interface __LicenseContext$views {
|
|
|
1984
2124
|
As_IServiceProvider(): System_Internal.IServiceProvider$instance;
|
|
1985
2125
|
}
|
|
1986
2126
|
|
|
1987
|
-
export interface LicenseContext$instance extends System_Internal.IServiceProvider$instance {}
|
|
1988
|
-
|
|
1989
2127
|
export type LicenseContext = LicenseContext$instance & __LicenseContext$views;
|
|
1990
2128
|
|
|
1991
2129
|
|
|
1992
2130
|
export interface LicenseException$instance extends SystemException {
|
|
2131
|
+
readonly __tsonic_type_System_ComponentModel_LicenseException: never;
|
|
2132
|
+
|
|
1993
2133
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1994
2134
|
|
|
1995
2135
|
readonly LicensedType: Type | undefined;
|
|
@@ -2013,6 +2153,8 @@ export type LicenseException = LicenseException$instance & __LicenseException$vi
|
|
|
2013
2153
|
|
|
2014
2154
|
|
|
2015
2155
|
export interface LicenseManager$instance {
|
|
2156
|
+
readonly __tsonic_type_System_ComponentModel_LicenseManager: never;
|
|
2157
|
+
|
|
2016
2158
|
}
|
|
2017
2159
|
|
|
2018
2160
|
|
|
@@ -2034,6 +2176,8 @@ export const LicenseManager: {
|
|
|
2034
2176
|
export type LicenseManager = LicenseManager$instance;
|
|
2035
2177
|
|
|
2036
2178
|
export interface LicenseProvider$instance {
|
|
2179
|
+
readonly __tsonic_type_System_ComponentModel_LicenseProvider: never;
|
|
2180
|
+
|
|
2037
2181
|
GetLicense(context: LicenseContext, type: Type, instance: unknown, allowExceptions: boolean): License | undefined;
|
|
2038
2182
|
}
|
|
2039
2183
|
|
|
@@ -2045,6 +2189,8 @@ export const LicenseProvider: (abstract new() => LicenseProvider) & {
|
|
|
2045
2189
|
export type LicenseProvider = LicenseProvider$instance;
|
|
2046
2190
|
|
|
2047
2191
|
export interface LicenseProviderAttribute$instance extends Attribute {
|
|
2192
|
+
readonly __tsonic_type_System_ComponentModel_LicenseProviderAttribute: never;
|
|
2193
|
+
|
|
2048
2194
|
readonly LicenseProvider: Type | undefined;
|
|
2049
2195
|
readonly TypeId: unknown;
|
|
2050
2196
|
Equals(value: unknown): boolean;
|
|
@@ -2063,6 +2209,8 @@ export const LicenseProviderAttribute: {
|
|
|
2063
2209
|
export type LicenseProviderAttribute = LicenseProviderAttribute$instance;
|
|
2064
2210
|
|
|
2065
2211
|
export interface LicFileLicenseProvider$instance extends LicenseProvider {
|
|
2212
|
+
readonly __tsonic_type_System_ComponentModel_LicFileLicenseProvider: never;
|
|
2213
|
+
|
|
2066
2214
|
GetKey(type: Type): string;
|
|
2067
2215
|
GetLicense(context: LicenseContext, type: Type, instance: unknown, allowExceptions: boolean): License | undefined;
|
|
2068
2216
|
IsKeyValid(key: string, type: Type): boolean;
|
|
@@ -2077,6 +2225,8 @@ export const LicFileLicenseProvider: {
|
|
|
2077
2225
|
export type LicFileLicenseProvider = LicFileLicenseProvider$instance;
|
|
2078
2226
|
|
|
2079
2227
|
export interface ListBindableAttribute$instance extends Attribute {
|
|
2228
|
+
readonly __tsonic_type_System_ComponentModel_ListBindableAttribute: never;
|
|
2229
|
+
|
|
2080
2230
|
readonly ListBindable: boolean;
|
|
2081
2231
|
Equals(obj: unknown): boolean;
|
|
2082
2232
|
GetHashCode(): int;
|
|
@@ -2096,6 +2246,8 @@ export const ListBindableAttribute: {
|
|
|
2096
2246
|
export type ListBindableAttribute = ListBindableAttribute$instance;
|
|
2097
2247
|
|
|
2098
2248
|
export interface ListChangedEventArgs$instance extends EventArgs {
|
|
2249
|
+
readonly __tsonic_type_System_ComponentModel_ListChangedEventArgs: never;
|
|
2250
|
+
|
|
2099
2251
|
readonly ListChangedType: ListChangedType;
|
|
2100
2252
|
readonly NewIndex: int;
|
|
2101
2253
|
readonly OldIndex: int;
|
|
@@ -2114,6 +2266,8 @@ export const ListChangedEventArgs: {
|
|
|
2114
2266
|
export type ListChangedEventArgs = ListChangedEventArgs$instance;
|
|
2115
2267
|
|
|
2116
2268
|
export interface ListSortDescription$instance {
|
|
2269
|
+
readonly __tsonic_type_System_ComponentModel_ListSortDescription: never;
|
|
2270
|
+
|
|
2117
2271
|
get PropertyDescriptor(): PropertyDescriptor | undefined;
|
|
2118
2272
|
set PropertyDescriptor(value: PropertyDescriptor | undefined);
|
|
2119
2273
|
SortDirection: ListSortDirection;
|
|
@@ -2128,6 +2282,8 @@ export const ListSortDescription: {
|
|
|
2128
2282
|
export type ListSortDescription = ListSortDescription$instance;
|
|
2129
2283
|
|
|
2130
2284
|
export interface ListSortDescriptionCollection$instance {
|
|
2285
|
+
readonly __tsonic_type_System_ComponentModel_ListSortDescriptionCollection: never;
|
|
2286
|
+
|
|
2131
2287
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2132
2288
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2133
2289
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -2156,6 +2312,8 @@ export type ListSortDescriptionCollection = ListSortDescriptionCollection$instan
|
|
|
2156
2312
|
|
|
2157
2313
|
|
|
2158
2314
|
export interface LocalizableAttribute$instance extends Attribute {
|
|
2315
|
+
readonly __tsonic_type_System_ComponentModel_LocalizableAttribute: never;
|
|
2316
|
+
|
|
2159
2317
|
readonly IsLocalizable: boolean;
|
|
2160
2318
|
Equals(obj: unknown): boolean;
|
|
2161
2319
|
GetHashCode(): int;
|
|
@@ -2174,6 +2332,8 @@ export const LocalizableAttribute: {
|
|
|
2174
2332
|
export type LocalizableAttribute = LocalizableAttribute$instance;
|
|
2175
2333
|
|
|
2176
2334
|
export interface LookupBindingPropertiesAttribute$instance extends Attribute {
|
|
2335
|
+
readonly __tsonic_type_System_ComponentModel_LookupBindingPropertiesAttribute: never;
|
|
2336
|
+
|
|
2177
2337
|
readonly DataSource: string | undefined;
|
|
2178
2338
|
readonly DisplayMember: string | undefined;
|
|
2179
2339
|
readonly LookupMember: string | undefined;
|
|
@@ -2192,7 +2352,9 @@ export const LookupBindingPropertiesAttribute: {
|
|
|
2192
2352
|
|
|
2193
2353
|
export type LookupBindingPropertiesAttribute = LookupBindingPropertiesAttribute$instance;
|
|
2194
2354
|
|
|
2195
|
-
export interface MarshalByValueComponent$instance {
|
|
2355
|
+
export interface MarshalByValueComponent$instance extends System_Internal.IServiceProvider$instance {
|
|
2356
|
+
readonly __tsonic_type_System_ComponentModel_MarshalByValueComponent: never;
|
|
2357
|
+
|
|
2196
2358
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
2197
2359
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2198
2360
|
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
@@ -2220,12 +2382,12 @@ export interface __MarshalByValueComponent$views {
|
|
|
2220
2382
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2221
2383
|
}
|
|
2222
2384
|
|
|
2223
|
-
export interface MarshalByValueComponent$instance extends System_Internal.IServiceProvider$instance {}
|
|
2224
|
-
|
|
2225
2385
|
export type MarshalByValueComponent = MarshalByValueComponent$instance & __MarshalByValueComponent$views;
|
|
2226
2386
|
|
|
2227
2387
|
|
|
2228
|
-
export interface MaskedTextProvider$instance {
|
|
2388
|
+
export interface MaskedTextProvider$instance extends System_Internal.ICloneable$instance {
|
|
2389
|
+
readonly __tsonic_type_System_ComponentModel_MaskedTextProvider: never;
|
|
2390
|
+
|
|
2229
2391
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
2230
2392
|
|
|
2231
2393
|
readonly AllowPromptAsInput: boolean;
|
|
@@ -2319,12 +2481,12 @@ export interface __MaskedTextProvider$views {
|
|
|
2319
2481
|
As_ICloneable(): System_Internal.ICloneable$instance;
|
|
2320
2482
|
}
|
|
2321
2483
|
|
|
2322
|
-
export interface MaskedTextProvider$instance extends System_Internal.ICloneable$instance {}
|
|
2323
|
-
|
|
2324
2484
|
export type MaskedTextProvider = MaskedTextProvider$instance & __MaskedTextProvider$views;
|
|
2325
2485
|
|
|
2326
2486
|
|
|
2327
2487
|
export interface MemberDescriptor$instance {
|
|
2488
|
+
readonly __tsonic_type_System_ComponentModel_MemberDescriptor: never;
|
|
2489
|
+
|
|
2328
2490
|
get AttributeArray(): Attribute[] | undefined;
|
|
2329
2491
|
set AttributeArray(value: Attribute[] | undefined);
|
|
2330
2492
|
readonly Attributes: AttributeCollection;
|
|
@@ -2354,6 +2516,8 @@ export const MemberDescriptor: (abstract new(name: string) => MemberDescriptor)
|
|
|
2354
2516
|
export type MemberDescriptor = MemberDescriptor$instance;
|
|
2355
2517
|
|
|
2356
2518
|
export interface MergablePropertyAttribute$instance extends Attribute {
|
|
2519
|
+
readonly __tsonic_type_System_ComponentModel_MergablePropertyAttribute: never;
|
|
2520
|
+
|
|
2357
2521
|
readonly AllowMerge: boolean;
|
|
2358
2522
|
Equals(obj: unknown): boolean;
|
|
2359
2523
|
GetHashCode(): int;
|
|
@@ -2372,6 +2536,8 @@ export const MergablePropertyAttribute: {
|
|
|
2372
2536
|
export type MergablePropertyAttribute = MergablePropertyAttribute$instance;
|
|
2373
2537
|
|
|
2374
2538
|
export interface MultilineStringConverter$instance extends TypeConverter {
|
|
2539
|
+
readonly __tsonic_type_System_ComponentModel_MultilineStringConverter: never;
|
|
2540
|
+
|
|
2375
2541
|
ConvertTo(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown, destinationType: Type): unknown | undefined;
|
|
2376
2542
|
ConvertTo(value: unknown, destinationType: Type): unknown | undefined;
|
|
2377
2543
|
GetProperties(context: ITypeDescriptorContext, value: unknown, attributes: Attribute[]): PropertyDescriptorCollection | undefined;
|
|
@@ -2390,6 +2556,8 @@ export const MultilineStringConverter: {
|
|
|
2390
2556
|
export type MultilineStringConverter = MultilineStringConverter$instance;
|
|
2391
2557
|
|
|
2392
2558
|
export interface NestedContainer$instance extends Container$instance {
|
|
2559
|
+
readonly __tsonic_type_System_ComponentModel_NestedContainer: never;
|
|
2560
|
+
|
|
2393
2561
|
readonly __tsonic_iface_System_ComponentModel_IContainer: never;
|
|
2394
2562
|
readonly __tsonic_iface_System_ComponentModel_INestedContainer: never;
|
|
2395
2563
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -2420,6 +2588,8 @@ export type NestedContainer = NestedContainer$instance & __NestedContainer$views
|
|
|
2420
2588
|
|
|
2421
2589
|
|
|
2422
2590
|
export interface NotifyParentPropertyAttribute$instance extends Attribute {
|
|
2591
|
+
readonly __tsonic_type_System_ComponentModel_NotifyParentPropertyAttribute: never;
|
|
2592
|
+
|
|
2423
2593
|
readonly NotifyParent: boolean;
|
|
2424
2594
|
Equals(obj: unknown): boolean;
|
|
2425
2595
|
GetHashCode(): int;
|
|
@@ -2438,6 +2608,8 @@ export const NotifyParentPropertyAttribute: {
|
|
|
2438
2608
|
export type NotifyParentPropertyAttribute = NotifyParentPropertyAttribute$instance;
|
|
2439
2609
|
|
|
2440
2610
|
export interface NullableConverter$instance extends TypeConverter {
|
|
2611
|
+
readonly __tsonic_type_System_ComponentModel_NullableConverter: never;
|
|
2612
|
+
|
|
2441
2613
|
readonly NullableType: Type;
|
|
2442
2614
|
readonly UnderlyingType: Type;
|
|
2443
2615
|
readonly UnderlyingTypeConverter: TypeConverter;
|
|
@@ -2477,6 +2649,8 @@ export const NullableConverter: {
|
|
|
2477
2649
|
export type NullableConverter = NullableConverter$instance;
|
|
2478
2650
|
|
|
2479
2651
|
export interface ParenthesizePropertyNameAttribute$instance extends Attribute {
|
|
2652
|
+
readonly __tsonic_type_System_ComponentModel_ParenthesizePropertyNameAttribute: never;
|
|
2653
|
+
|
|
2480
2654
|
readonly NeedParenthesis: boolean;
|
|
2481
2655
|
Equals(obj: unknown): boolean;
|
|
2482
2656
|
GetHashCode(): int;
|
|
@@ -2494,6 +2668,8 @@ export const ParenthesizePropertyNameAttribute: {
|
|
|
2494
2668
|
export type ParenthesizePropertyNameAttribute = ParenthesizePropertyNameAttribute$instance;
|
|
2495
2669
|
|
|
2496
2670
|
export interface PasswordPropertyTextAttribute$instance extends Attribute {
|
|
2671
|
+
readonly __tsonic_type_System_ComponentModel_PasswordPropertyTextAttribute: never;
|
|
2672
|
+
|
|
2497
2673
|
readonly Password: boolean;
|
|
2498
2674
|
Equals(o: unknown): boolean;
|
|
2499
2675
|
GetHashCode(): int;
|
|
@@ -2513,6 +2689,8 @@ export const PasswordPropertyTextAttribute: {
|
|
|
2513
2689
|
export type PasswordPropertyTextAttribute = PasswordPropertyTextAttribute$instance;
|
|
2514
2690
|
|
|
2515
2691
|
export interface ProgressChangedEventArgs$instance extends EventArgs {
|
|
2692
|
+
readonly __tsonic_type_System_ComponentModel_ProgressChangedEventArgs: never;
|
|
2693
|
+
|
|
2516
2694
|
readonly ProgressPercentage: int;
|
|
2517
2695
|
readonly UserState: unknown | undefined;
|
|
2518
2696
|
}
|
|
@@ -2526,6 +2704,8 @@ export const ProgressChangedEventArgs: {
|
|
|
2526
2704
|
export type ProgressChangedEventArgs = ProgressChangedEventArgs$instance;
|
|
2527
2705
|
|
|
2528
2706
|
export interface PropertyChangedEventArgs$instance extends EventArgs {
|
|
2707
|
+
readonly __tsonic_type_System_ComponentModel_PropertyChangedEventArgs: never;
|
|
2708
|
+
|
|
2529
2709
|
readonly PropertyName: string | undefined;
|
|
2530
2710
|
}
|
|
2531
2711
|
|
|
@@ -2538,6 +2718,8 @@ export const PropertyChangedEventArgs: {
|
|
|
2538
2718
|
export type PropertyChangedEventArgs = PropertyChangedEventArgs$instance;
|
|
2539
2719
|
|
|
2540
2720
|
export interface PropertyChangingEventArgs$instance extends EventArgs {
|
|
2721
|
+
readonly __tsonic_type_System_ComponentModel_PropertyChangingEventArgs: never;
|
|
2722
|
+
|
|
2541
2723
|
readonly PropertyName: string | undefined;
|
|
2542
2724
|
}
|
|
2543
2725
|
|
|
@@ -2550,6 +2732,8 @@ export const PropertyChangingEventArgs: {
|
|
|
2550
2732
|
export type PropertyChangingEventArgs = PropertyChangingEventArgs$instance;
|
|
2551
2733
|
|
|
2552
2734
|
export interface PropertyDescriptor$instance extends MemberDescriptor {
|
|
2735
|
+
readonly __tsonic_type_System_ComponentModel_PropertyDescriptor: never;
|
|
2736
|
+
|
|
2553
2737
|
readonly ComponentType: Type;
|
|
2554
2738
|
readonly Converter: TypeConverter;
|
|
2555
2739
|
readonly ConverterFromRegisteredType: TypeConverter;
|
|
@@ -2585,6 +2769,8 @@ export const PropertyDescriptor: (abstract new(name: string, attrs: Attribute[])
|
|
|
2585
2769
|
export type PropertyDescriptor = PropertyDescriptor$instance;
|
|
2586
2770
|
|
|
2587
2771
|
export interface PropertyDescriptorCollection$instance {
|
|
2772
|
+
readonly __tsonic_type_System_ComponentModel_PropertyDescriptorCollection: never;
|
|
2773
|
+
|
|
2588
2774
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2589
2775
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
2590
2776
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -2628,6 +2814,8 @@ export type PropertyDescriptorCollection = PropertyDescriptorCollection$instance
|
|
|
2628
2814
|
|
|
2629
2815
|
|
|
2630
2816
|
export interface PropertyTabAttribute$instance extends Attribute {
|
|
2817
|
+
readonly __tsonic_type_System_ComponentModel_PropertyTabAttribute: never;
|
|
2818
|
+
|
|
2631
2819
|
readonly TabClasses: Type[];
|
|
2632
2820
|
TabScopes: PropertyTabScope[];
|
|
2633
2821
|
Equals(other: unknown): boolean;
|
|
@@ -2648,6 +2836,8 @@ export const PropertyTabAttribute: {
|
|
|
2648
2836
|
export type PropertyTabAttribute = PropertyTabAttribute$instance;
|
|
2649
2837
|
|
|
2650
2838
|
export interface ProvidePropertyAttribute$instance extends Attribute {
|
|
2839
|
+
readonly __tsonic_type_System_ComponentModel_ProvidePropertyAttribute: never;
|
|
2840
|
+
|
|
2651
2841
|
readonly PropertyName: string;
|
|
2652
2842
|
readonly ReceiverTypeName: string;
|
|
2653
2843
|
readonly TypeId: unknown;
|
|
@@ -2665,6 +2855,8 @@ export const ProvidePropertyAttribute: {
|
|
|
2665
2855
|
export type ProvidePropertyAttribute = ProvidePropertyAttribute$instance;
|
|
2666
2856
|
|
|
2667
2857
|
export interface ReadOnlyAttribute$instance extends Attribute {
|
|
2858
|
+
readonly __tsonic_type_System_ComponentModel_ReadOnlyAttribute: never;
|
|
2859
|
+
|
|
2668
2860
|
readonly IsReadOnly: boolean;
|
|
2669
2861
|
Equals(value: unknown): boolean;
|
|
2670
2862
|
GetHashCode(): int;
|
|
@@ -2683,6 +2875,8 @@ export const ReadOnlyAttribute: {
|
|
|
2683
2875
|
export type ReadOnlyAttribute = ReadOnlyAttribute$instance;
|
|
2684
2876
|
|
|
2685
2877
|
export interface RecommendedAsConfigurableAttribute$instance extends Attribute {
|
|
2878
|
+
readonly __tsonic_type_System_ComponentModel_RecommendedAsConfigurableAttribute: never;
|
|
2879
|
+
|
|
2686
2880
|
readonly RecommendedAsConfigurable: boolean;
|
|
2687
2881
|
Equals(obj: unknown): boolean;
|
|
2688
2882
|
GetHashCode(): int;
|
|
@@ -2701,6 +2895,8 @@ export const RecommendedAsConfigurableAttribute: {
|
|
|
2701
2895
|
export type RecommendedAsConfigurableAttribute = RecommendedAsConfigurableAttribute$instance;
|
|
2702
2896
|
|
|
2703
2897
|
export interface ReferenceConverter$instance extends TypeConverter {
|
|
2898
|
+
readonly __tsonic_type_System_ComponentModel_ReferenceConverter: never;
|
|
2899
|
+
|
|
2704
2900
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2705
2901
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2706
2902
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -2725,6 +2921,8 @@ export const ReferenceConverter: {
|
|
|
2725
2921
|
export type ReferenceConverter = ReferenceConverter$instance;
|
|
2726
2922
|
|
|
2727
2923
|
export interface RefreshEventArgs$instance extends EventArgs {
|
|
2924
|
+
readonly __tsonic_type_System_ComponentModel_RefreshEventArgs: never;
|
|
2925
|
+
|
|
2728
2926
|
readonly ComponentChanged: unknown | undefined;
|
|
2729
2927
|
readonly TypeChanged: Type | undefined;
|
|
2730
2928
|
}
|
|
@@ -2739,6 +2937,8 @@ export const RefreshEventArgs: {
|
|
|
2739
2937
|
export type RefreshEventArgs = RefreshEventArgs$instance;
|
|
2740
2938
|
|
|
2741
2939
|
export interface RefreshPropertiesAttribute$instance extends Attribute {
|
|
2940
|
+
readonly __tsonic_type_System_ComponentModel_RefreshPropertiesAttribute: never;
|
|
2941
|
+
|
|
2742
2942
|
readonly RefreshProperties: RefreshProperties;
|
|
2743
2943
|
Equals(obj: unknown): boolean;
|
|
2744
2944
|
GetHashCode(): int;
|
|
@@ -2757,6 +2957,8 @@ export const RefreshPropertiesAttribute: {
|
|
|
2757
2957
|
export type RefreshPropertiesAttribute = RefreshPropertiesAttribute$instance;
|
|
2758
2958
|
|
|
2759
2959
|
export interface RunInstallerAttribute$instance extends Attribute {
|
|
2960
|
+
readonly __tsonic_type_System_ComponentModel_RunInstallerAttribute: never;
|
|
2961
|
+
|
|
2760
2962
|
readonly RunInstaller: boolean;
|
|
2761
2963
|
Equals(obj: unknown): boolean;
|
|
2762
2964
|
GetHashCode(): int;
|
|
@@ -2775,6 +2977,8 @@ export const RunInstallerAttribute: {
|
|
|
2775
2977
|
export type RunInstallerAttribute = RunInstallerAttribute$instance;
|
|
2776
2978
|
|
|
2777
2979
|
export interface RunWorkerCompletedEventArgs$instance extends AsyncCompletedEventArgs {
|
|
2980
|
+
readonly __tsonic_type_System_ComponentModel_RunWorkerCompletedEventArgs: never;
|
|
2981
|
+
|
|
2778
2982
|
readonly Result: unknown | undefined;
|
|
2779
2983
|
readonly UserState: unknown | undefined;
|
|
2780
2984
|
}
|
|
@@ -2788,6 +2992,8 @@ export const RunWorkerCompletedEventArgs: {
|
|
|
2788
2992
|
export type RunWorkerCompletedEventArgs = RunWorkerCompletedEventArgs$instance;
|
|
2789
2993
|
|
|
2790
2994
|
export interface SByteConverter$instance extends BaseNumberConverter {
|
|
2995
|
+
readonly __tsonic_type_System_ComponentModel_SByteConverter: never;
|
|
2996
|
+
|
|
2791
2997
|
}
|
|
2792
2998
|
|
|
2793
2999
|
|
|
@@ -2799,6 +3005,8 @@ export const SByteConverter: {
|
|
|
2799
3005
|
export type SByteConverter = SByteConverter$instance;
|
|
2800
3006
|
|
|
2801
3007
|
export interface SettingsBindableAttribute$instance extends Attribute {
|
|
3008
|
+
readonly __tsonic_type_System_ComponentModel_SettingsBindableAttribute: never;
|
|
3009
|
+
|
|
2802
3010
|
readonly Bindable: boolean;
|
|
2803
3011
|
Equals(obj: unknown): boolean;
|
|
2804
3012
|
GetHashCode(): int;
|
|
@@ -2815,6 +3023,8 @@ export const SettingsBindableAttribute: {
|
|
|
2815
3023
|
export type SettingsBindableAttribute = SettingsBindableAttribute$instance;
|
|
2816
3024
|
|
|
2817
3025
|
export interface SingleConverter$instance extends BaseNumberConverter {
|
|
3026
|
+
readonly __tsonic_type_System_ComponentModel_SingleConverter: never;
|
|
3027
|
+
|
|
2818
3028
|
}
|
|
2819
3029
|
|
|
2820
3030
|
|
|
@@ -2826,6 +3036,8 @@ export const SingleConverter: {
|
|
|
2826
3036
|
export type SingleConverter = SingleConverter$instance;
|
|
2827
3037
|
|
|
2828
3038
|
export interface StringConverter$instance extends TypeConverter {
|
|
3039
|
+
readonly __tsonic_type_System_ComponentModel_StringConverter: never;
|
|
3040
|
+
|
|
2829
3041
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2830
3042
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2831
3043
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -2841,6 +3053,8 @@ export const StringConverter: {
|
|
|
2841
3053
|
export type StringConverter = StringConverter$instance;
|
|
2842
3054
|
|
|
2843
3055
|
export interface TimeOnlyConverter$instance extends TypeConverter {
|
|
3056
|
+
readonly __tsonic_type_System_ComponentModel_TimeOnlyConverter: never;
|
|
3057
|
+
|
|
2844
3058
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2845
3059
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2846
3060
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -2860,6 +3074,8 @@ export const TimeOnlyConverter: {
|
|
|
2860
3074
|
export type TimeOnlyConverter = TimeOnlyConverter$instance;
|
|
2861
3075
|
|
|
2862
3076
|
export interface TimeSpanConverter$instance extends TypeConverter {
|
|
3077
|
+
readonly __tsonic_type_System_ComponentModel_TimeSpanConverter: never;
|
|
3078
|
+
|
|
2863
3079
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2864
3080
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2865
3081
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -2879,6 +3095,8 @@ export const TimeSpanConverter: {
|
|
|
2879
3095
|
export type TimeSpanConverter = TimeSpanConverter$instance;
|
|
2880
3096
|
|
|
2881
3097
|
export interface ToolboxItemAttribute$instance extends Attribute {
|
|
3098
|
+
readonly __tsonic_type_System_ComponentModel_ToolboxItemAttribute: never;
|
|
3099
|
+
|
|
2882
3100
|
readonly ToolboxItemType: Type | undefined;
|
|
2883
3101
|
readonly ToolboxItemTypeName: string;
|
|
2884
3102
|
Equals(obj: unknown): boolean;
|
|
@@ -2899,6 +3117,8 @@ export const ToolboxItemAttribute: {
|
|
|
2899
3117
|
export type ToolboxItemAttribute = ToolboxItemAttribute$instance;
|
|
2900
3118
|
|
|
2901
3119
|
export interface ToolboxItemFilterAttribute$instance extends Attribute {
|
|
3120
|
+
readonly __tsonic_type_System_ComponentModel_ToolboxItemFilterAttribute: never;
|
|
3121
|
+
|
|
2902
3122
|
readonly FilterString: string;
|
|
2903
3123
|
readonly FilterType: ToolboxItemFilterType;
|
|
2904
3124
|
readonly TypeId: unknown;
|
|
@@ -2918,6 +3138,8 @@ export const ToolboxItemFilterAttribute: {
|
|
|
2918
3138
|
export type ToolboxItemFilterAttribute = ToolboxItemFilterAttribute$instance;
|
|
2919
3139
|
|
|
2920
3140
|
export interface TypeConverter$instance {
|
|
3141
|
+
readonly __tsonic_type_System_ComponentModel_TypeConverter: never;
|
|
3142
|
+
|
|
2921
3143
|
CanConvertFrom(sourceType: Type): boolean;
|
|
2922
3144
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
2923
3145
|
CanConvertTo(destinationType: Type): boolean;
|
|
@@ -2964,6 +3186,8 @@ export const TypeConverter: {
|
|
|
2964
3186
|
export type TypeConverter = TypeConverter$instance;
|
|
2965
3187
|
|
|
2966
3188
|
export interface TypeConverter_StandardValuesCollection$instance {
|
|
3189
|
+
readonly __tsonic_type_System_ComponentModel_TypeConverter_StandardValuesCollection: never;
|
|
3190
|
+
|
|
2967
3191
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2968
3192
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2969
3193
|
|
|
@@ -2988,6 +3212,8 @@ export type TypeConverter_StandardValuesCollection = TypeConverter_StandardValue
|
|
|
2988
3212
|
|
|
2989
3213
|
|
|
2990
3214
|
export interface TypeConverterAttribute$instance extends Attribute {
|
|
3215
|
+
readonly __tsonic_type_System_ComponentModel_TypeConverterAttribute: never;
|
|
3216
|
+
|
|
2991
3217
|
readonly ConverterTypeName: string;
|
|
2992
3218
|
Equals(obj: unknown): boolean;
|
|
2993
3219
|
GetHashCode(): int;
|
|
@@ -3005,6 +3231,8 @@ export const TypeConverterAttribute: {
|
|
|
3005
3231
|
export type TypeConverterAttribute = TypeConverterAttribute$instance;
|
|
3006
3232
|
|
|
3007
3233
|
export interface TypeDescriptionProvider$instance {
|
|
3234
|
+
readonly __tsonic_type_System_ComponentModel_TypeDescriptionProvider: never;
|
|
3235
|
+
|
|
3008
3236
|
readonly RequireRegisteredTypes: Nullable_1<System_Internal.Boolean>;
|
|
3009
3237
|
CreateInstance(provider: IServiceProvider, objectType: Type, argTypes: Type[], args: unknown[]): unknown | undefined;
|
|
3010
3238
|
GetCache(instance: unknown): IDictionary | undefined;
|
|
@@ -3035,6 +3263,8 @@ export const TypeDescriptionProvider: (abstract new() => TypeDescriptionProvider
|
|
|
3035
3263
|
export type TypeDescriptionProvider = TypeDescriptionProvider$instance;
|
|
3036
3264
|
|
|
3037
3265
|
export interface TypeDescriptionProviderAttribute$instance extends Attribute {
|
|
3266
|
+
readonly __tsonic_type_System_ComponentModel_TypeDescriptionProviderAttribute: never;
|
|
3267
|
+
|
|
3038
3268
|
readonly TypeName: string;
|
|
3039
3269
|
}
|
|
3040
3270
|
|
|
@@ -3048,6 +3278,8 @@ export const TypeDescriptionProviderAttribute: {
|
|
|
3048
3278
|
export type TypeDescriptionProviderAttribute = TypeDescriptionProviderAttribute$instance;
|
|
3049
3279
|
|
|
3050
3280
|
export interface TypeDescriptor$instance {
|
|
3281
|
+
readonly __tsonic_type_System_ComponentModel_TypeDescriptor: never;
|
|
3282
|
+
|
|
3051
3283
|
}
|
|
3052
3284
|
|
|
3053
3285
|
|
|
@@ -3131,6 +3363,8 @@ export const TypeDescriptor: {
|
|
|
3131
3363
|
export type TypeDescriptor = TypeDescriptor$instance;
|
|
3132
3364
|
|
|
3133
3365
|
export interface TypeListConverter$instance extends TypeConverter {
|
|
3366
|
+
readonly __tsonic_type_System_ComponentModel_TypeListConverter: never;
|
|
3367
|
+
|
|
3134
3368
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
3135
3369
|
CanConvertFrom(sourceType: Type): boolean;
|
|
3136
3370
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -3155,6 +3389,8 @@ export const TypeListConverter: (abstract new(types: Type[]) => TypeListConverte
|
|
|
3155
3389
|
export type TypeListConverter = TypeListConverter$instance;
|
|
3156
3390
|
|
|
3157
3391
|
export interface UInt128Converter$instance extends BaseNumberConverter {
|
|
3392
|
+
readonly __tsonic_type_System_ComponentModel_UInt128Converter: never;
|
|
3393
|
+
|
|
3158
3394
|
}
|
|
3159
3395
|
|
|
3160
3396
|
|
|
@@ -3166,6 +3402,8 @@ export const UInt128Converter: {
|
|
|
3166
3402
|
export type UInt128Converter = UInt128Converter$instance;
|
|
3167
3403
|
|
|
3168
3404
|
export interface UInt16Converter$instance extends BaseNumberConverter {
|
|
3405
|
+
readonly __tsonic_type_System_ComponentModel_UInt16Converter: never;
|
|
3406
|
+
|
|
3169
3407
|
}
|
|
3170
3408
|
|
|
3171
3409
|
|
|
@@ -3177,6 +3415,8 @@ export const UInt16Converter: {
|
|
|
3177
3415
|
export type UInt16Converter = UInt16Converter$instance;
|
|
3178
3416
|
|
|
3179
3417
|
export interface UInt32Converter$instance extends BaseNumberConverter {
|
|
3418
|
+
readonly __tsonic_type_System_ComponentModel_UInt32Converter: never;
|
|
3419
|
+
|
|
3180
3420
|
}
|
|
3181
3421
|
|
|
3182
3422
|
|
|
@@ -3188,6 +3428,8 @@ export const UInt32Converter: {
|
|
|
3188
3428
|
export type UInt32Converter = UInt32Converter$instance;
|
|
3189
3429
|
|
|
3190
3430
|
export interface UInt64Converter$instance extends BaseNumberConverter {
|
|
3431
|
+
readonly __tsonic_type_System_ComponentModel_UInt64Converter: never;
|
|
3432
|
+
|
|
3191
3433
|
}
|
|
3192
3434
|
|
|
3193
3435
|
|
|
@@ -3199,6 +3441,8 @@ export const UInt64Converter: {
|
|
|
3199
3441
|
export type UInt64Converter = UInt64Converter$instance;
|
|
3200
3442
|
|
|
3201
3443
|
export interface VersionConverter$instance extends TypeConverter {
|
|
3444
|
+
readonly __tsonic_type_System_ComponentModel_VersionConverter: never;
|
|
3445
|
+
|
|
3202
3446
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
3203
3447
|
CanConvertFrom(sourceType: Type): boolean;
|
|
3204
3448
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
@@ -3220,6 +3464,8 @@ export const VersionConverter: {
|
|
|
3220
3464
|
export type VersionConverter = VersionConverter$instance;
|
|
3221
3465
|
|
|
3222
3466
|
export interface WarningException$instance extends SystemException {
|
|
3467
|
+
readonly __tsonic_type_System_ComponentModel_WarningException: never;
|
|
3468
|
+
|
|
3223
3469
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3224
3470
|
|
|
3225
3471
|
readonly HelpTopic: string | undefined;
|
|
@@ -3245,6 +3491,8 @@ export type WarningException = WarningException$instance & __WarningException$vi
|
|
|
3245
3491
|
|
|
3246
3492
|
|
|
3247
3493
|
export interface Win32Exception$instance extends ExternalException {
|
|
3494
|
+
readonly __tsonic_type_System_ComponentModel_Win32Exception: never;
|
|
3495
|
+
|
|
3248
3496
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
3249
3497
|
|
|
3250
3498
|
readonly NativeErrorCode: int;
|