@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
|
@@ -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,10 @@ 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
|
+
|
|
370
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
371
|
+
|
|
360
372
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
361
373
|
}
|
|
362
374
|
|
|
@@ -374,6 +386,8 @@ export type Pkcs12LoadLimitExceededException = Pkcs12LoadLimitExceededException$
|
|
|
374
386
|
|
|
375
387
|
|
|
376
388
|
export interface PublicKey$instance {
|
|
389
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_PublicKey: never;
|
|
390
|
+
|
|
377
391
|
readonly EncodedKeyValue: AsnEncodedData;
|
|
378
392
|
readonly EncodedParameters: AsnEncodedData | undefined;
|
|
379
393
|
readonly Key: AsymmetricAlgorithm;
|
|
@@ -405,6 +419,8 @@ export const PublicKey: {
|
|
|
405
419
|
export type PublicKey = PublicKey$instance;
|
|
406
420
|
|
|
407
421
|
export interface SubjectAlternativeNameBuilder$instance {
|
|
422
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_SubjectAlternativeNameBuilder: never;
|
|
423
|
+
|
|
408
424
|
AddDnsName(dnsName: string): void;
|
|
409
425
|
AddEmailAddress(emailAddress: string): void;
|
|
410
426
|
AddIpAddress(ipAddress: IPAddress): void;
|
|
@@ -422,6 +438,8 @@ export const SubjectAlternativeNameBuilder: {
|
|
|
422
438
|
export type SubjectAlternativeNameBuilder = SubjectAlternativeNameBuilder$instance;
|
|
423
439
|
|
|
424
440
|
export interface X500DistinguishedName$instance extends AsnEncodedData {
|
|
441
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X500DistinguishedName: never;
|
|
442
|
+
|
|
425
443
|
readonly Name: string;
|
|
426
444
|
Decode(flag: X500DistinguishedNameFlags): string;
|
|
427
445
|
EnumerateRelativeDistinguishedNames(reversed?: boolean): IEnumerable_1<X500RelativeDistinguishedName>;
|
|
@@ -442,6 +460,8 @@ export const X500DistinguishedName: {
|
|
|
442
460
|
export type X500DistinguishedName = X500DistinguishedName$instance;
|
|
443
461
|
|
|
444
462
|
export interface X500DistinguishedNameBuilder$instance {
|
|
463
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X500DistinguishedNameBuilder: never;
|
|
464
|
+
|
|
445
465
|
Add(oidValue: string, value: string, stringEncodingType?: Nullable_1<UniversalTagNumber>): void;
|
|
446
466
|
Add(oid: Oid, value: string, stringEncodingType?: Nullable_1<UniversalTagNumber>): void;
|
|
447
467
|
AddCommonName(commonName: string): void;
|
|
@@ -464,6 +484,8 @@ export const X500DistinguishedNameBuilder: {
|
|
|
464
484
|
export type X500DistinguishedNameBuilder = X500DistinguishedNameBuilder$instance;
|
|
465
485
|
|
|
466
486
|
export interface X500RelativeDistinguishedName$instance {
|
|
487
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X500RelativeDistinguishedName: never;
|
|
488
|
+
|
|
467
489
|
readonly HasMultipleElements: boolean;
|
|
468
490
|
readonly RawData: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
469
491
|
GetSingleElementType(): Oid;
|
|
@@ -478,6 +500,8 @@ export const X500RelativeDistinguishedName: {
|
|
|
478
500
|
export type X500RelativeDistinguishedName = X500RelativeDistinguishedName$instance;
|
|
479
501
|
|
|
480
502
|
export interface X509AuthorityInformationAccessExtension$instance extends X509Extension {
|
|
503
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509AuthorityInformationAccessExtension: never;
|
|
504
|
+
|
|
481
505
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
482
506
|
EnumerateCAIssuersUris(): IEnumerable_1<System_Internal.String>;
|
|
483
507
|
EnumerateOcspUris(): IEnumerable_1<System_Internal.String>;
|
|
@@ -497,6 +521,8 @@ export const X509AuthorityInformationAccessExtension: {
|
|
|
497
521
|
export type X509AuthorityInformationAccessExtension = X509AuthorityInformationAccessExtension$instance;
|
|
498
522
|
|
|
499
523
|
export interface X509AuthorityKeyIdentifierExtension$instance extends X509Extension {
|
|
524
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509AuthorityKeyIdentifierExtension: never;
|
|
525
|
+
|
|
500
526
|
readonly KeyIdentifier: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
501
527
|
readonly NamedIssuer: X500DistinguishedName | undefined;
|
|
502
528
|
readonly RawIssuer: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
@@ -523,6 +549,8 @@ export const X509AuthorityKeyIdentifierExtension: {
|
|
|
523
549
|
export type X509AuthorityKeyIdentifierExtension = X509AuthorityKeyIdentifierExtension$instance;
|
|
524
550
|
|
|
525
551
|
export interface X509BasicConstraintsExtension$instance extends X509Extension {
|
|
552
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509BasicConstraintsExtension: never;
|
|
553
|
+
|
|
526
554
|
readonly CertificateAuthority: boolean;
|
|
527
555
|
readonly HasPathLengthConstraint: boolean;
|
|
528
556
|
readonly PathLengthConstraint: int;
|
|
@@ -541,7 +569,13 @@ export const X509BasicConstraintsExtension: {
|
|
|
541
569
|
|
|
542
570
|
export type X509BasicConstraintsExtension = X509BasicConstraintsExtension$instance;
|
|
543
571
|
|
|
544
|
-
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
|
+
|
|
575
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
576
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
577
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
578
|
+
|
|
545
579
|
readonly Handle: nint;
|
|
546
580
|
readonly Issuer: string;
|
|
547
581
|
readonly SerialNumberBytes: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
@@ -614,12 +648,16 @@ export interface __X509Certificate$views {
|
|
|
614
648
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
615
649
|
}
|
|
616
650
|
|
|
617
|
-
export interface X509Certificate$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
618
|
-
|
|
619
651
|
export type X509Certificate = X509Certificate$instance & __X509Certificate$views;
|
|
620
652
|
|
|
621
653
|
|
|
622
|
-
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
|
+
|
|
657
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
658
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
659
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
660
|
+
|
|
623
661
|
Archived: boolean;
|
|
624
662
|
readonly Extensions: X509ExtensionCollection;
|
|
625
663
|
FriendlyName: string;
|
|
@@ -707,12 +745,17 @@ export interface __X509Certificate2$views {
|
|
|
707
745
|
As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
|
|
708
746
|
}
|
|
709
747
|
|
|
710
|
-
export interface X509Certificate2$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
|
|
711
|
-
|
|
712
748
|
export type X509Certificate2 = X509Certificate2$instance & __X509Certificate2$views;
|
|
713
749
|
|
|
714
750
|
|
|
715
751
|
export interface X509Certificate2Collection$instance extends X509CertificateCollection$instance {
|
|
752
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Certificate2Collection: never;
|
|
753
|
+
|
|
754
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
755
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
756
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
757
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
758
|
+
|
|
716
759
|
Add(value: X509Certificate): int;
|
|
717
760
|
Add(value: unknown): int;
|
|
718
761
|
AddRange(certificates: X509Certificate2Collection): void;
|
|
@@ -777,6 +820,12 @@ export type X509Certificate2Collection = X509Certificate2Collection$instance & _
|
|
|
777
820
|
|
|
778
821
|
|
|
779
822
|
export interface X509Certificate2Enumerator$instance {
|
|
823
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Certificate2Enumerator: never;
|
|
824
|
+
|
|
825
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
826
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
827
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
828
|
+
|
|
780
829
|
readonly Current: X509Certificate2;
|
|
781
830
|
MoveNext(): boolean;
|
|
782
831
|
Reset(): void;
|
|
@@ -797,6 +846,12 @@ export type X509Certificate2Enumerator = X509Certificate2Enumerator$instance & _
|
|
|
797
846
|
|
|
798
847
|
|
|
799
848
|
export interface X509CertificateCollection$instance extends CollectionBase {
|
|
849
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509CertificateCollection: never;
|
|
850
|
+
|
|
851
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
852
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
853
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
854
|
+
|
|
800
855
|
[index: number]: X509Certificate | X509Certificate2;
|
|
801
856
|
Add(value: unknown): int;
|
|
802
857
|
AddRange(value: X509Certificate[]): void;
|
|
@@ -831,6 +886,10 @@ export type X509CertificateCollection = X509CertificateCollection$instance & __X
|
|
|
831
886
|
|
|
832
887
|
|
|
833
888
|
export interface X509CertificateCollection_X509CertificateEnumerator$instance {
|
|
889
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509CertificateCollection_X509CertificateEnumerator: never;
|
|
890
|
+
|
|
891
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
892
|
+
|
|
834
893
|
readonly Current: X509Certificate;
|
|
835
894
|
MoveNext(): boolean;
|
|
836
895
|
Reset(): void;
|
|
@@ -850,6 +909,10 @@ export type X509CertificateCollection_X509CertificateEnumerator = X509Certificat
|
|
|
850
909
|
|
|
851
910
|
|
|
852
911
|
export interface X509Chain$instance {
|
|
912
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Chain: never;
|
|
913
|
+
|
|
914
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
915
|
+
|
|
853
916
|
readonly ChainContext: nint;
|
|
854
917
|
readonly ChainElements: X509ChainElementCollection;
|
|
855
918
|
ChainPolicy: X509ChainPolicy;
|
|
@@ -878,6 +941,8 @@ export type X509Chain = X509Chain$instance & __X509Chain$views;
|
|
|
878
941
|
|
|
879
942
|
|
|
880
943
|
export interface X509ChainElement$instance {
|
|
944
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainElement: never;
|
|
945
|
+
|
|
881
946
|
readonly Certificate: X509Certificate2;
|
|
882
947
|
readonly ChainElementStatus: X509ChainStatus[];
|
|
883
948
|
readonly Information: string;
|
|
@@ -891,6 +956,12 @@ export const X509ChainElement: {
|
|
|
891
956
|
export type X509ChainElement = X509ChainElement$instance;
|
|
892
957
|
|
|
893
958
|
export interface X509ChainElementCollection$instance {
|
|
959
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainElementCollection: never;
|
|
960
|
+
|
|
961
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
962
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
963
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
964
|
+
|
|
894
965
|
readonly Count: int;
|
|
895
966
|
readonly IsSynchronized: boolean;
|
|
896
967
|
readonly [index: number]: X509ChainElement;
|
|
@@ -914,6 +985,12 @@ export type X509ChainElementCollection = X509ChainElementCollection$instance & _
|
|
|
914
985
|
|
|
915
986
|
|
|
916
987
|
export interface X509ChainElementEnumerator$instance {
|
|
988
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainElementEnumerator: never;
|
|
989
|
+
|
|
990
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
991
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
992
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
993
|
+
|
|
917
994
|
readonly Current: X509ChainElement;
|
|
918
995
|
MoveNext(): boolean;
|
|
919
996
|
Reset(): void;
|
|
@@ -934,6 +1011,8 @@ export type X509ChainElementEnumerator = X509ChainElementEnumerator$instance & _
|
|
|
934
1011
|
|
|
935
1012
|
|
|
936
1013
|
export interface X509ChainPolicy$instance {
|
|
1014
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ChainPolicy: never;
|
|
1015
|
+
|
|
937
1016
|
readonly ApplicationPolicy: OidCollection;
|
|
938
1017
|
readonly CertificatePolicy: OidCollection;
|
|
939
1018
|
readonly CustomTrustStore: X509Certificate2Collection;
|
|
@@ -959,6 +1038,8 @@ export const X509ChainPolicy: {
|
|
|
959
1038
|
export type X509ChainPolicy = X509ChainPolicy$instance;
|
|
960
1039
|
|
|
961
1040
|
export interface X509EnhancedKeyUsageExtension$instance extends X509Extension {
|
|
1041
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509EnhancedKeyUsageExtension: never;
|
|
1042
|
+
|
|
962
1043
|
readonly EnhancedKeyUsages: OidCollection;
|
|
963
1044
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
964
1045
|
}
|
|
@@ -974,6 +1055,8 @@ export const X509EnhancedKeyUsageExtension: {
|
|
|
974
1055
|
export type X509EnhancedKeyUsageExtension = X509EnhancedKeyUsageExtension$instance;
|
|
975
1056
|
|
|
976
1057
|
export interface X509Extension$instance extends AsnEncodedData {
|
|
1058
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509Extension: never;
|
|
1059
|
+
|
|
977
1060
|
Critical: boolean;
|
|
978
1061
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
979
1062
|
}
|
|
@@ -991,6 +1074,12 @@ export const X509Extension: {
|
|
|
991
1074
|
export type X509Extension = X509Extension$instance;
|
|
992
1075
|
|
|
993
1076
|
export interface X509ExtensionCollection$instance {
|
|
1077
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ExtensionCollection: never;
|
|
1078
|
+
|
|
1079
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1080
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1081
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1082
|
+
|
|
994
1083
|
readonly Count: int;
|
|
995
1084
|
readonly IsSynchronized: boolean;
|
|
996
1085
|
readonly SyncRoot: unknown;
|
|
@@ -1017,6 +1106,12 @@ export type X509ExtensionCollection = X509ExtensionCollection$instance & __X509E
|
|
|
1017
1106
|
|
|
1018
1107
|
|
|
1019
1108
|
export interface X509ExtensionEnumerator$instance {
|
|
1109
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509ExtensionEnumerator: never;
|
|
1110
|
+
|
|
1111
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
1112
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
1113
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1114
|
+
|
|
1020
1115
|
readonly Current: X509Extension;
|
|
1021
1116
|
MoveNext(): boolean;
|
|
1022
1117
|
Reset(): void;
|
|
@@ -1037,6 +1132,8 @@ export type X509ExtensionEnumerator = X509ExtensionEnumerator$instance & __X509E
|
|
|
1037
1132
|
|
|
1038
1133
|
|
|
1039
1134
|
export interface X509KeyUsageExtension$instance extends X509Extension {
|
|
1135
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509KeyUsageExtension: never;
|
|
1136
|
+
|
|
1040
1137
|
readonly KeyUsages: X509KeyUsageFlags;
|
|
1041
1138
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
1042
1139
|
}
|
|
@@ -1052,6 +1149,8 @@ export const X509KeyUsageExtension: {
|
|
|
1052
1149
|
export type X509KeyUsageExtension = X509KeyUsageExtension$instance;
|
|
1053
1150
|
|
|
1054
1151
|
export interface X509SignatureGenerator$instance {
|
|
1152
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509SignatureGenerator: never;
|
|
1153
|
+
|
|
1055
1154
|
readonly PublicKey: PublicKey;
|
|
1056
1155
|
BuildPublicKey(): PublicKey;
|
|
1057
1156
|
GetSignatureAlgorithmIdentifier(hashAlgorithm: HashAlgorithmName): byte[];
|
|
@@ -1070,7 +1169,11 @@ export const X509SignatureGenerator: (abstract new() => X509SignatureGenerator)
|
|
|
1070
1169
|
|
|
1071
1170
|
export type X509SignatureGenerator = X509SignatureGenerator$instance;
|
|
1072
1171
|
|
|
1073
|
-
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
|
+
|
|
1175
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1176
|
+
|
|
1074
1177
|
readonly Certificates: X509Certificate2Collection;
|
|
1075
1178
|
readonly IsOpen: boolean;
|
|
1076
1179
|
readonly Location: StoreLocation;
|
|
@@ -1103,12 +1206,12 @@ export interface __X509Store$views {
|
|
|
1103
1206
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
1104
1207
|
}
|
|
1105
1208
|
|
|
1106
|
-
export interface X509Store$instance extends System_Internal.IDisposable$instance {}
|
|
1107
|
-
|
|
1108
1209
|
export type X509Store = X509Store$instance & __X509Store$views;
|
|
1109
1210
|
|
|
1110
1211
|
|
|
1111
1212
|
export interface X509SubjectAlternativeNameExtension$instance extends X509Extension {
|
|
1213
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509SubjectAlternativeNameExtension: never;
|
|
1214
|
+
|
|
1112
1215
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
1113
1216
|
EnumerateDnsNames(): IEnumerable_1<System_Internal.String>;
|
|
1114
1217
|
EnumerateIPAddresses(): IEnumerable_1<IPAddress>;
|
|
@@ -1125,6 +1228,8 @@ export const X509SubjectAlternativeNameExtension: {
|
|
|
1125
1228
|
export type X509SubjectAlternativeNameExtension = X509SubjectAlternativeNameExtension$instance;
|
|
1126
1229
|
|
|
1127
1230
|
export interface X509SubjectKeyIdentifierExtension$instance extends X509Extension {
|
|
1231
|
+
readonly __tsonic_type_System_Security_Cryptography_X509Certificates_X509SubjectKeyIdentifierExtension: never;
|
|
1232
|
+
|
|
1128
1233
|
readonly SubjectKeyIdentifier: string | undefined;
|
|
1129
1234
|
readonly SubjectKeyIdentifierBytes: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
1130
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,11 @@ 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
|
+
|
|
17
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
18
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
19
|
+
|
|
15
20
|
readonly Count: int;
|
|
16
21
|
readonly IsReadOnly: boolean;
|
|
17
22
|
readonly IsSynchronized: boolean;
|
|
@@ -51,6 +56,8 @@ export type Evidence = Evidence$instance & __Evidence$views;
|
|
|
51
56
|
|
|
52
57
|
|
|
53
58
|
export interface EvidenceBase$instance {
|
|
59
|
+
readonly __tsonic_type_System_Security_Policy_EvidenceBase: never;
|
|
60
|
+
|
|
54
61
|
Clone(): EvidenceBase | undefined;
|
|
55
62
|
}
|
|
56
63
|
|
|
@@ -176,6 +176,8 @@ export enum WindowsBuiltInRole {
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
export interface IIdentity$instance {
|
|
179
|
+
readonly __tsonic_iface_System_Security_Principal_IIdentity: never;
|
|
180
|
+
|
|
179
181
|
readonly Name: string | undefined;
|
|
180
182
|
readonly AuthenticationType: string | undefined;
|
|
181
183
|
readonly IsAuthenticated: boolean;
|
|
@@ -185,6 +187,8 @@ export interface IIdentity$instance {
|
|
|
185
187
|
export type IIdentity = IIdentity$instance;
|
|
186
188
|
|
|
187
189
|
export interface IPrincipal$instance {
|
|
190
|
+
readonly __tsonic_iface_System_Security_Principal_IPrincipal: never;
|
|
191
|
+
|
|
188
192
|
readonly Identity: IIdentity | undefined;
|
|
189
193
|
IsInRole(role: string): boolean;
|
|
190
194
|
}
|
|
@@ -193,6 +197,10 @@ export interface IPrincipal$instance {
|
|
|
193
197
|
export type IPrincipal = IPrincipal$instance;
|
|
194
198
|
|
|
195
199
|
export interface GenericIdentity$instance extends ClaimsIdentity {
|
|
200
|
+
readonly __tsonic_type_System_Security_Principal_GenericIdentity: never;
|
|
201
|
+
|
|
202
|
+
readonly __tsonic_iface_System_Security_Principal_IIdentity: never;
|
|
203
|
+
|
|
196
204
|
readonly AuthenticationType: string | string | undefined;
|
|
197
205
|
readonly Claims: IEnumerable_1<Claim>;
|
|
198
206
|
readonly IsAuthenticated: boolean;
|
|
@@ -215,6 +223,10 @@ export type GenericIdentity = GenericIdentity$instance & __GenericIdentity$views
|
|
|
215
223
|
|
|
216
224
|
|
|
217
225
|
export interface GenericPrincipal$instance extends ClaimsPrincipal {
|
|
226
|
+
readonly __tsonic_type_System_Security_Principal_GenericPrincipal: never;
|
|
227
|
+
|
|
228
|
+
readonly __tsonic_iface_System_Security_Principal_IPrincipal: never;
|
|
229
|
+
|
|
218
230
|
readonly Identity: IIdentity | IIdentity | undefined;
|
|
219
231
|
IsInRole(role: string): boolean;
|
|
220
232
|
}
|
|
@@ -233,6 +245,10 @@ export type GenericPrincipal = GenericPrincipal$instance & __GenericPrincipal$vi
|
|
|
233
245
|
|
|
234
246
|
|
|
235
247
|
export interface IdentityNotMappedException$instance extends SystemException {
|
|
248
|
+
readonly __tsonic_type_System_Security_Principal_IdentityNotMappedException: never;
|
|
249
|
+
|
|
250
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
251
|
+
|
|
236
252
|
readonly UnmappedIdentities: IdentityReferenceCollection;
|
|
237
253
|
GetObjectData(serializationInfo: SerializationInfo, streamingContext: StreamingContext): void;
|
|
238
254
|
}
|
|
@@ -253,6 +269,8 @@ export type IdentityNotMappedException = IdentityNotMappedException$instance & _
|
|
|
253
269
|
|
|
254
270
|
|
|
255
271
|
export interface IdentityReference$instance {
|
|
272
|
+
readonly __tsonic_type_System_Security_Principal_IdentityReference: never;
|
|
273
|
+
|
|
256
274
|
readonly Value: string;
|
|
257
275
|
Equals(o: unknown): boolean;
|
|
258
276
|
GetHashCode(): int;
|
|
@@ -269,6 +287,12 @@ export const IdentityReference: {
|
|
|
269
287
|
export type IdentityReference = IdentityReference$instance;
|
|
270
288
|
|
|
271
289
|
export interface IdentityReferenceCollection$instance {
|
|
290
|
+
readonly __tsonic_type_System_Security_Principal_IdentityReferenceCollection: never;
|
|
291
|
+
|
|
292
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
293
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
294
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
295
|
+
|
|
272
296
|
readonly Count: int;
|
|
273
297
|
[index: number]: IdentityReference;
|
|
274
298
|
Add(identity: IdentityReference): void;
|
|
@@ -298,6 +322,8 @@ export type IdentityReferenceCollection = IdentityReferenceCollection$instance &
|
|
|
298
322
|
|
|
299
323
|
|
|
300
324
|
export interface NTAccount$instance extends IdentityReference {
|
|
325
|
+
readonly __tsonic_type_System_Security_Principal_NTAccount: never;
|
|
326
|
+
|
|
301
327
|
readonly Value: string;
|
|
302
328
|
Equals(o: unknown): boolean;
|
|
303
329
|
GetHashCode(): int;
|
|
@@ -316,6 +342,10 @@ export const NTAccount: {
|
|
|
316
342
|
export type NTAccount = NTAccount$instance;
|
|
317
343
|
|
|
318
344
|
export interface SecurityIdentifier$instance extends IdentityReference {
|
|
345
|
+
readonly __tsonic_type_System_Security_Principal_SecurityIdentifier: never;
|
|
346
|
+
|
|
347
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
348
|
+
|
|
319
349
|
readonly AccountDomainSid: SecurityIdentifier | undefined;
|
|
320
350
|
readonly BinaryLength: int;
|
|
321
351
|
readonly Value: string;
|
|
@@ -350,12 +380,17 @@ export interface __SecurityIdentifier$views {
|
|
|
350
380
|
CompareTo(obj: unknown): int;
|
|
351
381
|
}
|
|
352
382
|
|
|
353
|
-
export interface SecurityIdentifier$instance extends System_Internal.IComparable_1$instance<SecurityIdentifier> {}
|
|
354
|
-
|
|
355
383
|
export type SecurityIdentifier = SecurityIdentifier$instance & __SecurityIdentifier$views;
|
|
356
384
|
|
|
357
385
|
|
|
358
|
-
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
|
+
|
|
389
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
390
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
391
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
392
|
+
readonly __tsonic_iface_System_Security_Principal_IIdentity: never;
|
|
393
|
+
|
|
359
394
|
readonly AccessToken: SafeAccessTokenHandle;
|
|
360
395
|
readonly AuthenticationType: string | undefined;
|
|
361
396
|
readonly Claims: IEnumerable_1<Claim>;
|
|
@@ -404,12 +439,14 @@ export interface __WindowsIdentity$views {
|
|
|
404
439
|
As_IIdentity(): IIdentity$instance;
|
|
405
440
|
}
|
|
406
441
|
|
|
407
|
-
export interface WindowsIdentity$instance extends System_Runtime_Serialization_Internal.IDeserializationCallback$instance {}
|
|
408
|
-
|
|
409
442
|
export type WindowsIdentity = WindowsIdentity$instance & __WindowsIdentity$views;
|
|
410
443
|
|
|
411
444
|
|
|
412
445
|
export interface WindowsPrincipal$instance extends ClaimsPrincipal {
|
|
446
|
+
readonly __tsonic_type_System_Security_Principal_WindowsPrincipal: never;
|
|
447
|
+
|
|
448
|
+
readonly __tsonic_iface_System_Security_Principal_IPrincipal: never;
|
|
449
|
+
|
|
413
450
|
readonly DeviceClaims: IEnumerable_1<Claim>;
|
|
414
451
|
readonly Identity: IIdentity | IIdentity | undefined;
|
|
415
452
|
readonly UserClaims: IEnumerable_1<Claim>;
|