@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
|
@@ -253,6 +253,8 @@ export enum X509VerificationFlags {
|
|
|
253
253
|
|
|
254
254
|
|
|
255
255
|
export interface X509ChainStatus$instance {
|
|
256
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainStatus: never;
|
|
257
|
+
|
|
256
258
|
Status: X509ChainStatusFlags;
|
|
257
259
|
StatusInformation: string;
|
|
258
260
|
}
|
|
@@ -266,6 +268,8 @@ export const X509ChainStatus: {
|
|
|
266
268
|
export type X509ChainStatus = X509ChainStatus$instance;
|
|
267
269
|
|
|
268
270
|
export interface CertificateRequest$instance {
|
|
271
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_CertificateRequest: never;
|
|
272
|
+
|
|
269
273
|
readonly CertificateExtensions: Collection_1<X509Extension>;
|
|
270
274
|
readonly HashAlgorithm: HashAlgorithmName;
|
|
271
275
|
readonly OtherRequestAttributes: Collection_1<AsnEncodedData>;
|
|
@@ -306,6 +310,8 @@ export const CertificateRequest: {
|
|
|
306
310
|
export type CertificateRequest = CertificateRequest$instance;
|
|
307
311
|
|
|
308
312
|
export interface CertificateRevocationListBuilder$instance {
|
|
313
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_CertificateRevocationListBuilder: never;
|
|
314
|
+
|
|
309
315
|
AddEntry(certificate: X509Certificate2, revocationTime?: Nullable_1<DateTimeOffset>, reason?: Nullable_1<X509RevocationReason>): void;
|
|
310
316
|
AddEntry(serialNumber: byte[], revocationTime?: Nullable_1<DateTimeOffset>, reason?: Nullable_1<X509RevocationReason>): void;
|
|
311
317
|
AddEntry(serialNumber: ReadOnlySpan_1<System_Internal.Byte>, revocationTime?: Nullable_1<DateTimeOffset>, reason?: Nullable_1<X509RevocationReason>): void;
|
|
@@ -329,6 +335,8 @@ export const CertificateRevocationListBuilder: {
|
|
|
329
335
|
export type CertificateRevocationListBuilder = CertificateRevocationListBuilder$instance;
|
|
330
336
|
|
|
331
337
|
export interface Pkcs12LoaderLimits$instance {
|
|
338
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_Pkcs12LoaderLimits: never;
|
|
339
|
+
|
|
332
340
|
AllowDuplicateAttributes: boolean;
|
|
333
341
|
IgnoreEncryptedAuthSafes: boolean;
|
|
334
342
|
IgnorePrivateKeys: boolean;
|
|
@@ -357,6 +365,8 @@ export const Pkcs12LoaderLimits: {
|
|
|
357
365
|
export type Pkcs12LoaderLimits = Pkcs12LoaderLimits$instance;
|
|
358
366
|
|
|
359
367
|
export interface Pkcs12LoadLimitExceededException$instance extends CryptographicException {
|
|
368
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_Pkcs12LoadLimitExceededException: never;
|
|
369
|
+
|
|
360
370
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
361
371
|
|
|
362
372
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -376,6 +386,8 @@ export type Pkcs12LoadLimitExceededException = Pkcs12LoadLimitExceededException$
|
|
|
376
386
|
|
|
377
387
|
|
|
378
388
|
export interface PublicKey$instance {
|
|
389
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_PublicKey: never;
|
|
390
|
+
|
|
379
391
|
readonly EncodedKeyValue: AsnEncodedData;
|
|
380
392
|
readonly EncodedParameters: AsnEncodedData | undefined;
|
|
381
393
|
readonly Key: AsymmetricAlgorithm;
|
|
@@ -407,6 +419,8 @@ export const PublicKey: {
|
|
|
407
419
|
export type PublicKey = PublicKey$instance;
|
|
408
420
|
|
|
409
421
|
export interface SubjectAlternativeNameBuilder$instance {
|
|
422
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_SubjectAlternativeNameBuilder: never;
|
|
423
|
+
|
|
410
424
|
AddDnsName(dnsName: string): void;
|
|
411
425
|
AddEmailAddress(emailAddress: string): void;
|
|
412
426
|
AddIpAddress(ipAddress: IPAddress): void;
|
|
@@ -424,6 +438,8 @@ export const SubjectAlternativeNameBuilder: {
|
|
|
424
438
|
export type SubjectAlternativeNameBuilder = SubjectAlternativeNameBuilder$instance;
|
|
425
439
|
|
|
426
440
|
export interface X500DistinguishedName$instance extends AsnEncodedData {
|
|
441
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X500DistinguishedName: never;
|
|
442
|
+
|
|
427
443
|
readonly Name: string;
|
|
428
444
|
Decode(flag: X500DistinguishedNameFlags): string;
|
|
429
445
|
EnumerateRelativeDistinguishedNames(reversed?: boolean): IEnumerable_1<X500RelativeDistinguishedName>;
|
|
@@ -444,6 +460,8 @@ export const X500DistinguishedName: {
|
|
|
444
460
|
export type X500DistinguishedName = X500DistinguishedName$instance;
|
|
445
461
|
|
|
446
462
|
export interface X500DistinguishedNameBuilder$instance {
|
|
463
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X500DistinguishedNameBuilder: never;
|
|
464
|
+
|
|
447
465
|
Add(oidValue: string, value: string, stringEncodingType?: Nullable_1<UniversalTagNumber>): void;
|
|
448
466
|
Add(oid: Oid, value: string, stringEncodingType?: Nullable_1<UniversalTagNumber>): void;
|
|
449
467
|
AddCommonName(commonName: string): void;
|
|
@@ -466,6 +484,8 @@ export const X500DistinguishedNameBuilder: {
|
|
|
466
484
|
export type X500DistinguishedNameBuilder = X500DistinguishedNameBuilder$instance;
|
|
467
485
|
|
|
468
486
|
export interface X500RelativeDistinguishedName$instance {
|
|
487
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X500RelativeDistinguishedName: never;
|
|
488
|
+
|
|
469
489
|
readonly HasMultipleElements: boolean;
|
|
470
490
|
readonly RawData: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
471
491
|
GetSingleElementType(): Oid;
|
|
@@ -480,6 +500,8 @@ export const X500RelativeDistinguishedName: {
|
|
|
480
500
|
export type X500RelativeDistinguishedName = X500RelativeDistinguishedName$instance;
|
|
481
501
|
|
|
482
502
|
export interface X509AuthorityInformationAccessExtension$instance extends X509Extension {
|
|
503
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509AuthorityInformationAccessExtension: never;
|
|
504
|
+
|
|
483
505
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
484
506
|
EnumerateCAIssuersUris(): IEnumerable_1<System_Internal.String>;
|
|
485
507
|
EnumerateOcspUris(): IEnumerable_1<System_Internal.String>;
|
|
@@ -499,6 +521,8 @@ export const X509AuthorityInformationAccessExtension: {
|
|
|
499
521
|
export type X509AuthorityInformationAccessExtension = X509AuthorityInformationAccessExtension$instance;
|
|
500
522
|
|
|
501
523
|
export interface X509AuthorityKeyIdentifierExtension$instance extends X509Extension {
|
|
524
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509AuthorityKeyIdentifierExtension: never;
|
|
525
|
+
|
|
502
526
|
readonly KeyIdentifier: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
503
527
|
readonly NamedIssuer: X500DistinguishedName | undefined;
|
|
504
528
|
readonly RawIssuer: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
@@ -525,6 +549,8 @@ export const X509AuthorityKeyIdentifierExtension: {
|
|
|
525
549
|
export type X509AuthorityKeyIdentifierExtension = X509AuthorityKeyIdentifierExtension$instance;
|
|
526
550
|
|
|
527
551
|
export interface X509BasicConstraintsExtension$instance extends X509Extension {
|
|
552
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509BasicConstraintsExtension: never;
|
|
553
|
+
|
|
528
554
|
readonly CertificateAuthority: boolean;
|
|
529
555
|
readonly HasPathLengthConstraint: boolean;
|
|
530
556
|
readonly PathLengthConstraint: int;
|
|
@@ -543,7 +569,9 @@ export const X509BasicConstraintsExtension: {
|
|
|
543
569
|
|
|
544
570
|
export type X509BasicConstraintsExtension = X509BasicConstraintsExtension$instance;
|
|
545
571
|
|
|
546
|
-
export interface X509Certificate$instance {
|
|
572
|
+
export interface X509Certificate$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
573
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Certificate: never;
|
|
574
|
+
|
|
547
575
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
548
576
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
549
577
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -620,12 +648,12 @@ export interface __X509Certificate$views {
|
|
|
620
648
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
621
649
|
}
|
|
622
650
|
|
|
623
|
-
export interface X509Certificate$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
624
|
-
|
|
625
651
|
export type X509Certificate = X509Certificate$instance & __X509Certificate$views;
|
|
626
652
|
|
|
627
653
|
|
|
628
|
-
export interface X509Certificate2$instance extends X509Certificate$instance {
|
|
654
|
+
export interface X509Certificate2$instance extends X509Certificate$instance, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {
|
|
655
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Certificate2: never;
|
|
656
|
+
|
|
629
657
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
630
658
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
631
659
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -717,12 +745,12 @@ export interface __X509Certificate2$views {
|
|
|
717
745
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
718
746
|
}
|
|
719
747
|
|
|
720
|
-
export interface X509Certificate2$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
721
|
-
|
|
722
748
|
export type X509Certificate2 = X509Certificate2$instance & __X509Certificate2$views;
|
|
723
749
|
|
|
724
750
|
|
|
725
751
|
export interface X509Certificate2Collection$instance extends X509CertificateCollection$instance {
|
|
752
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Certificate2Collection: never;
|
|
753
|
+
|
|
726
754
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
727
755
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
728
756
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -792,6 +820,8 @@ export type X509Certificate2Collection = X509Certificate2Collection$instance & _
|
|
|
792
820
|
|
|
793
821
|
|
|
794
822
|
export interface X509Certificate2Enumerator$instance {
|
|
823
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Certificate2Enumerator: never;
|
|
824
|
+
|
|
795
825
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
796
826
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
797
827
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -816,6 +846,8 @@ export type X509Certificate2Enumerator = X509Certificate2Enumerator$instance & _
|
|
|
816
846
|
|
|
817
847
|
|
|
818
848
|
export interface X509CertificateCollection$instance extends CollectionBase {
|
|
849
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509CertificateCollection: never;
|
|
850
|
+
|
|
819
851
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
820
852
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
821
853
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -854,6 +886,8 @@ export type X509CertificateCollection = X509CertificateCollection$instance & __X
|
|
|
854
886
|
|
|
855
887
|
|
|
856
888
|
export interface X509CertificateCollection_X509CertificateEnumerator$instance {
|
|
889
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509CertificateCollection_X509CertificateEnumerator: never;
|
|
890
|
+
|
|
857
891
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
858
892
|
|
|
859
893
|
readonly Current: X509Certificate;
|
|
@@ -875,6 +909,8 @@ export type X509CertificateCollection_X509CertificateEnumerator = X509Certificat
|
|
|
875
909
|
|
|
876
910
|
|
|
877
911
|
export interface X509Chain$instance {
|
|
912
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Chain: never;
|
|
913
|
+
|
|
878
914
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
879
915
|
|
|
880
916
|
readonly ChainContext: nint;
|
|
@@ -905,6 +941,8 @@ export type X509Chain = X509Chain$instance & __X509Chain$views;
|
|
|
905
941
|
|
|
906
942
|
|
|
907
943
|
export interface X509ChainElement$instance {
|
|
944
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainElement: never;
|
|
945
|
+
|
|
908
946
|
readonly Certificate: X509Certificate2;
|
|
909
947
|
readonly ChainElementStatus: X509ChainStatus[];
|
|
910
948
|
readonly Information: string;
|
|
@@ -918,6 +956,8 @@ export const X509ChainElement: {
|
|
|
918
956
|
export type X509ChainElement = X509ChainElement$instance;
|
|
919
957
|
|
|
920
958
|
export interface X509ChainElementCollection$instance {
|
|
959
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainElementCollection: never;
|
|
960
|
+
|
|
921
961
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
922
962
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
923
963
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -945,6 +985,8 @@ export type X509ChainElementCollection = X509ChainElementCollection$instance & _
|
|
|
945
985
|
|
|
946
986
|
|
|
947
987
|
export interface X509ChainElementEnumerator$instance {
|
|
988
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainElementEnumerator: never;
|
|
989
|
+
|
|
948
990
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
949
991
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
950
992
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -969,6 +1011,8 @@ export type X509ChainElementEnumerator = X509ChainElementEnumerator$instance & _
|
|
|
969
1011
|
|
|
970
1012
|
|
|
971
1013
|
export interface X509ChainPolicy$instance {
|
|
1014
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainPolicy: never;
|
|
1015
|
+
|
|
972
1016
|
readonly ApplicationPolicy: OidCollection;
|
|
973
1017
|
readonly CertificatePolicy: OidCollection;
|
|
974
1018
|
readonly CustomTrustStore: X509Certificate2Collection;
|
|
@@ -994,6 +1038,8 @@ export const X509ChainPolicy: {
|
|
|
994
1038
|
export type X509ChainPolicy = X509ChainPolicy$instance;
|
|
995
1039
|
|
|
996
1040
|
export interface X509EnhancedKeyUsageExtension$instance extends X509Extension {
|
|
1041
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509EnhancedKeyUsageExtension: never;
|
|
1042
|
+
|
|
997
1043
|
readonly EnhancedKeyUsages: OidCollection;
|
|
998
1044
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
999
1045
|
}
|
|
@@ -1009,6 +1055,8 @@ export const X509EnhancedKeyUsageExtension: {
|
|
|
1009
1055
|
export type X509EnhancedKeyUsageExtension = X509EnhancedKeyUsageExtension$instance;
|
|
1010
1056
|
|
|
1011
1057
|
export interface X509Extension$instance extends AsnEncodedData {
|
|
1058
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Extension: never;
|
|
1059
|
+
|
|
1012
1060
|
Critical: boolean;
|
|
1013
1061
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
1014
1062
|
}
|
|
@@ -1026,6 +1074,8 @@ export const X509Extension: {
|
|
|
1026
1074
|
export type X509Extension = X509Extension$instance;
|
|
1027
1075
|
|
|
1028
1076
|
export interface X509ExtensionCollection$instance {
|
|
1077
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ExtensionCollection: never;
|
|
1078
|
+
|
|
1029
1079
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1030
1080
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1031
1081
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -1056,6 +1106,8 @@ export type X509ExtensionCollection = X509ExtensionCollection$instance & __X509E
|
|
|
1056
1106
|
|
|
1057
1107
|
|
|
1058
1108
|
export interface X509ExtensionEnumerator$instance {
|
|
1109
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ExtensionEnumerator: never;
|
|
1110
|
+
|
|
1059
1111
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1060
1112
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1061
1113
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -1080,6 +1132,8 @@ export type X509ExtensionEnumerator = X509ExtensionEnumerator$instance & __X509E
|
|
|
1080
1132
|
|
|
1081
1133
|
|
|
1082
1134
|
export interface X509KeyUsageExtension$instance extends X509Extension {
|
|
1135
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509KeyUsageExtension: never;
|
|
1136
|
+
|
|
1083
1137
|
readonly KeyUsages: X509KeyUsageFlags;
|
|
1084
1138
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
1085
1139
|
}
|
|
@@ -1095,6 +1149,8 @@ export const X509KeyUsageExtension: {
|
|
|
1095
1149
|
export type X509KeyUsageExtension = X509KeyUsageExtension$instance;
|
|
1096
1150
|
|
|
1097
1151
|
export interface X509SignatureGenerator$instance {
|
|
1152
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509SignatureGenerator: never;
|
|
1153
|
+
|
|
1098
1154
|
readonly PublicKey: PublicKey;
|
|
1099
1155
|
BuildPublicKey(): PublicKey;
|
|
1100
1156
|
GetSignatureAlgorithmIdentifier(hashAlgorithm: HashAlgorithmName): byte[];
|
|
@@ -1113,7 +1169,9 @@ export const X509SignatureGenerator: (abstract new() => X509SignatureGenerator)
|
|
|
1113
1169
|
|
|
1114
1170
|
export type X509SignatureGenerator = X509SignatureGenerator$instance;
|
|
1115
1171
|
|
|
1116
|
-
export interface X509Store$instance {
|
|
1172
|
+
export interface X509Store$instance extends System_Internal.IDisposable$instance {
|
|
1173
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Store: never;
|
|
1174
|
+
|
|
1117
1175
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1118
1176
|
|
|
1119
1177
|
readonly Certificates: X509Certificate2Collection;
|
|
@@ -1148,12 +1206,12 @@ export interface __X509Store$views {
|
|
|
1148
1206
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1149
1207
|
}
|
|
1150
1208
|
|
|
1151
|
-
export interface X509Store$instance extends System_Internal.IDisposable$instance {}
|
|
1152
|
-
|
|
1153
1209
|
export type X509Store = X509Store$instance & __X509Store$views;
|
|
1154
1210
|
|
|
1155
1211
|
|
|
1156
1212
|
export interface X509SubjectAlternativeNameExtension$instance extends X509Extension {
|
|
1213
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509SubjectAlternativeNameExtension: never;
|
|
1214
|
+
|
|
1157
1215
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
1158
1216
|
EnumerateDnsNames(): IEnumerable_1<System_Internal.String>;
|
|
1159
1217
|
EnumerateIPAddresses(): IEnumerable_1<IPAddress>;
|
|
@@ -1170,6 +1228,8 @@ export const X509SubjectAlternativeNameExtension: {
|
|
|
1170
1228
|
export type X509SubjectAlternativeNameExtension = X509SubjectAlternativeNameExtension$instance;
|
|
1171
1229
|
|
|
1172
1230
|
export interface X509SubjectKeyIdentifierExtension$instance extends X509Extension {
|
|
1231
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509SubjectKeyIdentifierExtension: never;
|
|
1232
|
+
|
|
1173
1233
|
readonly SubjectKeyIdentifier: string | undefined;
|
|
1174
1234
|
readonly SubjectKeyIdentifierBytes: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
1175
1235
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
@@ -50,6 +50,8 @@ export enum SecurityPermissionFlag {
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
export interface CodeAccessSecurityAttribute$instance extends SecurityAttribute {
|
|
53
|
+
readonly __tsonic_type_System_Security_Permissions_CodeAccessSecurityAttribute: never;
|
|
54
|
+
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
|
|
@@ -60,6 +62,8 @@ export const CodeAccessSecurityAttribute: (abstract new(action: SecurityAction)
|
|
|
60
62
|
export type CodeAccessSecurityAttribute = CodeAccessSecurityAttribute$instance;
|
|
61
63
|
|
|
62
64
|
export interface SecurityAttribute$instance extends Attribute {
|
|
65
|
+
readonly __tsonic_type_System_Security_Permissions_SecurityAttribute: never;
|
|
66
|
+
|
|
63
67
|
Action: SecurityAction;
|
|
64
68
|
Unrestricted: boolean;
|
|
65
69
|
CreatePermission(): IPermission | undefined;
|
|
@@ -73,6 +77,8 @@ export const SecurityAttribute: (abstract new(action: SecurityAction) => Securit
|
|
|
73
77
|
export type SecurityAttribute = SecurityAttribute$instance;
|
|
74
78
|
|
|
75
79
|
export interface SecurityPermissionAttribute$instance extends CodeAccessSecurityAttribute {
|
|
80
|
+
readonly __tsonic_type_System_Security_Permissions_SecurityPermissionAttribute: never;
|
|
81
|
+
|
|
76
82
|
Assertion: boolean;
|
|
77
83
|
BindingRedirects: boolean;
|
|
78
84
|
ControlAppDomain: boolean;
|
|
@@ -12,6 +12,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
12
12
|
import type { Array as ClrArray, Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface Evidence$instance {
|
|
15
|
+
readonly __tsonic_type_System_Security_Policy_Evidence: never;
|
|
16
|
+
|
|
15
17
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
16
18
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
17
19
|
|
|
@@ -54,6 +56,8 @@ export type Evidence = Evidence$instance & __Evidence$views;
|
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
export interface EvidenceBase$instance {
|
|
59
|
+
readonly __tsonic_type_System_Security_Policy_EvidenceBase: never;
|
|
60
|
+
|
|
57
61
|
Clone(): EvidenceBase | undefined;
|
|
58
62
|
}
|
|
59
63
|
|
|
@@ -197,6 +197,8 @@ export interface IPrincipal$instance {
|
|
|
197
197
|
export type IPrincipal = IPrincipal$instance;
|
|
198
198
|
|
|
199
199
|
export interface GenericIdentity$instance extends ClaimsIdentity {
|
|
200
|
+
readonly __tsonic_type_System_Security_Principal_GenericIdentity: never;
|
|
201
|
+
|
|
200
202
|
readonly __tsonic_iface_System_Security_Principal_IIdentity: never;
|
|
201
203
|
|
|
202
204
|
readonly AuthenticationType: string | string | undefined;
|
|
@@ -221,6 +223,8 @@ export type GenericIdentity = GenericIdentity$instance & __GenericIdentity$views
|
|
|
221
223
|
|
|
222
224
|
|
|
223
225
|
export interface GenericPrincipal$instance extends ClaimsPrincipal {
|
|
226
|
+
readonly __tsonic_type_System_Security_Principal_GenericPrincipal: never;
|
|
227
|
+
|
|
224
228
|
readonly __tsonic_iface_System_Security_Principal_IPrincipal: never;
|
|
225
229
|
|
|
226
230
|
readonly Identity: IIdentity | IIdentity | undefined;
|
|
@@ -241,6 +245,8 @@ export type GenericPrincipal = GenericPrincipal$instance & __GenericPrincipal$vi
|
|
|
241
245
|
|
|
242
246
|
|
|
243
247
|
export interface IdentityNotMappedException$instance extends SystemException {
|
|
248
|
+
readonly __tsonic_type_System_Security_Principal_IdentityNotMappedException: never;
|
|
249
|
+
|
|
244
250
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
245
251
|
|
|
246
252
|
readonly UnmappedIdentities: IdentityReferenceCollection;
|
|
@@ -263,6 +269,8 @@ export type IdentityNotMappedException = IdentityNotMappedException$instance & _
|
|
|
263
269
|
|
|
264
270
|
|
|
265
271
|
export interface IdentityReference$instance {
|
|
272
|
+
readonly __tsonic_type_System_Security_Principal_IdentityReference: never;
|
|
273
|
+
|
|
266
274
|
readonly Value: string;
|
|
267
275
|
Equals(o: unknown): boolean;
|
|
268
276
|
GetHashCode(): int;
|
|
@@ -279,6 +287,8 @@ export const IdentityReference: {
|
|
|
279
287
|
export type IdentityReference = IdentityReference$instance;
|
|
280
288
|
|
|
281
289
|
export interface IdentityReferenceCollection$instance {
|
|
290
|
+
readonly __tsonic_type_System_Security_Principal_IdentityReferenceCollection: never;
|
|
291
|
+
|
|
282
292
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
283
293
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
284
294
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -312,6 +322,8 @@ export type IdentityReferenceCollection = IdentityReferenceCollection$instance &
|
|
|
312
322
|
|
|
313
323
|
|
|
314
324
|
export interface NTAccount$instance extends IdentityReference {
|
|
325
|
+
readonly __tsonic_type_System_Security_Principal_NTAccount: never;
|
|
326
|
+
|
|
315
327
|
readonly Value: string;
|
|
316
328
|
Equals(o: unknown): boolean;
|
|
317
329
|
GetHashCode(): int;
|
|
@@ -330,6 +342,8 @@ export const NTAccount: {
|
|
|
330
342
|
export type NTAccount = NTAccount$instance;
|
|
331
343
|
|
|
332
344
|
export interface SecurityIdentifier$instance extends IdentityReference {
|
|
345
|
+
readonly __tsonic_type_System_Security_Principal_SecurityIdentifier: never;
|
|
346
|
+
|
|
333
347
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
334
348
|
|
|
335
349
|
readonly AccountDomainSid: SecurityIdentifier | undefined;
|
|
@@ -366,12 +380,12 @@ export interface __SecurityIdentifier$views {
|
|
|
366
380
|
CompareTo(obj: unknown): int;
|
|
367
381
|
}
|
|
368
382
|
|
|
369
|
-
export interface SecurityIdentifier$instance extends System_Internal.IComparable_1$instance<SecurityIdentifier> {}
|
|
370
|
-
|
|
371
383
|
export type SecurityIdentifier = SecurityIdentifier$instance & __SecurityIdentifier$views;
|
|
372
384
|
|
|
373
385
|
|
|
374
|
-
export interface WindowsIdentity$instance extends ClaimsIdentity {
|
|
386
|
+
export interface WindowsIdentity$instance extends ClaimsIdentity, System_Runtime_Serialization_Internal.IDeserializationCallback$instance {
|
|
387
|
+
readonly __tsonic_type_System_Security_Principal_WindowsIdentity: never;
|
|
388
|
+
|
|
375
389
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
376
390
|
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
377
391
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
@@ -425,12 +439,12 @@ export interface __WindowsIdentity$views {
|
|
|
425
439
|
As_IIdentity(): IIdentity$instance;
|
|
426
440
|
}
|
|
427
441
|
|
|
428
|
-
export interface WindowsIdentity$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance {}
|
|
429
|
-
|
|
430
442
|
export type WindowsIdentity = WindowsIdentity$instance & __WindowsIdentity$views;
|
|
431
443
|
|
|
432
444
|
|
|
433
445
|
export interface WindowsPrincipal$instance extends ClaimsPrincipal {
|
|
446
|
+
readonly __tsonic_type_System_Security_Principal_WindowsPrincipal: never;
|
|
447
|
+
|
|
434
448
|
readonly __tsonic_iface_System_Security_Principal_IPrincipal: never;
|
|
435
449
|
|
|
436
450
|
readonly DeviceClaims: IEnumerable_1<Claim>;
|