@tsonic/dotnet 10.0.14 → 10.0.16

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.
Files changed (45) hide show
  1. package/Microsoft.Win32.SafeHandles/internal/index.d.ts +2 -0
  2. package/System/internal/index.d.ts +6 -0
  3. package/System.CodeDom.Compiler/bindings.json +6 -6
  4. package/System.Collections/internal/index.d.ts +1 -0
  5. package/System.Collections.Generic/internal/index.d.ts +22 -0
  6. package/System.Collections.ObjectModel/internal/index.d.ts +6 -0
  7. package/System.ComponentModel/internal/index.d.ts +1 -0
  8. package/System.ComponentModel.Design/internal/index.d.ts +5 -0
  9. package/System.Data/internal/index.d.ts +7 -0
  10. package/System.Data.Common/internal/index.d.ts +10 -0
  11. package/System.Diagnostics/internal/index.d.ts +3 -0
  12. package/System.Dynamic/bindings.json +36 -36
  13. package/System.IO/bindings.json +18 -18
  14. package/System.IO/internal/index.d.ts +2 -0
  15. package/System.IO.Compression/bindings.json +12 -12
  16. package/System.IO.IsolatedStorage/bindings.json +9 -9
  17. package/System.IO.Pipes/bindings.json +3 -3
  18. package/System.Linq/internal/index.d.ts +1 -0
  19. package/System.Net/internal/index.d.ts +13 -0
  20. package/System.Net.Http/bindings.json +9 -9
  21. package/System.Net.Http/internal/index.d.ts +8 -0
  22. package/System.Net.Mail/internal/index.d.ts +10 -0
  23. package/System.Net.Quic/bindings.json +6 -6
  24. package/System.Net.Quic/internal/index.d.ts +3 -0
  25. package/System.Net.Security/bindings.json +12 -12
  26. package/System.Net.Sockets/bindings.json +3 -3
  27. package/System.Net.Sockets/internal/index.d.ts +1 -0
  28. package/System.Net.WebSockets/bindings.json +12 -12
  29. package/System.Reflection/internal/index.d.ts +14 -0
  30. package/System.Reflection.Metadata/internal/index.d.ts +3 -0
  31. package/System.Runtime.Serialization/internal/index.d.ts +1 -0
  32. package/System.Security.AccessControl/internal/index.d.ts +1 -0
  33. package/System.Security.Cryptography/bindings.json +126 -126
  34. package/System.Security.Cryptography/internal/index.d.ts +40 -0
  35. package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +14 -0
  36. package/System.Security.Principal/internal/index.d.ts +1 -0
  37. package/System.Text/bindings.json +51 -51
  38. package/System.Text/internal/index.d.ts +1 -0
  39. package/System.Threading.Tasks/bindings.json +400 -0
  40. package/System.Threading.Tasks/internal/index.d.ts +39 -0
  41. package/System.Xml/internal/index.d.ts +21 -0
  42. package/System.Xml.Linq/internal/index.d.ts +2 -0
  43. package/System.Xml.Schema/internal/index.d.ts +7 -0
  44. package/System.Xml.Serialization/internal/index.d.ts +21 -0
  45. package/package.json +2 -2
