@tsonic/dotnet 10.0.4 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -380,6 +380,8 @@ export type TypeFilter = (m: Type, filterCriteria: unknown) => boolean;
|
|
|
380
380
|
|
|
381
381
|
|
|
382
382
|
export interface ICustomAttributeProvider$instance {
|
|
383
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
384
|
+
|
|
383
385
|
GetCustomAttributes(inherit: boolean): unknown[];
|
|
384
386
|
GetCustomAttributes(attributeType: Type, inherit: boolean): unknown[];
|
|
385
387
|
IsDefined(attributeType: Type, inherit: boolean): boolean;
|
|
@@ -389,6 +391,8 @@ export interface ICustomAttributeProvider$instance {
|
|
|
389
391
|
export type ICustomAttributeProvider = ICustomAttributeProvider$instance;
|
|
390
392
|
|
|
391
393
|
export interface ICustomTypeProvider$instance {
|
|
394
|
+
readonly __tsonic_iface_System_Reflection_ICustomTypeProvider: never;
|
|
395
|
+
|
|
392
396
|
GetCustomType(): Type;
|
|
393
397
|
}
|
|
394
398
|
|
|
@@ -396,6 +400,8 @@ export interface ICustomTypeProvider$instance {
|
|
|
396
400
|
export type ICustomTypeProvider = ICustomTypeProvider$instance;
|
|
397
401
|
|
|
398
402
|
export interface IReflect$instance {
|
|
403
|
+
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
404
|
+
|
|
399
405
|
readonly UnderlyingSystemType: Type;
|
|
400
406
|
GetField(name: string, bindingAttr: BindingFlags): FieldInfo | undefined;
|
|
401
407
|
GetFields(bindingAttr: BindingFlags): FieldInfo[];
|
|
@@ -414,6 +420,8 @@ export interface IReflect$instance {
|
|
|
414
420
|
export type IReflect = IReflect$instance;
|
|
415
421
|
|
|
416
422
|
export interface IReflectableType$instance {
|
|
423
|
+
readonly __tsonic_iface_System_Reflection_IReflectableType: never;
|
|
424
|
+
|
|
417
425
|
GetTypeInfo(): TypeInfo;
|
|
418
426
|
}
|
|
419
427
|
|
|
@@ -421,6 +429,10 @@ export interface IReflectableType$instance {
|
|
|
421
429
|
export type IReflectableType = IReflectableType$instance;
|
|
422
430
|
|
|
423
431
|
export interface CustomAttributeNamedArgument$instance {
|
|
432
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeNamedArgument: never;
|
|
433
|
+
|
|
434
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
435
|
+
|
|
424
436
|
readonly IsField: boolean;
|
|
425
437
|
readonly MemberInfo: MemberInfo;
|
|
426
438
|
readonly MemberName: string;
|
|
@@ -449,6 +461,10 @@ export type CustomAttributeNamedArgument = CustomAttributeNamedArgument$instance
|
|
|
449
461
|
|
|
450
462
|
|
|
451
463
|
export interface CustomAttributeTypedArgument$instance {
|
|
464
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeTypedArgument: never;
|
|
465
|
+
|
|
466
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
467
|
+
|
|
452
468
|
readonly ArgumentType: Type;
|
|
453
469
|
readonly Value: unknown | undefined;
|
|
454
470
|
Equals(obj: unknown): boolean;
|
|
@@ -475,6 +491,8 @@ export type CustomAttributeTypedArgument = CustomAttributeTypedArgument$instance
|
|
|
475
491
|
|
|
476
492
|
|
|
477
493
|
export interface InterfaceMapping$instance {
|
|
494
|
+
readonly __tsonic_type_System_Reflection_InterfaceMapping: never;
|
|
495
|
+
|
|
478
496
|
TargetType: Type;
|
|
479
497
|
InterfaceType: Type;
|
|
480
498
|
TargetMethods: MethodInfo[];
|
|
@@ -490,6 +508,8 @@ export const InterfaceMapping: {
|
|
|
490
508
|
export type InterfaceMapping = InterfaceMapping$instance;
|
|
491
509
|
|
|
492
510
|
export interface ParameterModifier$instance {
|
|
511
|
+
readonly __tsonic_type_System_Reflection_ParameterModifier: never;
|
|
512
|
+
|
|
493
513
|
[index: number]: boolean;
|
|
494
514
|
}
|
|
495
515
|
|
|
@@ -502,6 +522,10 @@ export const ParameterModifier: {
|
|
|
502
522
|
export type ParameterModifier = ParameterModifier$instance;
|
|
503
523
|
|
|
504
524
|
export interface AmbiguousMatchException$instance extends SystemException {
|
|
525
|
+
readonly __tsonic_type_System_Reflection_AmbiguousMatchException: never;
|
|
526
|
+
|
|
527
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
528
|
+
|
|
505
529
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
506
530
|
}
|
|
507
531
|
|
|
@@ -520,7 +544,12 @@ export interface __AmbiguousMatchException$views {
|
|
|
520
544
|
export type AmbiguousMatchException = AmbiguousMatchException$instance & __AmbiguousMatchException$views;
|
|
521
545
|
|
|
522
546
|
|
|
523
|
-
export interface Assembly$instance {
|
|
547
|
+
export interface Assembly$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
548
|
+
readonly __tsonic_type_System_Reflection_Assembly: never;
|
|
549
|
+
|
|
550
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
551
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
552
|
+
|
|
524
553
|
readonly CodeBase: string | undefined;
|
|
525
554
|
readonly CustomAttributes: IEnumerable_1<CustomAttributeData>;
|
|
526
555
|
readonly DefinedTypes: IEnumerable_1<TypeInfo>;
|
|
@@ -605,12 +634,12 @@ export interface __Assembly$views {
|
|
|
605
634
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
606
635
|
}
|
|
607
636
|
|
|
608
|
-
export interface Assembly$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
609
|
-
|
|
610
637
|
export type Assembly = Assembly$instance & __Assembly$views;
|
|
611
638
|
|
|
612
639
|
|
|
613
640
|
export interface AssemblyAlgorithmIdAttribute$instance extends Attribute {
|
|
641
|
+
readonly __tsonic_type_System_Reflection_AssemblyAlgorithmIdAttribute: never;
|
|
642
|
+
|
|
614
643
|
readonly AlgorithmId: uint;
|
|
615
644
|
}
|
|
616
645
|
|
|
@@ -624,6 +653,8 @@ export const AssemblyAlgorithmIdAttribute: {
|
|
|
624
653
|
export type AssemblyAlgorithmIdAttribute = AssemblyAlgorithmIdAttribute$instance;
|
|
625
654
|
|
|
626
655
|
export interface AssemblyCompanyAttribute$instance extends Attribute {
|
|
656
|
+
readonly __tsonic_type_System_Reflection_AssemblyCompanyAttribute: never;
|
|
657
|
+
|
|
627
658
|
readonly Company: string;
|
|
628
659
|
}
|
|
629
660
|
|
|
@@ -636,6 +667,8 @@ export const AssemblyCompanyAttribute: {
|
|
|
636
667
|
export type AssemblyCompanyAttribute = AssemblyCompanyAttribute$instance;
|
|
637
668
|
|
|
638
669
|
export interface AssemblyConfigurationAttribute$instance extends Attribute {
|
|
670
|
+
readonly __tsonic_type_System_Reflection_AssemblyConfigurationAttribute: never;
|
|
671
|
+
|
|
639
672
|
readonly Configuration: string;
|
|
640
673
|
}
|
|
641
674
|
|
|
@@ -648,6 +681,8 @@ export const AssemblyConfigurationAttribute: {
|
|
|
648
681
|
export type AssemblyConfigurationAttribute = AssemblyConfigurationAttribute$instance;
|
|
649
682
|
|
|
650
683
|
export interface AssemblyCopyrightAttribute$instance extends Attribute {
|
|
684
|
+
readonly __tsonic_type_System_Reflection_AssemblyCopyrightAttribute: never;
|
|
685
|
+
|
|
651
686
|
readonly Copyright: string;
|
|
652
687
|
}
|
|
653
688
|
|
|
@@ -660,6 +695,8 @@ export const AssemblyCopyrightAttribute: {
|
|
|
660
695
|
export type AssemblyCopyrightAttribute = AssemblyCopyrightAttribute$instance;
|
|
661
696
|
|
|
662
697
|
export interface AssemblyCultureAttribute$instance extends Attribute {
|
|
698
|
+
readonly __tsonic_type_System_Reflection_AssemblyCultureAttribute: never;
|
|
699
|
+
|
|
663
700
|
readonly Culture: string;
|
|
664
701
|
}
|
|
665
702
|
|
|
@@ -672,6 +709,8 @@ export const AssemblyCultureAttribute: {
|
|
|
672
709
|
export type AssemblyCultureAttribute = AssemblyCultureAttribute$instance;
|
|
673
710
|
|
|
674
711
|
export interface AssemblyDefaultAliasAttribute$instance extends Attribute {
|
|
712
|
+
readonly __tsonic_type_System_Reflection_AssemblyDefaultAliasAttribute: never;
|
|
713
|
+
|
|
675
714
|
readonly DefaultAlias: string;
|
|
676
715
|
}
|
|
677
716
|
|
|
@@ -684,6 +723,8 @@ export const AssemblyDefaultAliasAttribute: {
|
|
|
684
723
|
export type AssemblyDefaultAliasAttribute = AssemblyDefaultAliasAttribute$instance;
|
|
685
724
|
|
|
686
725
|
export interface AssemblyDelaySignAttribute$instance extends Attribute {
|
|
726
|
+
readonly __tsonic_type_System_Reflection_AssemblyDelaySignAttribute: never;
|
|
727
|
+
|
|
687
728
|
readonly DelaySign: boolean;
|
|
688
729
|
}
|
|
689
730
|
|
|
@@ -696,6 +737,8 @@ export const AssemblyDelaySignAttribute: {
|
|
|
696
737
|
export type AssemblyDelaySignAttribute = AssemblyDelaySignAttribute$instance;
|
|
697
738
|
|
|
698
739
|
export interface AssemblyDescriptionAttribute$instance extends Attribute {
|
|
740
|
+
readonly __tsonic_type_System_Reflection_AssemblyDescriptionAttribute: never;
|
|
741
|
+
|
|
699
742
|
readonly Description: string;
|
|
700
743
|
}
|
|
701
744
|
|
|
@@ -708,6 +751,8 @@ export const AssemblyDescriptionAttribute: {
|
|
|
708
751
|
export type AssemblyDescriptionAttribute = AssemblyDescriptionAttribute$instance;
|
|
709
752
|
|
|
710
753
|
export interface AssemblyFileVersionAttribute$instance extends Attribute {
|
|
754
|
+
readonly __tsonic_type_System_Reflection_AssemblyFileVersionAttribute: never;
|
|
755
|
+
|
|
711
756
|
readonly Version: string;
|
|
712
757
|
}
|
|
713
758
|
|
|
@@ -720,6 +765,8 @@ export const AssemblyFileVersionAttribute: {
|
|
|
720
765
|
export type AssemblyFileVersionAttribute = AssemblyFileVersionAttribute$instance;
|
|
721
766
|
|
|
722
767
|
export interface AssemblyFlagsAttribute$instance extends Attribute {
|
|
768
|
+
readonly __tsonic_type_System_Reflection_AssemblyFlagsAttribute: never;
|
|
769
|
+
|
|
723
770
|
readonly AssemblyFlags: int;
|
|
724
771
|
readonly Flags: uint;
|
|
725
772
|
}
|
|
@@ -735,6 +782,8 @@ export const AssemblyFlagsAttribute: {
|
|
|
735
782
|
export type AssemblyFlagsAttribute = AssemblyFlagsAttribute$instance;
|
|
736
783
|
|
|
737
784
|
export interface AssemblyInformationalVersionAttribute$instance extends Attribute {
|
|
785
|
+
readonly __tsonic_type_System_Reflection_AssemblyInformationalVersionAttribute: never;
|
|
786
|
+
|
|
738
787
|
readonly InformationalVersion: string;
|
|
739
788
|
}
|
|
740
789
|
|
|
@@ -747,6 +796,8 @@ export const AssemblyInformationalVersionAttribute: {
|
|
|
747
796
|
export type AssemblyInformationalVersionAttribute = AssemblyInformationalVersionAttribute$instance;
|
|
748
797
|
|
|
749
798
|
export interface AssemblyKeyFileAttribute$instance extends Attribute {
|
|
799
|
+
readonly __tsonic_type_System_Reflection_AssemblyKeyFileAttribute: never;
|
|
800
|
+
|
|
750
801
|
readonly KeyFile: string;
|
|
751
802
|
}
|
|
752
803
|
|
|
@@ -759,6 +810,8 @@ export const AssemblyKeyFileAttribute: {
|
|
|
759
810
|
export type AssemblyKeyFileAttribute = AssemblyKeyFileAttribute$instance;
|
|
760
811
|
|
|
761
812
|
export interface AssemblyKeyNameAttribute$instance extends Attribute {
|
|
813
|
+
readonly __tsonic_type_System_Reflection_AssemblyKeyNameAttribute: never;
|
|
814
|
+
|
|
762
815
|
readonly KeyName: string;
|
|
763
816
|
}
|
|
764
817
|
|
|
@@ -771,6 +824,8 @@ export const AssemblyKeyNameAttribute: {
|
|
|
771
824
|
export type AssemblyKeyNameAttribute = AssemblyKeyNameAttribute$instance;
|
|
772
825
|
|
|
773
826
|
export interface AssemblyMetadataAttribute$instance extends Attribute {
|
|
827
|
+
readonly __tsonic_type_System_Reflection_AssemblyMetadataAttribute: never;
|
|
828
|
+
|
|
774
829
|
readonly Key: string;
|
|
775
830
|
readonly Value: string | undefined;
|
|
776
831
|
}
|
|
@@ -783,7 +838,13 @@ export const AssemblyMetadataAttribute: {
|
|
|
783
838
|
|
|
784
839
|
export type AssemblyMetadataAttribute = AssemblyMetadataAttribute$instance;
|
|
785
840
|
|
|
786
|
-
export interface AssemblyName$instance {
|
|
841
|
+
export interface AssemblyName$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
842
|
+
readonly __tsonic_type_System_Reflection_AssemblyName: never;
|
|
843
|
+
|
|
844
|
+
readonly __tsonic_iface_System_ICloneable: never;
|
|
845
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
846
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
847
|
+
|
|
787
848
|
get CodeBase(): string | undefined;
|
|
788
849
|
set CodeBase(value: string | undefined);
|
|
789
850
|
ContentType: AssemblyContentType;
|
|
@@ -828,12 +889,12 @@ export interface __AssemblyName$views {
|
|
|
828
889
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
829
890
|
}
|
|
830
891
|
|
|
831
|
-
export interface AssemblyName$instance extends System_Internal.ICloneable$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
832
|
-
|
|
833
892
|
export type AssemblyName = AssemblyName$instance & __AssemblyName$views;
|
|
834
893
|
|
|
835
894
|
|
|
836
895
|
export interface AssemblyNameProxy$instance extends MarshalByRefObject {
|
|
896
|
+
readonly __tsonic_type_System_Reflection_AssemblyNameProxy: never;
|
|
897
|
+
|
|
837
898
|
GetAssemblyName(assemblyFile: string): AssemblyName;
|
|
838
899
|
}
|
|
839
900
|
|
|
@@ -846,6 +907,8 @@ export const AssemblyNameProxy: {
|
|
|
846
907
|
export type AssemblyNameProxy = AssemblyNameProxy$instance;
|
|
847
908
|
|
|
848
909
|
export interface AssemblyProductAttribute$instance extends Attribute {
|
|
910
|
+
readonly __tsonic_type_System_Reflection_AssemblyProductAttribute: never;
|
|
911
|
+
|
|
849
912
|
readonly Product: string;
|
|
850
913
|
}
|
|
851
914
|
|
|
@@ -858,6 +921,8 @@ export const AssemblyProductAttribute: {
|
|
|
858
921
|
export type AssemblyProductAttribute = AssemblyProductAttribute$instance;
|
|
859
922
|
|
|
860
923
|
export interface AssemblySignatureKeyAttribute$instance extends Attribute {
|
|
924
|
+
readonly __tsonic_type_System_Reflection_AssemblySignatureKeyAttribute: never;
|
|
925
|
+
|
|
861
926
|
readonly Countersignature: string;
|
|
862
927
|
readonly PublicKey: string;
|
|
863
928
|
}
|
|
@@ -871,6 +936,8 @@ export const AssemblySignatureKeyAttribute: {
|
|
|
871
936
|
export type AssemblySignatureKeyAttribute = AssemblySignatureKeyAttribute$instance;
|
|
872
937
|
|
|
873
938
|
export interface AssemblyTitleAttribute$instance extends Attribute {
|
|
939
|
+
readonly __tsonic_type_System_Reflection_AssemblyTitleAttribute: never;
|
|
940
|
+
|
|
874
941
|
readonly Title: string;
|
|
875
942
|
}
|
|
876
943
|
|
|
@@ -883,6 +950,8 @@ export const AssemblyTitleAttribute: {
|
|
|
883
950
|
export type AssemblyTitleAttribute = AssemblyTitleAttribute$instance;
|
|
884
951
|
|
|
885
952
|
export interface AssemblyTrademarkAttribute$instance extends Attribute {
|
|
953
|
+
readonly __tsonic_type_System_Reflection_AssemblyTrademarkAttribute: never;
|
|
954
|
+
|
|
886
955
|
readonly Trademark: string;
|
|
887
956
|
}
|
|
888
957
|
|
|
@@ -895,6 +964,8 @@ export const AssemblyTrademarkAttribute: {
|
|
|
895
964
|
export type AssemblyTrademarkAttribute = AssemblyTrademarkAttribute$instance;
|
|
896
965
|
|
|
897
966
|
export interface AssemblyVersionAttribute$instance extends Attribute {
|
|
967
|
+
readonly __tsonic_type_System_Reflection_AssemblyVersionAttribute: never;
|
|
968
|
+
|
|
898
969
|
readonly Version: string;
|
|
899
970
|
}
|
|
900
971
|
|
|
@@ -907,6 +978,8 @@ export const AssemblyVersionAttribute: {
|
|
|
907
978
|
export type AssemblyVersionAttribute = AssemblyVersionAttribute$instance;
|
|
908
979
|
|
|
909
980
|
export interface Binder$instance {
|
|
981
|
+
readonly __tsonic_type_System_Reflection_Binder: never;
|
|
982
|
+
|
|
910
983
|
BindToField(bindingAttr: BindingFlags, match: FieldInfo[], value: unknown, culture: CultureInfo): FieldInfo;
|
|
911
984
|
BindToMethod(bindingAttr: BindingFlags, match: MethodBase[], args: unknown[], modifiers: ParameterModifier[], culture: CultureInfo, names: string[], state: unknown): MethodBase;
|
|
912
985
|
ChangeType(value: unknown, type: Type, culture: CultureInfo): unknown;
|
|
@@ -923,6 +996,10 @@ export const Binder: (abstract new() => Binder) & {
|
|
|
923
996
|
export type Binder = Binder$instance;
|
|
924
997
|
|
|
925
998
|
export interface ConstructorInfo$instance extends MethodBase$instance {
|
|
999
|
+
readonly __tsonic_type_System_Reflection_ConstructorInfo: never;
|
|
1000
|
+
|
|
1001
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1002
|
+
|
|
926
1003
|
readonly MemberType: MemberTypes;
|
|
927
1004
|
Equals(obj: unknown): boolean;
|
|
928
1005
|
GetCustomAttributes(inherit: boolean): unknown[];
|
|
@@ -948,6 +1025,8 @@ export type ConstructorInfo = ConstructorInfo$instance & __ConstructorInfo$views
|
|
|
948
1025
|
|
|
949
1026
|
|
|
950
1027
|
export interface ConstructorInvoker$instance {
|
|
1028
|
+
readonly __tsonic_type_System_Reflection_ConstructorInvoker: never;
|
|
1029
|
+
|
|
951
1030
|
Invoke(): unknown;
|
|
952
1031
|
Invoke(arg1: unknown): unknown;
|
|
953
1032
|
Invoke(arg1: unknown, arg2: unknown): unknown;
|
|
@@ -965,6 +1044,8 @@ export const ConstructorInvoker: {
|
|
|
965
1044
|
export type ConstructorInvoker = ConstructorInvoker$instance;
|
|
966
1045
|
|
|
967
1046
|
export interface CustomAttributeData$instance {
|
|
1047
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeData: never;
|
|
1048
|
+
|
|
968
1049
|
readonly AttributeType: Type;
|
|
969
1050
|
readonly Constructor: ConstructorInfo;
|
|
970
1051
|
readonly ConstructorArguments: IList_1<CustomAttributeTypedArgument>;
|
|
@@ -984,6 +1065,10 @@ export const CustomAttributeData: (abstract new() => CustomAttributeData) & {
|
|
|
984
1065
|
export type CustomAttributeData = CustomAttributeData$instance;
|
|
985
1066
|
|
|
986
1067
|
export interface CustomAttributeFormatException$instance extends FormatException {
|
|
1068
|
+
readonly __tsonic_type_System_Reflection_CustomAttributeFormatException: never;
|
|
1069
|
+
|
|
1070
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1071
|
+
|
|
987
1072
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
988
1073
|
}
|
|
989
1074
|
|
|
@@ -1003,6 +1088,8 @@ export type CustomAttributeFormatException = CustomAttributeFormatException$inst
|
|
|
1003
1088
|
|
|
1004
1089
|
|
|
1005
1090
|
export interface DefaultMemberAttribute$instance extends Attribute {
|
|
1091
|
+
readonly __tsonic_type_System_Reflection_DefaultMemberAttribute: never;
|
|
1092
|
+
|
|
1006
1093
|
readonly MemberName: string;
|
|
1007
1094
|
}
|
|
1008
1095
|
|
|
@@ -1015,6 +1102,8 @@ export const DefaultMemberAttribute: {
|
|
|
1015
1102
|
export type DefaultMemberAttribute = DefaultMemberAttribute$instance;
|
|
1016
1103
|
|
|
1017
1104
|
export interface DispatchProxy$instance {
|
|
1105
|
+
readonly __tsonic_type_System_Reflection_DispatchProxy: never;
|
|
1106
|
+
|
|
1018
1107
|
Invoke(targetMethod: MethodInfo, args: unknown[]): unknown | undefined;
|
|
1019
1108
|
}
|
|
1020
1109
|
|
|
@@ -1028,6 +1117,10 @@ export const DispatchProxy: (abstract new() => DispatchProxy) & {
|
|
|
1028
1117
|
export type DispatchProxy = DispatchProxy$instance;
|
|
1029
1118
|
|
|
1030
1119
|
export interface EventInfo$instance extends MemberInfo$instance {
|
|
1120
|
+
readonly __tsonic_type_System_Reflection_EventInfo: never;
|
|
1121
|
+
|
|
1122
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1123
|
+
|
|
1031
1124
|
readonly AddMethod: MethodInfo | undefined;
|
|
1032
1125
|
readonly Attributes: EventAttributes;
|
|
1033
1126
|
readonly EventHandlerType: Type | undefined;
|
|
@@ -1066,6 +1159,8 @@ export type EventInfo = EventInfo$instance & __EventInfo$views;
|
|
|
1066
1159
|
|
|
1067
1160
|
|
|
1068
1161
|
export interface ExceptionHandlingClause$instance {
|
|
1162
|
+
readonly __tsonic_type_System_Reflection_ExceptionHandlingClause: never;
|
|
1163
|
+
|
|
1069
1164
|
readonly CatchType: Type | undefined;
|
|
1070
1165
|
readonly FilterOffset: int;
|
|
1071
1166
|
readonly Flags: ExceptionHandlingClauseOptions;
|
|
@@ -1084,6 +1179,10 @@ export const ExceptionHandlingClause: (abstract new() => ExceptionHandlingClause
|
|
|
1084
1179
|
export type ExceptionHandlingClause = ExceptionHandlingClause$instance;
|
|
1085
1180
|
|
|
1086
1181
|
export interface FieldInfo$instance extends MemberInfo$instance {
|
|
1182
|
+
readonly __tsonic_type_System_Reflection_FieldInfo: never;
|
|
1183
|
+
|
|
1184
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1185
|
+
|
|
1087
1186
|
readonly Attributes: FieldAttributes;
|
|
1088
1187
|
readonly FieldHandle: RuntimeFieldHandle;
|
|
1089
1188
|
readonly FieldType: Type;
|
|
@@ -1134,6 +1233,10 @@ export type FieldInfo = FieldInfo$instance & __FieldInfo$views;
|
|
|
1134
1233
|
|
|
1135
1234
|
|
|
1136
1235
|
export interface InvalidFilterCriteriaException$instance extends ApplicationException {
|
|
1236
|
+
readonly __tsonic_type_System_Reflection_InvalidFilterCriteriaException: never;
|
|
1237
|
+
|
|
1238
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1239
|
+
|
|
1137
1240
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1138
1241
|
}
|
|
1139
1242
|
|
|
@@ -1153,6 +1256,8 @@ export type InvalidFilterCriteriaException = InvalidFilterCriteriaException$inst
|
|
|
1153
1256
|
|
|
1154
1257
|
|
|
1155
1258
|
export interface LocalVariableInfo$instance {
|
|
1259
|
+
readonly __tsonic_type_System_Reflection_LocalVariableInfo: never;
|
|
1260
|
+
|
|
1156
1261
|
readonly IsPinned: boolean;
|
|
1157
1262
|
readonly LocalIndex: int;
|
|
1158
1263
|
readonly LocalType: Type;
|
|
@@ -1167,6 +1272,8 @@ export const LocalVariableInfo: (abstract new() => LocalVariableInfo) & {
|
|
|
1167
1272
|
export type LocalVariableInfo = LocalVariableInfo$instance;
|
|
1168
1273
|
|
|
1169
1274
|
export interface ManifestResourceInfo$instance {
|
|
1275
|
+
readonly __tsonic_type_System_Reflection_ManifestResourceInfo: never;
|
|
1276
|
+
|
|
1170
1277
|
readonly FileName: string | undefined;
|
|
1171
1278
|
readonly ReferencedAssembly: Assembly | undefined;
|
|
1172
1279
|
readonly ResourceLocation: ResourceLocation;
|
|
@@ -1180,7 +1287,11 @@ export const ManifestResourceInfo: {
|
|
|
1180
1287
|
|
|
1181
1288
|
export type ManifestResourceInfo = ManifestResourceInfo$instance;
|
|
1182
1289
|
|
|
1183
|
-
export interface MemberInfo$instance {
|
|
1290
|
+
export interface MemberInfo$instance extends ICustomAttributeProvider$instance {
|
|
1291
|
+
readonly __tsonic_type_System_Reflection_MemberInfo: never;
|
|
1292
|
+
|
|
1293
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1294
|
+
|
|
1184
1295
|
readonly CustomAttributes: IEnumerable_1<CustomAttributeData>;
|
|
1185
1296
|
readonly DeclaringType: Type | undefined;
|
|
1186
1297
|
readonly IsCollectible: boolean;
|
|
@@ -1207,12 +1318,14 @@ export interface __MemberInfo$views {
|
|
|
1207
1318
|
As_ICustomAttributeProvider(): ICustomAttributeProvider$instance;
|
|
1208
1319
|
}
|
|
1209
1320
|
|
|
1210
|
-
export interface MemberInfo$instance extends ICustomAttributeProvider$instance {}
|
|
1211
|
-
|
|
1212
1321
|
export type MemberInfo = MemberInfo$instance & __MemberInfo$views;
|
|
1213
1322
|
|
|
1214
1323
|
|
|
1215
1324
|
export interface MethodBase$instance extends MemberInfo$instance {
|
|
1325
|
+
readonly __tsonic_type_System_Reflection_MethodBase: never;
|
|
1326
|
+
|
|
1327
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1328
|
+
|
|
1216
1329
|
readonly Attributes: MethodAttributes;
|
|
1217
1330
|
readonly CallingConvention: CallingConventions;
|
|
1218
1331
|
readonly ContainsGenericParameters: boolean;
|
|
@@ -1266,6 +1379,8 @@ export type MethodBase = MethodBase$instance & __MethodBase$views;
|
|
|
1266
1379
|
|
|
1267
1380
|
|
|
1268
1381
|
export interface MethodBody$instance {
|
|
1382
|
+
readonly __tsonic_type_System_Reflection_MethodBody: never;
|
|
1383
|
+
|
|
1269
1384
|
readonly ExceptionHandlingClauses: IList_1<ExceptionHandlingClause>;
|
|
1270
1385
|
readonly InitLocals: boolean;
|
|
1271
1386
|
readonly LocalSignatureMetadataToken: int;
|
|
@@ -1282,6 +1397,10 @@ export const MethodBody: (abstract new() => MethodBody) & {
|
|
|
1282
1397
|
export type MethodBody = MethodBody$instance;
|
|
1283
1398
|
|
|
1284
1399
|
export interface MethodInfo$instance extends MethodBase$instance {
|
|
1400
|
+
readonly __tsonic_type_System_Reflection_MethodInfo: never;
|
|
1401
|
+
|
|
1402
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1403
|
+
|
|
1285
1404
|
readonly MemberType: MemberTypes;
|
|
1286
1405
|
readonly ReturnParameter: ParameterInfo;
|
|
1287
1406
|
readonly ReturnType: Type;
|
|
@@ -1314,6 +1433,8 @@ export type MethodInfo = MethodInfo$instance & __MethodInfo$views;
|
|
|
1314
1433
|
|
|
1315
1434
|
|
|
1316
1435
|
export interface MethodInvoker$instance {
|
|
1436
|
+
readonly __tsonic_type_System_Reflection_MethodInvoker: never;
|
|
1437
|
+
|
|
1317
1438
|
Invoke(obj: unknown): unknown | undefined;
|
|
1318
1439
|
Invoke(obj: unknown, arg1: unknown): unknown | undefined;
|
|
1319
1440
|
Invoke(obj: unknown, arg1: unknown, arg2: unknown): unknown | undefined;
|
|
@@ -1330,7 +1451,11 @@ export const MethodInvoker: {
|
|
|
1330
1451
|
|
|
1331
1452
|
export type MethodInvoker = MethodInvoker$instance;
|
|
1332
1453
|
|
|
1333
|
-
export interface Missing$instance {
|
|
1454
|
+
export interface Missing$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1455
|
+
readonly __tsonic_type_System_Reflection_Missing: never;
|
|
1456
|
+
|
|
1457
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1458
|
+
|
|
1334
1459
|
}
|
|
1335
1460
|
|
|
1336
1461
|
|
|
@@ -1343,12 +1468,15 @@ export interface __Missing$views {
|
|
|
1343
1468
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1344
1469
|
}
|
|
1345
1470
|
|
|
1346
|
-
export interface Missing$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1347
|
-
|
|
1348
1471
|
export type Missing = Missing$instance & __Missing$views;
|
|
1349
1472
|
|
|
1350
1473
|
|
|
1351
|
-
export interface Module$instance {
|
|
1474
|
+
export interface Module$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1475
|
+
readonly __tsonic_type_System_Reflection_Module: never;
|
|
1476
|
+
|
|
1477
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1478
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1479
|
+
|
|
1352
1480
|
readonly Assembly: Assembly;
|
|
1353
1481
|
readonly CustomAttributes: IEnumerable_1<CustomAttributeData>;
|
|
1354
1482
|
readonly FullyQualifiedName: string;
|
|
@@ -1407,12 +1535,12 @@ export interface __Module$views {
|
|
|
1407
1535
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1408
1536
|
}
|
|
1409
1537
|
|
|
1410
|
-
export interface Module$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1411
|
-
|
|
1412
1538
|
export type Module = Module$instance & __Module$views;
|
|
1413
1539
|
|
|
1414
1540
|
|
|
1415
1541
|
export interface NullabilityInfo$instance {
|
|
1542
|
+
readonly __tsonic_type_System_Reflection_NullabilityInfo: never;
|
|
1543
|
+
|
|
1416
1544
|
readonly ElementType: NullabilityInfo | undefined;
|
|
1417
1545
|
readonly GenericTypeArguments: NullabilityInfo[];
|
|
1418
1546
|
ReadState: NullabilityState;
|
|
@@ -1428,6 +1556,8 @@ export const NullabilityInfo: {
|
|
|
1428
1556
|
export type NullabilityInfo = NullabilityInfo$instance;
|
|
1429
1557
|
|
|
1430
1558
|
export interface NullabilityInfoContext$instance {
|
|
1559
|
+
readonly __tsonic_type_System_Reflection_NullabilityInfoContext: never;
|
|
1560
|
+
|
|
1431
1561
|
Create(parameterInfo: ParameterInfo): NullabilityInfo;
|
|
1432
1562
|
Create(propertyInfo: PropertyInfo): NullabilityInfo;
|
|
1433
1563
|
Create(eventInfo: EventInfo): NullabilityInfo;
|
|
@@ -1443,6 +1573,8 @@ export const NullabilityInfoContext: {
|
|
|
1443
1573
|
export type NullabilityInfoContext = NullabilityInfoContext$instance;
|
|
1444
1574
|
|
|
1445
1575
|
export interface ObfuscateAssemblyAttribute$instance extends Attribute {
|
|
1576
|
+
readonly __tsonic_type_System_Reflection_ObfuscateAssemblyAttribute: never;
|
|
1577
|
+
|
|
1446
1578
|
readonly AssemblyIsPrivate: boolean;
|
|
1447
1579
|
StripAfterObfuscation: boolean;
|
|
1448
1580
|
}
|
|
@@ -1456,6 +1588,8 @@ export const ObfuscateAssemblyAttribute: {
|
|
|
1456
1588
|
export type ObfuscateAssemblyAttribute = ObfuscateAssemblyAttribute$instance;
|
|
1457
1589
|
|
|
1458
1590
|
export interface ObfuscationAttribute$instance extends Attribute {
|
|
1591
|
+
readonly __tsonic_type_System_Reflection_ObfuscationAttribute: never;
|
|
1592
|
+
|
|
1459
1593
|
ApplyToMembers: boolean;
|
|
1460
1594
|
Exclude: boolean;
|
|
1461
1595
|
get Feature(): string | undefined;
|
|
@@ -1471,7 +1605,12 @@ export const ObfuscationAttribute: {
|
|
|
1471
1605
|
|
|
1472
1606
|
export type ObfuscationAttribute = ObfuscationAttribute$instance;
|
|
1473
1607
|
|
|
1474
|
-
export interface ParameterInfo$instance {
|
|
1608
|
+
export interface ParameterInfo$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.IObjectReference$instance {
|
|
1609
|
+
readonly __tsonic_type_System_Reflection_ParameterInfo: never;
|
|
1610
|
+
|
|
1611
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1612
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IObjectReference: never;
|
|
1613
|
+
|
|
1475
1614
|
readonly Attributes: ParameterAttributes;
|
|
1476
1615
|
readonly CustomAttributes: IEnumerable_1<CustomAttributeData>;
|
|
1477
1616
|
readonly DefaultValue: unknown | undefined;
|
|
@@ -1508,12 +1647,14 @@ export interface __ParameterInfo$views {
|
|
|
1508
1647
|
As_IObjectReference(): System_Runtime_Serialization_Internal.IObjectReference$instance;
|
|
1509
1648
|
}
|
|
1510
1649
|
|
|
1511
|
-
export interface ParameterInfo$instance extends ICustomAttributeProvider$instance, System_Runtime_Serialization_Internal.IObjectReference$instance {}
|
|
1512
|
-
|
|
1513
1650
|
export type ParameterInfo = ParameterInfo$instance & __ParameterInfo$views;
|
|
1514
1651
|
|
|
1515
1652
|
|
|
1516
|
-
export interface Pointer$instance {
|
|
1653
|
+
export interface Pointer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1654
|
+
readonly __tsonic_type_System_Reflection_Pointer: never;
|
|
1655
|
+
|
|
1656
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1657
|
+
|
|
1517
1658
|
Equals(obj: unknown): boolean;
|
|
1518
1659
|
GetHashCode(): int;
|
|
1519
1660
|
}
|
|
@@ -1529,12 +1670,14 @@ export interface __Pointer$views {
|
|
|
1529
1670
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1530
1671
|
}
|
|
1531
1672
|
|
|
1532
|
-
export interface Pointer$instance extends System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1533
|
-
|
|
1534
1673
|
export type Pointer = Pointer$instance & __Pointer$views;
|
|
1535
1674
|
|
|
1536
1675
|
|
|
1537
1676
|
export interface PropertyInfo$instance extends MemberInfo$instance {
|
|
1677
|
+
readonly __tsonic_type_System_Reflection_PropertyInfo: never;
|
|
1678
|
+
|
|
1679
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1680
|
+
|
|
1538
1681
|
readonly Attributes: PropertyAttributes;
|
|
1539
1682
|
readonly CanRead: boolean;
|
|
1540
1683
|
readonly CanWrite: boolean;
|
|
@@ -1581,6 +1724,8 @@ export type PropertyInfo = PropertyInfo$instance & __PropertyInfo$views;
|
|
|
1581
1724
|
|
|
1582
1725
|
|
|
1583
1726
|
export interface ReflectionContext$instance {
|
|
1727
|
+
readonly __tsonic_type_System_Reflection_ReflectionContext: never;
|
|
1728
|
+
|
|
1584
1729
|
GetTypeForObject(value: unknown): TypeInfo;
|
|
1585
1730
|
MapAssembly(assembly: Assembly): Assembly;
|
|
1586
1731
|
MapType(type: TypeInfo): TypeInfo;
|
|
@@ -1594,6 +1739,10 @@ export const ReflectionContext: (abstract new() => ReflectionContext) & {
|
|
|
1594
1739
|
export type ReflectionContext = ReflectionContext$instance;
|
|
1595
1740
|
|
|
1596
1741
|
export interface ReflectionTypeLoadException$instance extends SystemException {
|
|
1742
|
+
readonly __tsonic_type_System_Reflection_ReflectionTypeLoadException: never;
|
|
1743
|
+
|
|
1744
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1745
|
+
|
|
1597
1746
|
readonly LoaderExceptions: (Exception | undefined)[];
|
|
1598
1747
|
readonly Message: string;
|
|
1599
1748
|
readonly Types: (Type | undefined)[];
|
|
@@ -1615,7 +1764,12 @@ export interface __ReflectionTypeLoadException$views {
|
|
|
1615
1764
|
export type ReflectionTypeLoadException = ReflectionTypeLoadException$instance & __ReflectionTypeLoadException$views;
|
|
1616
1765
|
|
|
1617
1766
|
|
|
1618
|
-
export interface StrongNameKeyPair$instance {
|
|
1767
|
+
export interface StrongNameKeyPair$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
1768
|
+
readonly __tsonic_type_System_Reflection_StrongNameKeyPair: never;
|
|
1769
|
+
|
|
1770
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
1771
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1772
|
+
|
|
1619
1773
|
readonly PublicKey: byte[];
|
|
1620
1774
|
}
|
|
1621
1775
|
|
|
@@ -1632,12 +1786,14 @@ export interface __StrongNameKeyPair$views {
|
|
|
1632
1786
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
1633
1787
|
}
|
|
1634
1788
|
|
|
1635
|
-
export interface StrongNameKeyPair$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
1636
|
-
|
|
1637
1789
|
export type StrongNameKeyPair = StrongNameKeyPair$instance & __StrongNameKeyPair$views;
|
|
1638
1790
|
|
|
1639
1791
|
|
|
1640
1792
|
export interface TargetException$instance extends ApplicationException {
|
|
1793
|
+
readonly __tsonic_type_System_Reflection_TargetException: never;
|
|
1794
|
+
|
|
1795
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1796
|
+
|
|
1641
1797
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1642
1798
|
}
|
|
1643
1799
|
|
|
@@ -1657,6 +1813,10 @@ export type TargetException = TargetException$instance & __TargetException$views
|
|
|
1657
1813
|
|
|
1658
1814
|
|
|
1659
1815
|
export interface TargetInvocationException$instance extends ApplicationException {
|
|
1816
|
+
readonly __tsonic_type_System_Reflection_TargetInvocationException: never;
|
|
1817
|
+
|
|
1818
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1819
|
+
|
|
1660
1820
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1661
1821
|
}
|
|
1662
1822
|
|
|
@@ -1675,6 +1835,10 @@ export type TargetInvocationException = TargetInvocationException$instance & __T
|
|
|
1675
1835
|
|
|
1676
1836
|
|
|
1677
1837
|
export interface TargetParameterCountException$instance extends ApplicationException {
|
|
1838
|
+
readonly __tsonic_type_System_Reflection_TargetParameterCountException: never;
|
|
1839
|
+
|
|
1840
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1841
|
+
|
|
1678
1842
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
1679
1843
|
}
|
|
1680
1844
|
|
|
@@ -1693,7 +1857,13 @@ export interface __TargetParameterCountException$views {
|
|
|
1693
1857
|
export type TargetParameterCountException = TargetParameterCountException$instance & __TargetParameterCountException$views;
|
|
1694
1858
|
|
|
1695
1859
|
|
|
1696
|
-
export interface TypeDelegator$instance extends TypeInfo$instance {
|
|
1860
|
+
export interface TypeDelegator$instance extends TypeInfo$instance, IReflectableType$instance {
|
|
1861
|
+
readonly __tsonic_type_System_Reflection_TypeDelegator: never;
|
|
1862
|
+
|
|
1863
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1864
|
+
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
1865
|
+
readonly __tsonic_iface_System_Reflection_IReflectableType: never;
|
|
1866
|
+
|
|
1697
1867
|
readonly Assembly: Assembly;
|
|
1698
1868
|
readonly AssemblyQualifiedName: string | undefined;
|
|
1699
1869
|
readonly BaseType: Type | undefined;
|
|
@@ -1802,12 +1972,16 @@ export interface __TypeDelegator$views {
|
|
|
1802
1972
|
As_IReflectableType(): IReflectableType$instance;
|
|
1803
1973
|
}
|
|
1804
1974
|
|
|
1805
|
-
export interface TypeDelegator$instance extends IReflectableType$instance {}
|
|
1806
|
-
|
|
1807
1975
|
export type TypeDelegator = TypeDelegator$instance & __TypeDelegator$views;
|
|
1808
1976
|
|
|
1809
1977
|
|
|
1810
|
-
export interface TypeInfo$instance extends Type {
|
|
1978
|
+
export interface TypeInfo$instance extends Type, IReflectableType$instance {
|
|
1979
|
+
readonly __tsonic_type_System_Reflection_TypeInfo: never;
|
|
1980
|
+
|
|
1981
|
+
readonly __tsonic_iface_System_Reflection_ICustomAttributeProvider: never;
|
|
1982
|
+
readonly __tsonic_iface_System_Reflection_IReflect: never;
|
|
1983
|
+
readonly __tsonic_iface_System_Reflection_IReflectableType: never;
|
|
1984
|
+
|
|
1811
1985
|
readonly DeclaredConstructors: IEnumerable_1<ConstructorInfo>;
|
|
1812
1986
|
readonly DeclaredEvents: IEnumerable_1<EventInfo>;
|
|
1813
1987
|
readonly DeclaredFields: IEnumerable_1<FieldInfo>;
|
|
@@ -1876,8 +2050,6 @@ export interface __TypeInfo$views {
|
|
|
1876
2050
|
As_IReflectableType(): IReflectableType$instance;
|
|
1877
2051
|
}
|
|
1878
2052
|
|
|
1879
|
-
export interface TypeInfo$instance extends IReflectableType$instance {}
|
|
1880
|
-
|
|
1881
2053
|
export type TypeInfo = TypeInfo$instance & __TypeInfo$views;
|
|
1882
2054
|
|
|
1883
2055
|
|