@@ -522,6 +522,7 @@ export interface AesCryptoServiceProvider$instance extends Aes$instance {
522
522
  CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
523
523
  CreateEncryptor(): ICryptoTransform;
524
524
  CreateEncryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
525
+ Dispose(disposing: boolean): void;
525
526
  Dispose(): void;
526
527
  GenerateIV(): void;
527
528
  GenerateKey(): void;
@@ -591,6 +592,7 @@ export interface AesManaged$instance extends Aes$instance {
591
592
  CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
592
593
  CreateEncryptor(): ICryptoTransform;
593
594
  CreateEncryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
595
+ Dispose(disposing: boolean): void;
594
596
  Dispose(): void;
595
597
  GenerateIV(): void;
596
598
  GenerateKey(): void;
@@ -1518,6 +1520,7 @@ export interface DESCryptoServiceProvider$instance extends DES$instance {
1518
1520
  CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
1519
1521
  CreateEncryptor(): ICryptoTransform;
1520
1522
  CreateEncryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
1523
+ Dispose(disposing: boolean): void;
1521
1524
  Dispose(): void;
1522
1525
  GenerateIV(): void;
1523
1526
  GenerateKey(): void;
@@ -1655,6 +1658,7 @@ export interface DSACryptoServiceProvider$instance extends DSA$instance, ICspAsy
1655
1658
  readonly SignatureAlgorithm: string | string | undefined;
1656
1659
  CreateSignature(rgbHash: byte[]): byte[];
1657
1660
  CreateSignature(rgbHash: byte[], signatureFormat: DSASignatureFormat): byte[];
1661
+ Dispose(disposing: boolean): void;
1658
1662
  Dispose(): void;
1659
1663
  ExportCspBlob(includePrivateParameters: boolean): byte[];
1660
1664
  ExportParameters(includePrivateParameters: boolean): DSAParameters;
@@ -1665,6 +1669,8 @@ export interface DSACryptoServiceProvider$instance extends DSA$instance, ICspAsy
1665
1669
  ImportEncryptedPkcs8PrivateKey(passwordBytes: ReadOnlySpan_1<System_Internal.Byte>, source: ReadOnlySpan_1<System_Internal.Byte>, bytesRead: int): void;
1666
1670
  ImportEncryptedPkcs8PrivateKey(password: ReadOnlySpan_1<System_Internal.Char>, source: ReadOnlySpan_1<System_Internal.Byte>, bytesRead: int): void;
1667
1671
  ImportParameters(parameters: DSAParameters): void;
1672
+ SignData(buffer: byte[]): byte[];
1673
+ SignData(buffer: byte[], offset: int, count: int): byte[];
1668
1674
  SignData(inputStream: Stream): byte[];
1669
1675
  SignData(data: byte[], offset: int, count: int, hashAlgorithm: HashAlgorithmName): byte[];
1670
1676
  SignData(data: Stream, hashAlgorithm: HashAlgorithmName): byte[];
@@ -1679,6 +1685,7 @@ export interface DSACryptoServiceProvider$instance extends DSA$instance, ICspAsy
1679
1685
  TryHashData(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, bytesWritten: int): boolean;
1680
1686
  TrySignData(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, bytesWritten: int): boolean;
1681
1687
  TrySignData(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, signatureFormat: DSASignatureFormat, bytesWritten: int): boolean;
1688
+ VerifyData(rgbData: byte[], rgbSignature: byte[]): boolean;
1682
1689
  VerifyData(data: byte[], offset: int, count: int, signature: byte[], hashAlgorithm: HashAlgorithmName): boolean;
1683
1690
  VerifyData(data: Stream, signature: byte[], hashAlgorithm: HashAlgorithmName): boolean;
1684
1691
  VerifyData(data: ReadOnlySpan_1<System_Internal.Byte>, signature: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName): boolean;
@@ -1721,6 +1728,7 @@ export interface DSAOpenSsl$instance extends DSA$instance {
1721
1728
  readonly LegalKeySizes: KeySizes[];
1722
1729
  CreateSignature(rgbHash: byte[]): byte[];
1723
1730
  CreateSignature(rgbHash: byte[], signatureFormat: DSASignatureFormat): byte[];
1731
+ Dispose(disposing: boolean): void;
1724
1732
  Dispose(): void;
1725
1733
  DuplicateKeyHandle(): SafeEvpPKeyHandle;
1726
1734
  ExportParameters(includePrivateParameters: boolean): DSAParameters;
@@ -1884,10 +1892,13 @@ export interface ECDiffieHellmanCng$instance extends ECDiffieHellman$instance {
1884
1892
  get Seed(): byte[] | undefined;
1885
1893
  set Seed(value: byte[] | undefined);
1886
1894
  readonly UseSecretAgreementAsHmacKey: boolean;
1895
+ DeriveKeyMaterial(otherPartyPublicKey: CngKey): byte[];
1887
1896
  DeriveKeyMaterial(otherPartyPublicKey: ECDiffieHellmanPublicKey): byte[];
1888
1897
  DeriveSecretAgreementHandle(otherPartyPublicKey: CngKey): SafeNCryptSecretHandle;
1889
1898
  DeriveSecretAgreementHandle(otherPartyPublicKey: ECDiffieHellmanPublicKey): SafeNCryptSecretHandle;
1899
+ FromXmlString(xml: string, format: ECKeyXmlFormat): void;
1890
1900
  FromXmlString(xmlString: string): void;
1901
+ ToXmlString(format: ECKeyXmlFormat): string;
1891
1902
  ToXmlString(includePrivateParameters: boolean): string;
1892
1903
  }
1893
1904
 
@@ -1948,6 +1959,7 @@ export interface ECDiffieHellmanOpenSsl$instance extends ECDiffieHellman$instanc
1948
1959
  DeriveKeyMaterial(otherPartyPublicKey: ECDiffieHellmanPublicKey): byte[];
1949
1960
  DeriveKeyTls(otherPartyPublicKey: ECDiffieHellmanPublicKey, prfLabel: byte[], prfSeed: byte[]): byte[];
1950
1961
  DeriveRawSecretAgreement(otherPartyPublicKey: ECDiffieHellmanPublicKey): byte[];
1962
+ Dispose(disposing: boolean): void;
1951
1963
  Dispose(): void;
1952
1964
  DuplicateKeyHandle(): SafeEvpPKeyHandle;
1953
1965
  ExportExplicitParameters(includePrivateParameters: boolean): ECParameters;
@@ -2080,7 +2092,10 @@ export interface ECDsaCng$instance extends ECDsa$instance {
2080
2092
 
2081
2093
  HashAlgorithm: CngAlgorithm;
2082
2094
  readonly Key: CngKey;
2095
+ FromXmlString(xml: string, format: ECKeyXmlFormat): void;
2083
2096
  FromXmlString(xmlString: string): void;
2097
+ SignData(data: byte[]): byte[];
2098
+ SignData(data: byte[], offset: int, count: int): byte[];
2084
2099
  SignData(data: Stream): byte[];
2085
2100
  SignData(data: byte[], hashAlgorithm: HashAlgorithmName): byte[];
2086
2101
  SignData(data: byte[], offset: int, count: int, hashAlgorithm: HashAlgorithmName): byte[];
@@ -2098,7 +2113,10 @@ export interface ECDsaCng$instance extends ECDsa$instance {
2098
2113
  SignHash(hash: ReadOnlySpan_1<System_Internal.Byte>): byte[];
2099
2114
  SignHash(hash: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, signatureFormat: DSASignatureFormat): int;
2100
2115
  SignHash(hash: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>): int;
2116
+ ToXmlString(format: ECKeyXmlFormat): string;
2101
2117
  ToXmlString(includePrivateParameters: boolean): string;
2118
+ VerifyData(data: byte[], signature: byte[]): boolean;
2119
+ VerifyData(data: byte[], offset: int, count: int, signature: byte[]): boolean;
2102
2120
  VerifyData(data: Stream, signature: byte[]): boolean;
2103
2121
  VerifyData(data: byte[], signature: byte[], hashAlgorithm: HashAlgorithmName): boolean;
2104
2122
  VerifyData(data: byte[], offset: int, count: int, signature: byte[], hashAlgorithm: HashAlgorithmName): boolean;
@@ -2137,6 +2155,7 @@ export interface ECDsaOpenSsl$instance extends ECDsa$instance {
2137
2155
 
2138
2156
  KeySize: int;
2139
2157
  readonly LegalKeySizes: KeySizes[];
2158
+ Dispose(disposing: boolean): void;
2140
2159
  Dispose(): void;
2141
2160
  DuplicateKeyHandle(): SafeEvpPKeyHandle;
2142
2161
  ExportExplicitParameters(includePrivateParameters: boolean): ECParameters;
@@ -2916,6 +2935,7 @@ export interface MD5CryptoServiceProvider$instance extends MD5$instance {
2916
2935
  readonly __tsonic_iface_System_IDisposable: never;
2917
2936
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
2918
2937
 
2938
+ Dispose(disposing: boolean): void;
2919
2939
  Dispose(): void;
2920
2940
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
2921
2941
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -3509,6 +3529,7 @@ export interface RC2CryptoServiceProvider$instance extends RC2$instance {
3509
3529
  CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
3510
3530
  CreateEncryptor(): ICryptoTransform;
3511
3531
  CreateEncryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
3532
+ Dispose(disposing: boolean): void;
3512
3533
  Dispose(): void;
3513
3534
  GenerateIV(): void;
3514
3535
  GenerateKey(): void;
@@ -3605,6 +3626,7 @@ export interface RijndaelManaged$instance extends Rijndael$instance {
3605
3626
  CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
3606
3627
  CreateEncryptor(): ICryptoTransform;
3607
3628
  CreateEncryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
3629
+ Dispose(disposing: boolean): void;
3608
3630
  Dispose(): void;
3609
3631
  GenerateIV(): void;
3610
3632
  GenerateKey(): void;
@@ -3769,10 +3791,13 @@ export interface RSACryptoServiceProvider$instance extends RSA$instance, ICspAsy
3769
3791
  PersistKeyInCsp: boolean;
3770
3792
  readonly PublicOnly: boolean;
3771
3793
  readonly SignatureAlgorithm: string | string | undefined;
3794
+ Decrypt(rgb: byte[], fOAEP: boolean): byte[];
3772
3795
  Decrypt(data: byte[], padding: RSAEncryptionPadding): byte[];
3773
3796
  Decrypt(data: ReadOnlySpan_1<System_Internal.Byte>, padding: RSAEncryptionPadding): byte[];
3774
3797
  Decrypt(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, padding: RSAEncryptionPadding): int;
3798
+ Dispose(disposing: boolean): void;
3775
3799
  Dispose(): void;
3800
+ Encrypt(rgb: byte[], fOAEP: boolean): byte[];
3776
3801
  Encrypt(data: byte[], padding: RSAEncryptionPadding): byte[];
3777
3802
  Encrypt(data: ReadOnlySpan_1<System_Internal.Byte>, padding: RSAEncryptionPadding): byte[];
3778
3803
  Encrypt(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, padding: RSAEncryptionPadding): int;
@@ -3785,11 +3810,14 @@ export interface RSACryptoServiceProvider$instance extends RSA$instance, ICspAsy
3785
3810
  ImportParameters(parameters: RSAParameters): void;
3786
3811
  SignData(data: Stream, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): byte[];
3787
3812
  SignData(data: byte[], offset: int, count: int, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): byte[];
3813
+ SignData(buffer: byte[], offset: int, count: int, halg: unknown): byte[];
3814
+ SignData(buffer: byte[], halg: unknown): byte[];
3788
3815
  SignData(inputStream: Stream, halg: unknown): byte[];
3789
3816
  SignData(data: byte[], hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): byte[];
3790
3817
  SignData(data: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): byte[];
3791
3818
  SignData(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): int;
3792
3819
  SignHash(hash: byte[], hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): byte[];
3820
+ SignHash(rgbHash: byte[], str: string): byte[];
3793
3821
  SignHash(hash: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): byte[];
3794
3822
  SignHash(hash: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): int;
3795
3823
  ToXmlString(includePrivateParameters: boolean): string;
@@ -3797,12 +3825,14 @@ export interface RSACryptoServiceProvider$instance extends RSA$instance, ICspAsy
3797
3825
  TryEncrypt(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, padding: RSAEncryptionPadding, bytesWritten: int): boolean;
3798
3826
  TrySignData(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding, bytesWritten: int): boolean;
3799
3827
  TrySignHash(hash: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding, bytesWritten: int): boolean;
3828
+ VerifyData(buffer: byte[], halg: unknown, signature: byte[]): boolean;
3800
3829
  VerifyData(data: byte[], offset: int, count: int, signature: byte[], hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): boolean;
3801
3830
  VerifyData(data: ReadOnlySpan_1<System_Internal.Byte>, signature: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): boolean;
3802
3831
  VerifyData(data: byte[], signature: byte[], hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): boolean;
3803
3832
  VerifyData(data: Stream, signature: byte[], hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): boolean;
3804
3833
  VerifyHash(hash: byte[], signature: byte[], hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): boolean;
3805
3834
  VerifyHash(hash: ReadOnlySpan_1<System_Internal.Byte>, signature: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, padding: RSASignaturePadding): boolean;
3835
+ VerifyHash(rgbHash: byte[], str: string, rgbSignature: byte[]): boolean;
3806
3836
  }
3807
3837
 
3808
3838
 
@@ -3910,6 +3940,7 @@ export interface RSAOpenSsl$instance extends RSA$instance {
3910
3940
  Decrypt(data: byte[], padding: RSAEncryptionPadding): byte[];
3911
3941
  Decrypt(data: ReadOnlySpan_1<System_Internal.Byte>, padding: RSAEncryptionPadding): byte[];
3912
3942
  Decrypt(data: ReadOnlySpan_1<System_Internal.Byte>, destination: Span_1<System_Internal.Byte>, padding: RSAEncryptionPadding): int;
3943
+ Dispose(disposing: boolean): void;
3913
3944
  Dispose(): void;
3914
3945
  DuplicateKeyHandle(): SafeEvpPKeyHandle;
3915
3946
  Encrypt(data: byte[], padding: RSAEncryptionPadding): byte[];
@@ -4128,6 +4159,7 @@ export interface SHA1CryptoServiceProvider$instance extends SHA1$instance {
4128
4159
  readonly __tsonic_iface_System_IDisposable: never;
4129
4160
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4130
4161
 
4162
+ Dispose(disposing: boolean): void;
4131
4163
  Dispose(): void;
4132
4164
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4133
4165
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4156,6 +4188,7 @@ export interface SHA1Managed$instance extends SHA1$instance {
4156
4188
  readonly __tsonic_iface_System_IDisposable: never;
4157
4189
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4158
4190
 
4191
+ Dispose(disposing: boolean): void;
4159
4192
  Dispose(): void;
4160
4193
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4161
4194
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4215,6 +4248,7 @@ export interface SHA256CryptoServiceProvider$instance extends SHA256$instance {
4215
4248
  readonly __tsonic_iface_System_IDisposable: never;
4216
4249
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4217
4250
 
4251
+ Dispose(disposing: boolean): void;
4218
4252
  Dispose(): void;
4219
4253
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4220
4254
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4243,6 +4277,7 @@ export interface SHA256Managed$instance extends SHA256$instance {
4243
4277
  readonly __tsonic_iface_System_IDisposable: never;
4244
4278
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4245
4279
 
4280
+ Dispose(disposing: boolean): void;
4246
4281
  Dispose(): void;
4247
4282
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4248
4283
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4398,6 +4433,7 @@ export interface SHA384CryptoServiceProvider$instance extends SHA384$instance {
4398
4433
  readonly __tsonic_iface_System_IDisposable: never;
4399
4434
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4400
4435
 
4436
+ Dispose(disposing: boolean): void;
4401
4437
  Dispose(): void;
4402
4438
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4403
4439
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4426,6 +4462,7 @@ export interface SHA384Managed$instance extends SHA384$instance {
4426
4462
  readonly __tsonic_iface_System_IDisposable: never;
4427
4463
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4428
4464
 
4465
+ Dispose(disposing: boolean): void;
4429
4466
  Dispose(): void;
4430
4467
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4431
4468
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4485,6 +4522,7 @@ export interface SHA512CryptoServiceProvider$instance extends SHA512$instance {
4485
4522
  readonly __tsonic_iface_System_IDisposable: never;
4486
4523
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4487
4524
 
4525
+ Dispose(disposing: boolean): void;
4488
4526
  Dispose(): void;
4489
4527
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4490
4528
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -4513,6 +4551,7 @@ export interface SHA512Managed$instance extends SHA512$instance {
4513
4551
  readonly __tsonic_iface_System_IDisposable: never;
4514
4552
  readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
4515
4553
 
4554
+ Dispose(disposing: boolean): void;
4516
4555
  Dispose(): void;
4517
4556
  HashCore(array: byte[], ibStart: int, cbSize: int): void;
4518
4557
  HashCore(source: ReadOnlySpan_1<System_Internal.Byte>): void;
@@ -5021,6 +5060,7 @@ export interface TripleDESCryptoServiceProvider$instance extends TripleDES$insta
5021
5060
  CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
5022
5061
  CreateEncryptor(): ICryptoTransform;
5023
5062
  CreateEncryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
5063
+ Dispose(disposing: boolean): void;
5024
5064
  Dispose(): void;
5025
5065
  GenerateIV(): void;
5026
5066
  GenerateKey(): void;
@@ -751,10 +751,13 @@ export interface X509Certificate2Collection$instance extends X509CertificateColl
751
751
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
752
752
  readonly __tsonic_iface_System_Collections_IList: never;
753
753
 
754
+ Add(certificate: X509Certificate2): int;
754
755
  Add(value: X509Certificate): int;
756
+ AddRange(certificates: X509Certificate2[]): void;
755
757
  AddRange(certificates: X509Certificate2Collection): void;
756
758
  AddRange(value: X509Certificate[]): void;
757
759
  AddRange(value: X509CertificateCollection): void;
760
+ Contains(certificate: X509Certificate2): boolean;
758
761
  Contains(value: X509Certificate): boolean;
759
762
  Export(contentType: X509ContentType): byte[] | undefined;
760
763
  Export(contentType: X509ContentType, password: string): byte[] | undefined;
@@ -766,7 +769,9 @@ export interface X509Certificate2Collection$instance extends X509CertificateColl
766
769
  FindByThumbprint(hashAlgorithm: HashAlgorithmName, thumbprintHex: string): X509Certificate2Collection;
767
770
  FindByThumbprint(hashAlgorithm: HashAlgorithmName, thumbprintHex: ReadOnlySpan_1<System_Internal.Char>): X509Certificate2Collection;
768
771
  FindByThumbprint(hashAlgorithm: HashAlgorithmName, thumbprintBytes: ReadOnlySpan_1<System_Internal.Byte>): X509Certificate2Collection;
772
+ GetEnumerator(): X509Certificate2Enumerator;
769
773
  GetEnumerator(): X509CertificateCollection_X509CertificateEnumerator;
774
+ GetEnumerator(): IEnumerator;
770
775
  Import(rawData: byte[]): void;
771
776
  Import(rawData: ReadOnlySpan_1<System_Internal.Byte>): void;
772
777
  Import(rawData: byte[], password: string, keyStorageFlags?: X509KeyStorageFlags): void;
@@ -777,7 +782,9 @@ export interface X509Certificate2Collection$instance extends X509CertificateColl
777
782
  Import(fileName: string, password: ReadOnlySpan_1<System_Internal.Char>, keyStorageFlags?: X509KeyStorageFlags): void;
778
783
  ImportFromPem(certPem: ReadOnlySpan_1<System_Internal.Char>): void;
779
784
  ImportFromPemFile(certPemFilePath: string): void;
785
+ Insert(index: int, certificate: X509Certificate2): void;
780
786
  Insert(index: int, value: X509Certificate): void;
787
+ Remove(certificate: X509Certificate2): void;
781
788
  Remove(value: X509Certificate): void;
782
789
  RemoveRange(certificates: X509Certificate2[]): void;
783
790
  RemoveRange(certificates: X509Certificate2Collection): void;
@@ -837,11 +844,18 @@ export interface X509CertificateCollection$instance extends CollectionBase {
837
844
  readonly __tsonic_iface_System_Collections_IEnumerable: never;
838
845
  readonly __tsonic_iface_System_Collections_IList: never;
839
846
 
847
+ Add(value: X509Certificate): int;
840
848
  AddRange(value: X509Certificate[]): void;
841
849
  AddRange(value: X509CertificateCollection): void;
850
+ Contains(value: X509Certificate): boolean;
851
+ CopyTo(array: X509Certificate[], index: int): void;
852
+ GetEnumerator(): X509CertificateCollection_X509CertificateEnumerator;
853
+ GetEnumerator(): IEnumerator;
842
854
  GetHashCode(): int;
843
855
  IndexOf(value: X509Certificate): int;
856
+ Insert(index: int, value: X509Certificate): void;
844
857
  OnValidate(value: unknown): void;
858
+ Remove(value: X509Certificate): void;
845
859
  }
846
860
 
847
861
 
@@ -448,6 +448,7 @@ export interface WindowsPrincipal$instance extends ClaimsPrincipal {
448
448
  readonly DeviceClaims: IEnumerable_1<Claim>;
449
449
  readonly Identity: IIdentity | IIdentity | undefined;
450
450
  readonly UserClaims: IEnumerable_1<Claim>;
451
+ IsInRole(rid: int): boolean;
451
452
  IsInRole(sid: SecurityIdentifier): boolean;
452
453
  IsInRole(role: WindowsBuiltInRole): boolean;
453
454
  IsInRole(role: string): boolean;
@@ -3033,11 +3033,11 @@
3033
3033
  "isExtensionMethod": false
3034
3034
  },
3035
3035
  {
3036
- "stableId": "System.Private.CoreLib:System.Text.ASCIIEncoding::GetString(System.ReadOnlySpan_1):System.String",
3036
+ "stableId": "System.Private.CoreLib:System.Text.ASCIIEncoding::GetString(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
3037
3037
  "clrName": "GetString",
3038
3038
  "metadataToken": 0,
3039
- "canonicalSignature": "(System.ReadOnlySpan_1):System.String",
3040
- "normalizedSignature": "GetString|(System.ReadOnlySpan_1):System.String|static=false",
3039
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
3040
+ "normalizedSignature": "GetString|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String|static=false",
3041
3041
  "emitScope": "ClassSurface",
3042
3042
  "provenance": "BaseOverload",
3043
3043
  "arity": 0,
@@ -10120,11 +10120,11 @@
10120
10120
  "isExtensionMethod": false
10121
10121
  },
10122
10122
  {
10123
- "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetByteCount(System.ReadOnlySpan_1):System.Int32",
10123
+ "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetByteCount(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32",
10124
10124
  "clrName": "GetByteCount",
10125
10125
  "metadataToken": 0,
10126
- "canonicalSignature": "(System.ReadOnlySpan_1):System.Int32",
10127
- "normalizedSignature": "GetByteCount|(System.ReadOnlySpan_1):System.Int32|static=false",
10126
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32",
10127
+ "normalizedSignature": "GetByteCount|(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32|static=false",
10128
10128
  "emitScope": "ClassSurface",
10129
10129
  "provenance": "BaseOverload",
10130
10130
  "arity": 0,
@@ -10220,11 +10220,11 @@
10220
10220
  "isExtensionMethod": false
10221
10221
  },
10222
10222
  {
10223
- "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetBytes(System.ReadOnlySpan_1,System.Span_1):System.Int32",
10223
+ "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetBytes(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32",
10224
10224
  "clrName": "GetBytes",
10225
10225
  "metadataToken": 0,
10226
- "canonicalSignature": "(System.ReadOnlySpan_1,System.Span_1):System.Int32",
10227
- "normalizedSignature": "GetBytes|(System.ReadOnlySpan_1,System.Span_1):System.Int32|static=false",
10226
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32",
10227
+ "normalizedSignature": "GetBytes|(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32|static=false",
10228
10228
  "emitScope": "ClassSurface",
10229
10229
  "provenance": "BaseOverload",
10230
10230
  "arity": 0,
@@ -10260,11 +10260,11 @@
10260
10260
  "isExtensionMethod": false
10261
10261
  },
10262
10262
  {
10263
- "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetCharCount(System.ReadOnlySpan_1):System.Int32",
10263
+ "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetCharCount(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32",
10264
10264
  "clrName": "GetCharCount",
10265
10265
  "metadataToken": 0,
10266
- "canonicalSignature": "(System.ReadOnlySpan_1):System.Int32",
10267
- "normalizedSignature": "GetCharCount|(System.ReadOnlySpan_1):System.Int32|static=false",
10266
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32",
10267
+ "normalizedSignature": "GetCharCount|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32|static=false",
10268
10268
  "emitScope": "ClassSurface",
10269
10269
  "provenance": "BaseOverload",
10270
10270
  "arity": 0,
@@ -10320,11 +10320,11 @@
10320
10320
  "isExtensionMethod": false
10321
10321
  },
10322
10322
  {
10323
- "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetChars(System.ReadOnlySpan_1,System.Span_1):System.Int32",
10323
+ "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetChars(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32",
10324
10324
  "clrName": "GetChars",
10325
10325
  "metadataToken": 0,
10326
- "canonicalSignature": "(System.ReadOnlySpan_1,System.Span_1):System.Int32",
10327
- "normalizedSignature": "GetChars|(System.ReadOnlySpan_1,System.Span_1):System.Int32|static=false",
10326
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32",
10327
+ "normalizedSignature": "GetChars|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32|static=false",
10328
10328
  "emitScope": "ClassSurface",
10329
10329
  "provenance": "BaseOverload",
10330
10330
  "arity": 0,
@@ -10360,11 +10360,11 @@
10360
10360
  "isExtensionMethod": false
10361
10361
  },
10362
10362
  {
10363
- "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetString(System.ReadOnlySpan_1):System.String",
10363
+ "stableId": "System.Private.CoreLib:System.Text.UnicodeEncoding::GetString(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
10364
10364
  "clrName": "GetString",
10365
10365
  "metadataToken": 0,
10366
- "canonicalSignature": "(System.ReadOnlySpan_1):System.String",
10367
- "normalizedSignature": "GetString|(System.ReadOnlySpan_1):System.String|static=false",
10366
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
10367
+ "normalizedSignature": "GetString|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String|static=false",
10368
10368
  "emitScope": "ClassSurface",
10369
10369
  "provenance": "BaseOverload",
10370
10370
  "arity": 0,
@@ -10916,11 +10916,11 @@
10916
10916
  "isExtensionMethod": false
10917
10917
  },
10918
10918
  {
10919
- "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetByteCount(System.ReadOnlySpan_1):System.Int32",
10919
+ "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetByteCount(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32",
10920
10920
  "clrName": "GetByteCount",
10921
10921
  "metadataToken": 0,
10922
- "canonicalSignature": "(System.ReadOnlySpan_1):System.Int32",
10923
- "normalizedSignature": "GetByteCount|(System.ReadOnlySpan_1):System.Int32|static=false",
10922
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32",
10923
+ "normalizedSignature": "GetByteCount|(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32|static=false",
10924
10924
  "emitScope": "ClassSurface",
10925
10925
  "provenance": "BaseOverload",
10926
10926
  "arity": 0,
@@ -11016,11 +11016,11 @@
11016
11016
  "isExtensionMethod": false
11017
11017
  },
11018
11018
  {
11019
- "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetBytes(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11019
+ "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetBytes(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32",
11020
11020
  "clrName": "GetBytes",
11021
11021
  "metadataToken": 0,
11022
- "canonicalSignature": "(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11023
- "normalizedSignature": "GetBytes|(System.ReadOnlySpan_1,System.Span_1):System.Int32|static=false",
11022
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32",
11023
+ "normalizedSignature": "GetBytes|(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32|static=false",
11024
11024
  "emitScope": "ClassSurface",
11025
11025
  "provenance": "BaseOverload",
11026
11026
  "arity": 0,
@@ -11056,11 +11056,11 @@
11056
11056
  "isExtensionMethod": false
11057
11057
  },
11058
11058
  {
11059
- "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetCharCount(System.ReadOnlySpan_1):System.Int32",
11059
+ "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetCharCount(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32",
11060
11060
  "clrName": "GetCharCount",
11061
11061
  "metadataToken": 0,
11062
- "canonicalSignature": "(System.ReadOnlySpan_1):System.Int32",
11063
- "normalizedSignature": "GetCharCount|(System.ReadOnlySpan_1):System.Int32|static=false",
11062
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32",
11063
+ "normalizedSignature": "GetCharCount|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32|static=false",
11064
11064
  "emitScope": "ClassSurface",
11065
11065
  "provenance": "BaseOverload",
11066
11066
  "arity": 0,
@@ -11116,11 +11116,11 @@
11116
11116
  "isExtensionMethod": false
11117
11117
  },
11118
11118
  {
11119
- "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetChars(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11119
+ "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetChars(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32",
11120
11120
  "clrName": "GetChars",
11121
11121
  "metadataToken": 0,
11122
- "canonicalSignature": "(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11123
- "normalizedSignature": "GetChars|(System.ReadOnlySpan_1,System.Span_1):System.Int32|static=false",
11122
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32",
11123
+ "normalizedSignature": "GetChars|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32|static=false",
11124
11124
  "emitScope": "ClassSurface",
11125
11125
  "provenance": "BaseOverload",
11126
11126
  "arity": 0,
@@ -11156,11 +11156,11 @@
11156
11156
  "isExtensionMethod": false
11157
11157
  },
11158
11158
  {
11159
- "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetString(System.ReadOnlySpan_1):System.String",
11159
+ "stableId": "System.Private.CoreLib:System.Text.UTF32Encoding::GetString(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
11160
11160
  "clrName": "GetString",
11161
11161
  "metadataToken": 0,
11162
- "canonicalSignature": "(System.ReadOnlySpan_1):System.String",
11163
- "normalizedSignature": "GetString|(System.ReadOnlySpan_1):System.String|static=false",
11162
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
11163
+ "normalizedSignature": "GetString|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String|static=false",
11164
11164
  "emitScope": "ClassSurface",
11165
11165
  "provenance": "BaseOverload",
11166
11166
  "arity": 0,
@@ -11679,11 +11679,11 @@
11679
11679
  "isExtensionMethod": false
11680
11680
  },
11681
11681
  {
11682
- "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetByteCount(System.ReadOnlySpan_1):System.Int32",
11682
+ "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetByteCount(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32",
11683
11683
  "clrName": "GetByteCount",
11684
11684
  "metadataToken": 0,
11685
- "canonicalSignature": "(System.ReadOnlySpan_1):System.Int32",
11686
- "normalizedSignature": "GetByteCount|(System.ReadOnlySpan_1):System.Int32|static=false",
11685
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32",
11686
+ "normalizedSignature": "GetByteCount|(System.ReadOnlySpan_1\u003CSystem.Char\u003E):System.Int32|static=false",
11687
11687
  "emitScope": "ClassSurface",
11688
11688
  "provenance": "BaseOverload",
11689
11689
  "arity": 0,
@@ -11779,11 +11779,11 @@
11779
11779
  "isExtensionMethod": false
11780
11780
  },
11781
11781
  {
11782
- "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetBytes(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11782
+ "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetBytes(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32",
11783
11783
  "clrName": "GetBytes",
11784
11784
  "metadataToken": 0,
11785
- "canonicalSignature": "(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11786
- "normalizedSignature": "GetBytes|(System.ReadOnlySpan_1,System.Span_1):System.Int32|static=false",
11785
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32",
11786
+ "normalizedSignature": "GetBytes|(System.ReadOnlySpan_1\u003CSystem.Char\u003E,System.Span_1\u003CSystem.Byte\u003E):System.Int32|static=false",
11787
11787
  "emitScope": "ClassSurface",
11788
11788
  "provenance": "BaseOverload",
11789
11789
  "arity": 0,
@@ -11819,11 +11819,11 @@
11819
11819
  "isExtensionMethod": false
11820
11820
  },
11821
11821
  {
11822
- "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetCharCount(System.ReadOnlySpan_1):System.Int32",
11822
+ "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetCharCount(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32",
11823
11823
  "clrName": "GetCharCount",
11824
11824
  "metadataToken": 0,
11825
- "canonicalSignature": "(System.ReadOnlySpan_1):System.Int32",
11826
- "normalizedSignature": "GetCharCount|(System.ReadOnlySpan_1):System.Int32|static=false",
11825
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32",
11826
+ "normalizedSignature": "GetCharCount|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.Int32|static=false",
11827
11827
  "emitScope": "ClassSurface",
11828
11828
  "provenance": "BaseOverload",
11829
11829
  "arity": 0,
@@ -11879,11 +11879,11 @@
11879
11879
  "isExtensionMethod": false
11880
11880
  },
11881
11881
  {
11882
- "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetChars(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11882
+ "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetChars(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32",
11883
11883
  "clrName": "GetChars",
11884
11884
  "metadataToken": 0,
11885
- "canonicalSignature": "(System.ReadOnlySpan_1,System.Span_1):System.Int32",
11886
- "normalizedSignature": "GetChars|(System.ReadOnlySpan_1,System.Span_1):System.Int32|static=false",
11885
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32",
11886
+ "normalizedSignature": "GetChars|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E,System.Span_1\u003CSystem.Char\u003E):System.Int32|static=false",
11887
11887
  "emitScope": "ClassSurface",
11888
11888
  "provenance": "BaseOverload",
11889
11889
  "arity": 0,
@@ -11919,11 +11919,11 @@
11919
11919
  "isExtensionMethod": false
11920
11920
  },
11921
11921
  {
11922
- "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetString(System.ReadOnlySpan_1):System.String",
11922
+ "stableId": "System.Private.CoreLib:System.Text.UTF7Encoding::GetString(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
11923
11923
  "clrName": "GetString",
11924
11924
  "metadataToken": 0,
11925
- "canonicalSignature": "(System.ReadOnlySpan_1):System.String",
11926
- "normalizedSignature": "GetString|(System.ReadOnlySpan_1):System.String|static=false",
11925
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
11926
+ "normalizedSignature": "GetString|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String|static=false",
11927
11927
  "emitScope": "ClassSurface",
11928
11928
  "provenance": "BaseOverload",
11929
11929
  "arity": 0,
@@ -12723,11 +12723,11 @@
12723
12723
  "isExtensionMethod": false
12724
12724
  },
12725
12725
  {
12726
- "stableId": "System.Private.CoreLib:System.Text.UTF8Encoding::GetString(System.ReadOnlySpan_1):System.String",
12726
+ "stableId": "System.Private.CoreLib:System.Text.UTF8Encoding::GetString(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
12727
12727
  "clrName": "GetString",
12728
12728
  "metadataToken": 0,
12729
- "canonicalSignature": "(System.ReadOnlySpan_1):System.String",
12730
- "normalizedSignature": "GetString|(System.ReadOnlySpan_1):System.String|static=false",
12729
+ "canonicalSignature": "(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String",
12730
+ "normalizedSignature": "GetString|(System.ReadOnlySpan_1\u003CSystem.Byte\u003E):System.String|static=false",
12731
12731
  "emitScope": "ClassSurface",
12732
12732
  "provenance": "BaseOverload",
12733
12733
  "arity": 0,
@@ -840,6 +840,7 @@ export interface StringBuilder$instance extends System_Runtime_Serialization_Int
840
840
  EnsureCapacity(capacity: int): int;
841
841
  Equals(sb: StringBuilder): boolean;
842
842
  Equals(span: ReadOnlySpan_1<System_Internal.Char>): boolean;
843
+ Equals(obj: unknown): boolean;
843
844
  GetChunks(): StringBuilder_ChunkEnumerator;
844
845
  Insert(index: int, value: string, count: int): StringBuilder;
845
846
  Insert(index: int, value: string): StringBuilder;