[TFM] Update TizenFX TFM to net6.0 (#5360)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Security.Cryptography.X509Certificates.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Security.Cryptography.X509Certificates</name>
5   </assembly>
6   <members>
7     <member name="T:Microsoft.Win32.SafeHandles.SafeX509ChainHandle">
8       <summary>Provides a wrapper class that represents the handle of an X.509 chain object. For more information, see <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" />.</summary>
9     </member>
10     <member name="M:Microsoft.Win32.SafeHandles.SafeX509ChainHandle.#ctor">
11       <summary>Creates a <see cref="T:Microsoft.Win32.SafeHandles.SafeX509ChainHandle" />.</summary>
12     </member>
13     <member name="T:System.Security.Cryptography.X509Certificates.CertificateRequest">
14       <summary>Represents an abstraction over the PKCS#10 CertificationRequestInfo and the X.509 TbsCertificate.</summary>
15     </member>
16     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.#ctor(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)">
17       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.CertificateRequest" /> class using the specified subject name, ECDSA key, and hash algorithm.</summary>
18       <param name="subjectName">The parsed representation of the subject name for the certificate or certificate request.</param>
19       <param name="key">An ECDSA key whose public key material will be included in the certificate or certificate request. If the <see cref="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSelfSigned(System.DateTimeOffset,System.DateTimeOffset)" /> method is called, this key is used as a private key.</param>
20       <param name="hashAlgorithm">The hash algorithm to use when signing the certificate or certificate request.</param>
21       <exception cref="T:System.ArgumentNullException">
22         <paramref name="subjectName" /> is <see langword="null" />.
23
24  -or-  
25
26 <paramref name="key" /> is <see langword="null" />.</exception>
27       <exception cref="T:System.ArgumentException">
28         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
29     </member>
30     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.#ctor(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)">
31       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.CertificateRequest" /> class using the specified subject name, RSA key, and hash algorithm.</summary>
32       <param name="subjectName">The parsed representation of the subject name for the certificate or certificate request.</param>
33       <param name="key">A RSA key whose public key material will be included in the certificate or certificate request. If the <see cref="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSelfSigned(System.DateTimeOffset,System.DateTimeOffset)" /> method is called, this key is used as a private key.</param>
34       <param name="hashAlgorithm">The hash algorithm to use when signing the certificate or certificate request.</param>
35       <param name="padding">The RSA signature padding to apply if self-signing or being signed with an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</param>
36       <exception cref="T:System.ArgumentNullException">
37         <paramref name="subjectName" /> is <see langword="null" />.
38
39  -or-  
40
41 <paramref name="key" /> is <see langword="null" />.
42
43  -or-  
44
45 <paramref name="padding" /> is <see langword="null" />.</exception>
46       <exception cref="T:System.ArgumentException">
47         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
48     </member>
49     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.#ctor(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName)">
50       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.CertificateRequest" /> class using the specified subject name, encoded public key, and hash algorithm.</summary>
51       <param name="subjectName">The parsed representation of the subject name for the certificate or certificate request.</param>
52       <param name="publicKey">The encoded representation of the public key to include in the certificate or certificate request.</param>
53       <param name="hashAlgorithm">The hash algorithm to use when signing the certificate or certificate request.</param>
54       <exception cref="T:System.ArgumentNullException">
55         <paramref name="subjectName" /> is <see langword="null" />.
56
57  -or-  
58
59 <paramref name="publicKey" /> is <see langword="null" />.</exception>
60       <exception cref="T:System.ArgumentException">
61         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
62     </member>
63     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.#ctor(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)">
64       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.CertificateRequest" /> class using the specified subject name, ECDSA key, and hash algorithm.</summary>
65       <param name="subjectName">The string representation of the subject name for the certificate or certificate request.</param>
66       <param name="key">An ECDSA key whose public key material will be included in the certificate or certificate request. If the <see cref="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSelfSigned(System.DateTimeOffset,System.DateTimeOffset)" /> method is called, this key is used as a private key.</param>
67       <param name="hashAlgorithm">The hash algorithm to use when signing the certificate or certificate request.</param>
68       <exception cref="T:System.ArgumentNullException">
69         <paramref name="subjectName" /> is <see langword="null" />.
70
71  -or-  
72
73 <paramref name="key" /> is <see langword="null" />.</exception>
74       <exception cref="T:System.ArgumentException">
75         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
76     </member>
77     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.#ctor(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)">
78       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.CertificateRequest" /> class using the specified subject name, RSA key, and hash algorithm.</summary>
79       <param name="subjectName">The string representation of the subject name for the certificate or certificate request.</param>
80       <param name="key">A RSA key whose public key material will be included in the certificate or certificate request. If the <see cref="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSelfSigned(System.DateTimeOffset,System.DateTimeOffset)" /> method is called, this key is used as a private key.</param>
81       <param name="hashAlgorithm">The hash algorithm to use when signing the certificate or certificate request.</param>
82       <param name="padding">The RSA signature padding to apply if self-signing or being signed with an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</param>
83       <exception cref="T:System.ArgumentNullException">
84         <paramref name="subjectName" /> is <see langword="null" />.
85
86  -or-  
87
88 <paramref name="key" /> is <see langword="null" />.
89
90  -or-  
91
92 <paramref name="padding" /> is <see langword="null" />.</exception>
93       <exception cref="T:System.ArgumentException">
94         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
95     </member>
96     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.Create(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X509SignatureGenerator,System.DateTimeOffset,System.DateTimeOffset,System.Byte[])">
97       <summary>Signs the current certificate request to create a chain-signed or self-signed certificate.</summary>
98       <param name="issuerName">The <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> for the issuer.</param>
99       <param name="generator">An <see cref="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator" /> object representing the issuing certificate authority.</param>
100       <param name="notBefore">The oldest date and time when this certificate is considered valid. Typically <see cref="P:System.DateTimeOffset.UtcNow" />, plus or minus a few seconds.</param>
101       <param name="notAfter">The date and time when this certificate is no longer considered valid.</param>
102       <param name="serialNumber">The serial number to use for the new certificate. This value should be unique per issuer. The value is interpreted as an unsigned integer of arbitrary size in big-endian byte ordering. RFC 3280 recommends confining it to 20 bytes or less.</param>
103       <exception cref="T:System.ArgumentNullException">
104         <paramref name="issuerCertificate" /> is <see langword="null" />.
105
106  -or-
107
108 <paramref name="generator" /> is <see langword="null" />.</exception>
109       <exception cref="T:System.ArgumentException">
110         <paramref name="notAfter" /> represents a date and time that happens earlier than <paramref name="notBefore" />.
111
112  -or-
113
114 <paramref name="serialNumber" /> is zero length or <see langword="null" />.</exception>
115       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurs during the signing operation.</exception>
116       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with the specified values. The returned object won't assert <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" />.</returns>
117     </member>
118     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.Create(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X509SignatureGenerator,System.DateTimeOffset,System.DateTimeOffset,System.ReadOnlySpan{System.Byte})">
119       <summary>Sign the current certificate request to create a chain-signed or self-signed certificate.</summary>
120       <param name="issuerName">The distinguished name of the issuer.</param>
121       <param name="generator">The issuing certificate authority.</param>
122       <param name="notBefore">The oldest date and time where this certificate is considered valid.
123               Typically <see cref="P:System.DateTimeOffset.UtcNow" />, plus or minus a few seconds.</param>
124       <param name="notAfter">The date and time where this certificate is no longer considered valid.</param>
125       <param name="serialNumber">The serial number to use for the new certificate. This value should be unique per issuer.
126               The value is interpreted as an unsigned (big) integer in big endian byte ordering.</param>
127       <exception cref="T:System.ArgumentNullException">
128         <paramref name="issuerName" /> or <paramref name="generator" /> is <see langword="null" />.</exception>
129       <exception cref="T:System.ArgumentException">
130         <paramref name="notAfter" /> represents a date and time before <paramref name="notBefore" />.
131
132 -or
133
134 <paramref name="serialNumber" /> has length 0.</exception>
135       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred during the signing operation.</exception>
136       <returns>A certificate with the specified values. The returned object will not assert <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" />.</returns>
137     </member>
138     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.Create(System.Security.Cryptography.X509Certificates.X509Certificate2,System.DateTimeOffset,System.DateTimeOffset,System.Byte[])">
139       <summary>Creates a certificate using the established subject, key, and optional extensions using the specified certificate as the issuer.</summary>
140       <param name="issuerCertificate">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> instance representing the issuing Certificate Authority (CA).</param>
141       <param name="notBefore">The oldest date and time when this certificate is considered valid. Typically <see cref="P:System.DateTimeOffset.UtcNow" />, plus or minus a few seconds.</param>
142       <param name="notAfter">The date and time when this certificate is no longer considered valid.</param>
143       <param name="serialNumber">The serial number to use for the new certificate. This value should be unique per issuer. The value is interpreted as an unsigned integer of arbitrary size in big-endian byte ordering. RFC 3280 recommends confining it to 20 bytes or less.</param>
144       <exception cref="T:System.ArgumentNullException">
145         <paramref name="issuerCertificate" /> is <see langword="null" />.</exception>
146       <exception cref="T:System.ArgumentException">The <paramref name="issuerCertificate" /> doesn't contain a private key.
147
148  -or-
149
150 The type of signing key represented by <paramref name="issuerCertificate" /> couldn't be determined.
151
152  -or-
153
154 <paramref name="notAfter" /> represents a date and time that happens earlier than <paramref name="notBefore" />.
155
156  -or-
157
158 <paramref name="serialNumber" /> is zero length or <see langword="null" />.
159
160  -or-
161
162 <paramref name="issuerCertificate" /> has a different key algorithm than the requested certificate.
163
164 -or-
165
166 The <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" /> value for <paramref name="issuerCertificate" /> is <see langword="false" />.</exception>
167       <exception cref="T:System.InvalidOperationException">
168         <paramref name="issuerCertificate" /> is an RSA certificate and the current object was created using a constructor that doesn't accept a <paramref name="padding" /> parameter.</exception>
169       <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm" /> property value is not supported.</exception>
170       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with the specified values. The returned object won't assert <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" />.</returns>
171     </member>
172     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.Create(System.Security.Cryptography.X509Certificates.X509Certificate2,System.DateTimeOffset,System.DateTimeOffset,System.ReadOnlySpan{System.Byte})">
173       <summary>Create a certificate using the established subject, key, and optional extensions using the provided certificate as the issuer.</summary>
174       <param name="issuerCertificate">An X509Certificate2 instance representing the issuing Certificate Authority (CA).</param>
175       <param name="notBefore">The oldest date and time where this certificate is considered valid.
176               Typically <see cref="P:System.DateTimeOffset.UtcNow" />, plus or minus a few seconds.</param>
177       <param name="notAfter">The date and time where this certificate is no longer considered valid.</param>
178       <param name="serialNumber">The serial number to use for the new certificate. This value should be unique per issuer.
179               The value is interpreted as an unsigned (big) integer in big endian byte ordering.</param>
180       <exception cref="T:System.ArgumentNullException">
181         <paramref name="issuerCertificate" /> is <see langword="null" />.</exception>
182       <exception cref="T:System.ArgumentException">The <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" /> value for <paramref name="issuerCertificate" /> is <see langword="false" />.</exception>
183       <exception cref="T:System.ArgumentException">The type of signing key represented by <paramref name="issuerCertificate" /> could not be determined.</exception>
184       <exception cref="T:System.ArgumentException">
185         <paramref name="notAfter" /> represents a date and time before <paramref name="notBefore" />.</exception>
186       <exception cref="T:System.ArgumentException">
187         <paramref name="serialNumber" /> has length 0.</exception>
188       <exception cref="T:System.ArgumentException">
189         <paramref name="issuerCertificate" /> has a different key algorithm than the requested certificate.</exception>
190       <exception cref="T:System.InvalidOperationException">
191         <paramref name="issuerCertificate" /> is an RSA certificate and this object was created via a constructor that doesn't accept an <see cref="T:System.Security.Cryptography.RSASignaturePadding" /> value.</exception>
192       <returns>A certificate with the specified values. The returned object will not assert <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" />.</returns>
193     </member>
194     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSelfSigned(System.DateTimeOffset,System.DateTimeOffset)">
195       <summary>Creates a self-signed certificate using the established subject, key, and optional extensions.</summary>
196       <param name="notBefore">The oldest date and time when this certificate is considered valid. Typically <see cref="P:System.DateTimeOffset.UtcNow" />, plus or minus a few seconds.</param>
197       <param name="notAfter">The date and time when this certificate is no longer considered valid.</param>
198       <exception cref="T:System.ArgumentException">
199         <paramref name="notAfter" /> represents a date and time that happens earlier than <paramref name="notBefore" />.</exception>
200       <exception cref="T:System.InvalidOperationException">The current object was created using a constructor that doesn't accept a signing key.</exception>
201       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurs during the certificate creation process.</exception>
202       <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm" /> property value is not supported.</exception>
203       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with the specified values. The returned object will assert <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" />.</returns>
204     </member>
205     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSigningRequest">
206       <summary>Creates an ASN.1 DER-encoded PKCS#10 CertificationRequest value representing the state of the current object.</summary>
207       <exception cref="T:System.InvalidOperationException">The current object was created using a constructor that doesn't accept a signing key.</exception>
208       <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm" /> property value is not supported.</exception>
209       <returns>A DER-encoded certificate signing request.</returns>
210     </member>
211     <member name="M:System.Security.Cryptography.X509Certificates.CertificateRequest.CreateSigningRequest(System.Security.Cryptography.X509Certificates.X509SignatureGenerator)">
212       <summary>Creates an ASN.1 DER-encoded PKCS#10 CertificationRequest representing the current state of the current object using the provided signature generator.</summary>
213       <param name="signatureGenerator">The signature generator with which to sign the request.</param>
214       <exception cref="T:System.ArgumentNullException">
215         <paramref name="signatureGenerator" /> is <see langword="null" />.</exception>
216       <returns>A DER-encoded certificate signing request.</returns>
217     </member>
218     <member name="P:System.Security.Cryptography.X509Certificates.CertificateRequest.CertificateExtensions">
219       <summary>Gets the X.509 Certificate Extensions collection, which is a mutable collection, to include in the certificate or certificate request.</summary>
220       <returns>The X.509 Certificate Extensions collection to include in the certificate or certificate request.</returns>
221     </member>
222     <member name="P:System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm">
223       <summary>Gets the hash algorithm to use when signing the certificate or certificate request.</summary>
224       <returns>The hash algorithm to use when signing the certificate or certificate request.</returns>
225     </member>
226     <member name="P:System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey">
227       <summary>Gets a representation of the public key for the certificate or certificate request.</summary>
228       <returns>The representation of the public key for the certificate or certificate request.</returns>
229     </member>
230     <member name="P:System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName">
231       <summary>Gets the X.500 Distinguished Name to use as the Subject in a created certificate or certificate request.</summary>
232       <returns>The X.500 Distinguished Name to use as the Subject in a created certificate or certificate request.</returns>
233     </member>
234     <member name="T:System.Security.Cryptography.X509Certificates.DSACertificateExtensions">
235       <summary>Provides extension methods for retrieving <see cref="T:System.Security.Cryptography.DSA" /> implementations for the public and private keys of an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</summary>
236     </member>
237     <member name="M:System.Security.Cryptography.X509Certificates.DSACertificateExtensions.CopyWithPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.DSA)">
238       <summary>Combines a private key with the public key of a <see cref="T:System.Security.Cryptography.DSA" /> certificate to generate a new DSA certificate.</summary>
239       <param name="certificate">The DSA certificate.</param>
240       <param name="privateKey">The private DSA key.</param>
241       <exception cref="T:System.ArgumentNullException">
242         <paramref name="certificate" /> or <paramref name="privateKey" /> is <see langword="null" />.</exception>
243       <exception cref="T:System.InvalidOperationException">The certificate already has an associated private key.</exception>
244       <exception cref="T:System.ArgumentException">The certificate doesn't have a public key.  
245   
246  -or-  
247   
248  The specified private key doesn't match the public key for the specified certificate.</exception>
249       <returns>A new DSA certificate with the <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" /> property set to <see langword="true" />. The input DSA certificate object isn't modified.</returns>
250     </member>
251     <member name="M:System.Security.Cryptography.X509Certificates.DSACertificateExtensions.GetDSAPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2)">
252       <summary>Gets the <see cref="T:System.Security.Cryptography.DSA" /> private key from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</summary>
253       <param name="certificate">The certificate.</param>
254       <exception cref="T:System.ArgumentNullException">
255         <paramref name="certificate" /> is <see langword="null" />.</exception>
256       <returns>The private key, or <see langword="null" /> if the certificate does not have a DSA private key.</returns>
257     </member>
258     <member name="M:System.Security.Cryptography.X509Certificates.DSACertificateExtensions.GetDSAPublicKey(System.Security.Cryptography.X509Certificates.X509Certificate2)">
259       <summary>Gets the <see cref="T:System.Security.Cryptography.DSA" /> public key from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</summary>
260       <param name="certificate">The certificate.</param>
261       <exception cref="T:System.ArgumentNullException">
262         <paramref name="certificate" /> is <see langword="null" />.</exception>
263       <exception cref="T:System.Security.Cryptography.CryptographicException">Windows reports an error. See the <see cref="P:System.Exception.Message" /> property for more information.</exception>
264       <returns>The public key, or <see langword="null" /> if the certificate does not have a DSA public key.</returns>
265     </member>
266     <member name="T:System.Security.Cryptography.X509Certificates.ECDsaCertificateExtensions">
267       <summary>Provides extension methods for retrieving <see cref="T:System.Security.Cryptography.ECDsa" /> implementations for the     public and private keys of a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> certificate.</summary>
268     </member>
269     <member name="M:System.Security.Cryptography.X509Certificates.ECDsaCertificateExtensions.CopyWithPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.ECDsa)">
270       <summary>Combines a private key with the public key of an <see cref="T:System.Security.Cryptography.ECDsa" /> certificate to generate a new ECDSA certificate.</summary>
271       <param name="certificate">The ECDSA certificate.</param>
272       <param name="privateKey">The private ECDSA key.</param>
273       <exception cref="T:System.ArgumentNullException">
274         <paramref name="certificate" /> or <paramref name="privateKey" /> is <see langword="null" />.</exception>
275       <exception cref="T:System.InvalidOperationException">The certificate already has an associated private key.</exception>
276       <exception cref="T:System.ArgumentException">The certificate doesn't have a public key.  
277   
278  -or-  
279   
280  The specified private key doesn't match the public key for the specified certificate.</exception>
281       <returns>A new ECDSA certificate with the <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" /> property set to <see langword="true" />. The input ECDSA certificate object isn't modified.</returns>
282     </member>
283     <member name="M:System.Security.Cryptography.X509Certificates.ECDsaCertificateExtensions.GetECDsaPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2)">
284       <summary>Gets the <see cref="T:System.Security.Cryptography.ECDsa" /> private key from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> certificate.</summary>
285       <param name="certificate">The certificate.</param>
286       <exception cref="T:System.ArgumentNullException">
287         <paramref name="certificate" /> is <see langword="null" />.</exception>
288       <returns>The private key, or <see langword="null" /> if the certificate does not have an ECDsa private key.</returns>
289     </member>
290     <member name="M:System.Security.Cryptography.X509Certificates.ECDsaCertificateExtensions.GetECDsaPublicKey(System.Security.Cryptography.X509Certificates.X509Certificate2)">
291       <summary>Gets the <see cref="T:System.Security.Cryptography.ECDsa" /> public key from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> certificate.</summary>
292       <param name="certificate">The certificate.</param>
293       <exception cref="T:System.ArgumentNullException">
294         <paramref name="certificate" /> is <see langword="null" />.</exception>
295       <exception cref="T:System.Security.Cryptography.CryptographicException">The handle is invalid.</exception>
296       <returns>The public key, or <see langword="null" /> if the certificate does not have an ECDsa public key.</returns>
297     </member>
298     <member name="T:System.Security.Cryptography.X509Certificates.OpenFlags">
299       <summary>Specifies the way to open the X.509 certificate store.</summary>
300     </member>
301     <member name="F:System.Security.Cryptography.X509Certificates.OpenFlags.IncludeArchived">
302       <summary>Open the X.509 certificate store and include archived certificates.</summary>
303     </member>
304     <member name="F:System.Security.Cryptography.X509Certificates.OpenFlags.MaxAllowed">
305       <summary>Open the X.509 certificate store for the highest access allowed.</summary>
306     </member>
307     <member name="F:System.Security.Cryptography.X509Certificates.OpenFlags.OpenExistingOnly">
308       <summary>Opens only existing stores; if no store exists, the <see cref="M:System.Security.Cryptography.X509Certificates.X509Store.Open(System.Security.Cryptography.X509Certificates.OpenFlags)" /> method will not create a new store.</summary>
309     </member>
310     <member name="F:System.Security.Cryptography.X509Certificates.OpenFlags.ReadOnly">
311       <summary>Open the X.509 certificate store for reading only.</summary>
312     </member>
313     <member name="F:System.Security.Cryptography.X509Certificates.OpenFlags.ReadWrite">
314       <summary>Open the X.509 certificate store for both reading and writing.</summary>
315     </member>
316     <member name="T:System.Security.Cryptography.X509Certificates.PublicKey">
317       <summary>Represents a certificate's public key information. This class cannot be inherited.</summary>
318     </member>
319     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.#ctor(System.Security.Cryptography.AsymmetricAlgorithm)">
320       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.PublicKey" /> class using SubjectPublicKeyInfo from an <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" />.</summary>
321       <param name="key">An asymmetric algorithm to obtain the SubjectPublicKeyInfo from.</param>
322       <exception cref="T:System.Security.Cryptography.CryptographicException">The SubjectPublicKeyInfo could not be decoded. The <see cref="M:System.Security.Cryptography.AsymmetricAlgorithm.ExportSubjectPublicKeyInfo" /> must return a valid ASN.1-DER encoded X.509 SubjectPublicKeyInfo.</exception>
323       <exception cref="T:System.NotImplementedException">
324         <see cref="M:System.Security.Cryptography.AsymmetricAlgorithm.ExportSubjectPublicKeyInfo" /> has not been overridden in a derived class.</exception>
325     </member>
326     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData)">
327       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.PublicKey" /> class using an object identifier (OID) object of the public key, an ASN.1-encoded representation of the public key parameters, and an ASN.1-encoded representation of the public key value.</summary>
328       <param name="oid">An object identifier (OID) object that represents the public key.</param>
329       <param name="parameters">An ASN.1-encoded representation of the public key parameters.</param>
330       <param name="keyValue">An ASN.1-encoded representation of the public key value.</param>
331     </member>
332     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.CreateFromSubjectPublicKeyInfo(System.ReadOnlySpan{System.Byte},System.Int32@)">
333       <summary>Creates a new instance of <see cref="T:System.Security.Cryptography.X509Certificates.PublicKey" /> from a X.509 SubjectPublicKeyInfo.</summary>
334       <param name="source">The bytes of an X.509 SubjectPublicKeyInfo structure in the ASN.1-DER encoding.</param>
335       <param name="bytesRead">When this method returns, contains a value that indicates the number of bytes read from <paramref name="source" />. This parameter is treated as uninitialized.</param>
336       <exception cref="T:System.Security.Cryptography.CryptographicException">The SubjectPublicKeyInfo could not be decoded.</exception>
337       <returns>A public key representing the SubjectPublicKeyInfo.</returns>
338     </member>
339     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.ExportSubjectPublicKeyInfo">
340       <summary>Exports the current key in the X.509 SubjectPublicKeyInfo format.</summary>
341       <returns>A byte array containing the X.509 SubjectPublicKeyInfo representation of this key.</returns>
342     </member>
343     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.GetDSAPublicKey">
344       <summary>Gets the <see cref="T:System.Security.Cryptography.DSA" /> public key, or <see langword="null" /> if the key is not an DSA key.</summary>
345       <exception cref="T:System.Security.Cryptography.CryptographicException">The key contents are corrupt or could not be read successfully.</exception>
346       <returns>The public key, or <see langword="null" /> if the key is not an DSA key.</returns>
347     </member>
348     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.GetECDiffieHellmanPublicKey">
349       <summary>Gets the <see cref="T:System.Security.Cryptography.ECDiffieHellman" /> public key, or <see langword="null" /> if the key is not an ECDiffieHellman key.</summary>
350       <exception cref="T:System.Security.Cryptography.CryptographicException">The key contents are corrupt or could not be read successfully.</exception>
351       <returns>The public key, or <see langword="null" /> if the key is not an ECDiffieHellman key.</returns>
352     </member>
353     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.GetECDsaPublicKey">
354       <summary>Gets the <see cref="T:System.Security.Cryptography.ECDsa" /> public key, or <see langword="null" /> if the key is not an ECDsa key.</summary>
355       <exception cref="T:System.Security.Cryptography.CryptographicException">The key contents are corrupt or could not be read successfully.</exception>
356       <returns>The public key, or <see langword="null" /> if the key is not an ECDsa key.</returns>
357     </member>
358     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.GetRSAPublicKey">
359       <summary>Gets the <see cref="T:System.Security.Cryptography.RSA" /> public key, or <see langword="null" /> if the key is not an RSA key.</summary>
360       <exception cref="T:System.Security.Cryptography.CryptographicException">The key contents are corrupt or could not be read successfully.</exception>
361       <returns>The public key, or <see langword="null" /> if the key is not an RSA key.</returns>
362     </member>
363     <member name="M:System.Security.Cryptography.X509Certificates.PublicKey.TryExportSubjectPublicKeyInfo(System.Span{System.Byte},System.Int32@)">
364       <summary>Attempts to export the current key in the X.509 SubjectPublicKeyInfo format into a provided buffer.</summary>
365       <param name="destination">The byte span to receive the X.509 SubjectPublicKeyInfo data.</param>
366       <param name="bytesWritten">When this method returns, contains a value that indicates the number of bytes written to <paramref name="destination" />. This parameter is treated as uninitialized.</param>
367       <returns>
368         <see langword="true" /> if <paramref name="destination" /> is big enough to receive the output; otherwise, <see langword="false" />.</returns>
369     </member>
370     <member name="P:System.Security.Cryptography.X509Certificates.PublicKey.EncodedKeyValue">
371       <summary>Gets the ASN.1-encoded representation of the public key value.</summary>
372       <returns>The ASN.1-encoded representation of the public key value.</returns>
373     </member>
374     <member name="P:System.Security.Cryptography.X509Certificates.PublicKey.EncodedParameters">
375       <summary>Gets the ASN.1-encoded representation of the public key parameters.</summary>
376       <returns>The ASN.1-encoded representation of the public key parameters.</returns>
377     </member>
378     <member name="P:System.Security.Cryptography.X509Certificates.PublicKey.Key">
379       <summary>Gets an <see cref="T:System.Security.Cryptography.RSA" /> derived object or a <see cref="T:System.Security.Cryptography.DSA" /> derived object representing the public key.</summary>
380       <exception cref="T:System.NotSupportedException">The key algorithm is not supported.</exception>
381       <returns>An <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object representing the public key.</returns>
382     </member>
383     <member name="P:System.Security.Cryptography.X509Certificates.PublicKey.Oid">
384       <summary>Gets an object identifier (OID) object of the public key.</summary>
385       <returns>An object identifier (OID) object of the public key.</returns>
386     </member>
387     <member name="T:System.Security.Cryptography.X509Certificates.RSACertificateExtensions">
388       <summary>Provides extension methods for retrieving <see cref="T:System.Security.Cryptography.RSA" /> implementations for the public and private keys of an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</summary>
389     </member>
390     <member name="M:System.Security.Cryptography.X509Certificates.RSACertificateExtensions.CopyWithPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA)">
391       <summary>Combines a private key with the public key of an <see cref="T:System.Security.Cryptography.RSA" /> certificate to generate a new RSA certificate.</summary>
392       <param name="certificate">The RSA certificate.</param>
393       <param name="privateKey">The private RSA key.</param>
394       <exception cref="T:System.ArgumentNullException">
395         <paramref name="certificate" /> or <paramref name="privateKey" /> is <see langword="null" />.</exception>
396       <exception cref="T:System.InvalidOperationException">The certificate already has an associated private key.</exception>
397       <exception cref="T:System.ArgumentException">The certificate doesn't have a public key.  
398   
399  -or-  
400   
401  The specified private key doesn't match the public key for the specified certificate.</exception>
402       <returns>A new RSA certificate with the <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" /> property set to <see langword="true" />. The input RSA certificate object isn't modified.</returns>
403     </member>
404     <member name="M:System.Security.Cryptography.X509Certificates.RSACertificateExtensions.GetRSAPrivateKey(System.Security.Cryptography.X509Certificates.X509Certificate2)">
405       <summary>Gets the <see cref="T:System.Security.Cryptography.RSA" /> private key from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</summary>
406       <param name="certificate">The certificate.</param>
407       <exception cref="T:System.ArgumentNullException">
408         <paramref name="certificate" /> is <see langword="null" />.</exception>
409       <returns>The private key, or <see langword="null" /> if the certificate does not have an RSA private key.</returns>
410     </member>
411     <member name="M:System.Security.Cryptography.X509Certificates.RSACertificateExtensions.GetRSAPublicKey(System.Security.Cryptography.X509Certificates.X509Certificate2)">
412       <summary>Gets the <see cref="T:System.Security.Cryptography.RSA" /> public key from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</summary>
413       <param name="certificate">The certificate.</param>
414       <exception cref="T:System.ArgumentNullException">
415         <paramref name="certificate" /> is <see langword="null" />.</exception>
416       <exception cref="T:System.Security.Cryptography.CryptographicException">Windows reports an error. See the <see cref="P:System.Exception.Message" /> property for more information.</exception>
417       <returns>The public key, or <see langword="null" /> if the certificate does not have an RSA public key.</returns>
418     </member>
419     <member name="T:System.Security.Cryptography.X509Certificates.StoreLocation">
420       <summary>Specifies the location of the X.509 certificate store.</summary>
421     </member>
422     <member name="F:System.Security.Cryptography.X509Certificates.StoreLocation.CurrentUser">
423       <summary>The X.509 certificate store used by the current user.</summary>
424     </member>
425     <member name="F:System.Security.Cryptography.X509Certificates.StoreLocation.LocalMachine">
426       <summary>The X.509 certificate store assigned to the local machine.</summary>
427     </member>
428     <member name="T:System.Security.Cryptography.X509Certificates.StoreName">
429       <summary>Specifies the name of the X.509 certificate store to open.</summary>
430     </member>
431     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.AddressBook">
432       <summary>The X.509 certificate store for other users.</summary>
433     </member>
434     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.AuthRoot">
435       <summary>The X.509 certificate store for third-party certificate authorities (CAs).</summary>
436     </member>
437     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.CertificateAuthority">
438       <summary>The X.509 certificate store for intermediate certificate authorities (CAs).</summary>
439     </member>
440     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.Disallowed">
441       <summary>The X.509 certificate store for revoked certificates.</summary>
442     </member>
443     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.My">
444       <summary>The X.509 certificate store for personal certificates.</summary>
445     </member>
446     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.Root">
447       <summary>The X.509 certificate store for trusted root certificate authorities (CAs).</summary>
448     </member>
449     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.TrustedPeople">
450       <summary>The X.509 certificate store for directly trusted people and resources.</summary>
451     </member>
452     <member name="F:System.Security.Cryptography.X509Certificates.StoreName.TrustedPublisher">
453       <summary>The X.509 certificate store for directly trusted publishers.</summary>
454     </member>
455     <member name="T:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder">
456       <summary>This class facilitates building a subject alternative name extension for an X.509 certificate.</summary>
457     </member>
458     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.#ctor">
459       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder" /> class.</summary>
460     </member>
461     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.AddDnsName(System.String)">
462       <summary>Adds a DNS Name to the subject alternative name extension.</summary>
463       <param name="dnsName">The DNS name to be added.</param>
464       <exception cref="T:System.ArgumentOutOfRangeException">
465         <paramref name="dnsName" /> is either <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
466     </member>
467     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.AddEmailAddress(System.String)">
468       <summary>Adds an email address to the subject alternative name extension.</summary>
469       <param name="emailAddress">The email address to be added.</param>
470       <exception cref="T:System.ArgumentOutOfRangeException">
471         <paramref name="emailAddress" /> is either <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
472     </member>
473     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.AddIpAddress(System.Net.IPAddress)">
474       <summary>Adds an IP address to the subject alternative name extension.</summary>
475       <param name="ipAddress">The IP address to be added.</param>
476       <exception cref="T:System.ArgumentNullException">
477         <paramref name="ipAddress" /> is <see langword="null" />.</exception>
478     </member>
479     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.AddUri(System.Uri)">
480       <summary>Adds a Uniform Resource Identifier (URI) to the subject alternative name extension.</summary>
481       <param name="uri">The URI to be added.</param>
482       <exception cref="T:System.ArgumentNullException">
483         <paramref name="uri" /> is <see langword="null" />.</exception>
484     </member>
485     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.AddUserPrincipalName(System.String)">
486       <summary>Adds a User Principal Name (UPN) to the subject alternative name extension.</summary>
487       <param name="upn">The UPN to be added.</param>
488       <exception cref="T:System.ArgumentOutOfRangeException">
489         <paramref name="upn" /> is either <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
490     </member>
491     <member name="M:System.Security.Cryptography.X509Certificates.SubjectAlternativeNameBuilder.Build(System.Boolean)">
492       <summary>Returns an <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object that represents the encoded subject alternative name extension.</summary>
493       <param name="critical">
494         <see langword="true" /> to mark the extension as <see cref="P:System.Security.Cryptography.X509Certificates.X509Extension.Critical" />; otherwise, <see langword="false" />. The default value is <see langword="false" />.</param>
495       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object that represents the encoded subject alternative name extension.</returns>
496     </member>
497     <member name="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName">
498       <summary>Represents the distinguished name of an X509 certificate. This class cannot be inherited.</summary>
499     </member>
500     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.#ctor(System.Byte[])">
501       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> class using information from the specified byte array.</summary>
502       <param name="encodedDistinguishedName">A byte array that contains distinguished name information.</param>
503     </member>
504     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.#ctor(System.ReadOnlySpan{System.Byte})">
505       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> class using information from the provided data.</summary>
506       <param name="encodedDistinguishedName">The encoded distinguished name.</param>
507     </member>
508     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.#ctor(System.Security.Cryptography.AsnEncodedData)">
509       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> class using the specified <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object.</summary>
510       <param name="encodedDistinguishedName">An <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object that represents the distinguished name.</param>
511     </member>
512     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.#ctor(System.Security.Cryptography.X509Certificates.X500DistinguishedName)">
513       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> class using the specified <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> object.</summary>
514       <param name="distinguishedName">An <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> object.</param>
515     </member>
516     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.#ctor(System.String)">
517       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> class using information from the specified string.</summary>
518       <param name="distinguishedName">A string that represents the distinguished name.</param>
519     </member>
520     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.#ctor(System.String,System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)">
521       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> class using the specified string and <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags" /> flag.</summary>
522       <param name="distinguishedName">A string that represents the distinguished name.</param>
523       <param name="flag">A bitwise combination of the enumeration values that specify the characteristics of the distinguished name.</param>
524     </member>
525     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.Decode(System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)">
526       <summary>Decodes a distinguished name using the characteristics specified by the <paramref name="flag" /> parameter.</summary>
527       <param name="flag">A bitwise combination of the enumeration values that specify the characteristics of the distinguished name.</param>
528       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate has an invalid name.</exception>
529       <returns>The decoded distinguished name.</returns>
530     </member>
531     <member name="M:System.Security.Cryptography.X509Certificates.X500DistinguishedName.Format(System.Boolean)">
532       <summary>Returns a formatted version of an X500 distinguished name for printing or for output to a text window or to a console.</summary>
533       <param name="multiLine">
534         <see langword="true" /> if the return string should contain carriage returns; otherwise, <see langword="false" />.</param>
535       <returns>A formatted string that represents the X500 distinguished name.</returns>
536     </member>
537     <member name="P:System.Security.Cryptography.X509Certificates.X500DistinguishedName.Name">
538       <summary>Gets the comma-delimited distinguished name from an X500 certificate.</summary>
539       <returns>The comma-delimited distinguished name of the X509 certificate.</returns>
540     </member>
541     <member name="T:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags">
542       <summary>Specifies characteristics of the X.500 distinguished name.</summary>
543     </member>
544     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.DoNotUsePlusSign">
545       <summary>The distinguished name does not use the plus sign.</summary>
546     </member>
547     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.DoNotUseQuotes">
548       <summary>The distinguished name does not use quotation marks.</summary>
549     </member>
550     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.ForceUTF8Encoding">
551       <summary>Forces the distinguished name to encode specific X.500 keys as UTF-8 strings rather than printable Unicode strings. For more information and the list of X.500 keys affected, see the X500NameFlags enumeration.</summary>
552     </member>
553     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.None">
554       <summary>The distinguished name has no special characteristics.</summary>
555     </member>
556     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.Reversed">
557       <summary>The distinguished name is reversed.</summary>
558     </member>
559     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.UseCommas">
560       <summary>The distinguished name uses commas.</summary>
561     </member>
562     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.UseNewLines">
563       <summary>The distinguished name uses the new line character.</summary>
564     </member>
565     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.UseSemicolons">
566       <summary>The distinguished name uses semicolons.</summary>
567     </member>
568     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.UseT61Encoding">
569       <summary>The distinguished name uses T61 encoding.</summary>
570     </member>
571     <member name="F:System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags.UseUTF8Encoding">
572       <summary>The distinguished name uses UTF8 encoding instead of Unicode character encoding.</summary>
573     </member>
574     <member name="T:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension">
575       <summary>Defines the constraints set on a certificate. This class cannot be inherited.</summary>
576     </member>
577     <member name="M:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.#ctor">
578       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" /> class.</summary>
579     </member>
580     <member name="M:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.#ctor(System.Boolean,System.Boolean,System.Int32,System.Boolean)">
581       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" /> class. Parameters specify a value that indicates whether a certificate is a certificate authority (CA) certificate, a value that indicates whether the certificate has a restriction on the number of path levels it allows, the number of levels allowed in a certificate's path, and a value that indicates whether the extension is critical.</summary>
582       <param name="certificateAuthority">
583         <see langword="true" /> if the certificate is a certificate authority (CA) certificate; otherwise, <see langword="false" />.</param>
584       <param name="hasPathLengthConstraint">
585         <see langword="true" /> if the certificate has a restriction on the number of path levels it allows; otherwise, <see langword="false" />.</param>
586       <param name="pathLengthConstraint">The number of levels allowed in a certificate's path.</param>
587       <param name="critical">
588         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
589     </member>
590     <member name="M:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.#ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)">
591       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" /> class using an <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object and a value that identifies whether the extension is critical.</summary>
592       <param name="encodedBasicConstraints">The encoded data to use to create the extension.</param>
593       <param name="critical">
594         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
595     </member>
596     <member name="M:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.CopyFrom(System.Security.Cryptography.AsnEncodedData)">
597       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" /> class using an <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object.</summary>
598       <param name="asnEncodedData">The encoded data to use to create the extension.</param>
599     </member>
600     <member name="P:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.CertificateAuthority">
601       <summary>Gets a value indicating whether a certificate is a certificate authority (CA) certificate.</summary>
602       <returns>
603         <see langword="true" /> if the certificate is a certificate authority (CA) certificate, otherwise, <see langword="false" />.</returns>
604     </member>
605     <member name="P:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.HasPathLengthConstraint">
606       <summary>Gets a value indicating whether a certificate has a restriction on the number of path levels it allows.</summary>
607       <exception cref="T:System.Security.Cryptography.CryptographicException">The extension cannot be decoded.</exception>
608       <returns>
609         <see langword="true" /> if the certificate has a restriction on the number of path levels it allows, otherwise, <see langword="false" />.</returns>
610     </member>
611     <member name="P:System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension.PathLengthConstraint">
612       <summary>Gets the number of levels allowed in a certificate's path.</summary>
613       <exception cref="T:System.Security.Cryptography.CryptographicException">The extension cannot be decoded.</exception>
614       <returns>An integer indicating the number of levels allowed in a certificate's path.</returns>
615     </member>
616     <member name="T:System.Security.Cryptography.X509Certificates.X509Certificate">
617       <summary>Provides methods that help you use X.509 v.3 certificates.</summary>
618     </member>
619     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor">
620       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class.</summary>
621     </member>
622     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[])">
623       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class defined from a sequence of bytes representing an X.509v3 certificate.</summary>
624       <param name="data">A byte array containing data from an X.509 certificate.</param>
625       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
626   
627 -   The certificate file does not exist.  
628   
629 -   The certificate is invalid.  
630   
631 -   The certificate's password is incorrect.</exception>
632       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
633   
634  -or-  
635   
636  The length of the <paramref name="rawData" /> parameter is 0.</exception>
637     </member>
638     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.Security.SecureString)">
639       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array and a password.</summary>
640       <param name="rawData">A byte array that contains data from an X.509 certificate.</param>
641       <param name="password">The password required to access the X.509 certificate data.</param>
642       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
643   
644 -   The certificate file does not exist.  
645   
646 -   The certificate is invalid.  
647   
648 -   The certificate's password is incorrect.</exception>
649       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
650   
651  -or-  
652   
653  The length of the <paramref name="rawData" /> parameter is 0.</exception>
654     </member>
655     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
656       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array, a password, and a key storage flag.</summary>
657       <param name="rawData">A byte array that contains data from an X.509 certificate.</param>
658       <param name="password">The password required to access the X.509 certificate data.</param>
659       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
660       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
661   
662 -   The certificate file does not exist.  
663   
664 -   The certificate is invalid.  
665   
666 -   The certificate's password is incorrect.</exception>
667       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
668   
669  -or-  
670   
671  The length of the <paramref name="rawData" /> parameter is 0.</exception>
672     </member>
673     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.String)">
674       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array and a password.</summary>
675       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
676       <param name="password">The password required to access the X.509 certificate data.</param>
677       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
678   
679 -   The certificate file does not exist.  
680   
681 -   The certificate is invalid.  
682   
683 -   The certificate's password is incorrect.</exception>
684       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
685   
686  -or-  
687   
688  The length of the <paramref name="rawData" /> parameter is 0.</exception>
689     </member>
690     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
691       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a byte array, a password, and a key storage flag.</summary>
692       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
693       <param name="password">The password required to access the X.509 certificate data.</param>
694       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
695       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
696   
697 -   The certificate file does not exist.  
698   
699 -   The certificate is invalid.  
700   
701 -   The certificate's password is incorrect.</exception>
702       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
703   
704  -or-  
705   
706  The length of the <paramref name="rawData" /> parameter is 0.</exception>
707     </member>
708     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.IntPtr)">
709       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a handle to an unmanaged <see langword="PCCERT_CONTEXT" /> structure.</summary>
710       <param name="handle">A handle to an unmanaged <see langword="PCCERT_CONTEXT" /> structure.</param>
711       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
712   
713 -   The certificate file does not exist.  
714   
715 -   The certificate is invalid.  
716   
717 -   The certificate's password is incorrect.</exception>
718       <exception cref="T:System.ArgumentException">The handle parameter does not represent a valid <see langword="PCCERT_CONTEXT" /> structure.</exception>
719     </member>
720     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
721       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object and a <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure.</summary>
722       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that describes serialization information.</param>
723       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that describes how serialization should be performed.</param>
724       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
725   
726 -   The certificate file does not exist.  
727   
728 -   The certificate is invalid.  
729   
730 -   The certificate's password is incorrect.</exception>
731     </member>
732     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)">
733       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using another <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class.</summary>
734       <param name="cert">A <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class from which to initialize this class.</param>
735       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
736   
737 -   The certificate file does not exist.  
738   
739 -   The certificate is invalid.  
740   
741 -   The certificate's password is incorrect.</exception>
742       <exception cref="T:System.ArgumentNullException">The value of the <paramref name="cert" /> parameter is <see langword="null" />.</exception>
743     </member>
744     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String)">
745       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using the name of a PKCS7 signed file.</summary>
746       <param name="fileName">The name of a PKCS7 signed file.</param>
747       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
748   
749 -   The certificate file does not exist.  
750   
751 -   The certificate is invalid.  
752   
753 -   The certificate's password is incorrect.</exception>
754       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
755     </member>
756     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.Security.SecureString)">
757       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a certificate file name and a password.</summary>
758       <param name="fileName">The name of a certificate file.</param>
759       <param name="password">The password required to access the X.509 certificate data.</param>
760       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
761   
762 -   The certificate file does not exist.  
763   
764 -   The certificate is invalid.  
765   
766 -   The certificate's password is incorrect.</exception>
767       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
768     </member>
769     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
770       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using a certificate file name, a password, and a key storage flag.</summary>
771       <param name="fileName">The name of a certificate file.</param>
772       <param name="password">The password required to access the X.509 certificate data.</param>
773       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
774       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
775   
776 -   The certificate file does not exist.  
777   
778 -   The certificate is invalid.  
779   
780 -   The certificate's password is incorrect.</exception>
781       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
782     </member>
783     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.String)">
784       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using the name of a PKCS7 signed file and a password to access the certificate.</summary>
785       <param name="fileName">The name of a PKCS7 signed file.</param>
786       <param name="password">The password required to access the X.509 certificate data.</param>
787       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
788   
789 -   The certificate file does not exist.  
790   
791 -   The certificate is invalid.  
792   
793 -   The certificate's password is incorrect.</exception>
794       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
795     </member>
796     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.#ctor(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
797       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> class using the name of a PKCS7 signed file, a password to access the certificate, and a key storage flag.</summary>
798       <param name="fileName">The name of a PKCS7 signed file.</param>
799       <param name="password">The password required to access the X.509 certificate data.</param>
800       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
801       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
802   
803 -   The certificate file does not exist.  
804   
805 -   The certificate is invalid.  
806   
807 -   The certificate's password is incorrect.</exception>
808       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
809     </member>
810     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.CreateFromCertFile(System.String)">
811       <summary>Creates an X.509v3 certificate from the specified PKCS7 signed file.</summary>
812       <param name="filename">The path of the PKCS7 signed file from which to create the X.509 certificate.</param>
813       <exception cref="T:System.ArgumentException">The <paramref name="filename" /> parameter is <see langword="null" />.</exception>
814       <returns>The newly created X.509 certificate.</returns>
815     </member>
816     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.CreateFromSignedFile(System.String)">
817       <summary>Creates an X.509v3 certificate from the specified signed file.</summary>
818       <param name="filename">The path of the signed file from which to create the X.509 certificate.</param>
819       <returns>The newly created X.509 certificate.</returns>
820     </member>
821     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Dispose">
822       <summary>Releases all resources used by the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</summary>
823     </member>
824     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Dispose(System.Boolean)">
825       <summary>Releases all of the unmanaged resources used by this <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> and optionally releases the managed resources.</summary>
826       <param name="disposing">
827         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
828     </member>
829     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Equals(System.Object)">
830       <summary>Compares two <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects for equality.</summary>
831       <param name="obj">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to compare to the current object.</param>
832       <returns>
833         <see langword="true" /> if the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object is equal to the object specified by the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
834     </member>
835     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Equals(System.Security.Cryptography.X509Certificates.X509Certificate)">
836       <summary>Compares two <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects for equality.</summary>
837       <param name="other">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to compare to the current object.</param>
838       <returns>
839         <see langword="true" /> if the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object is equal to the object specified by the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
840     </member>
841     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Export(System.Security.Cryptography.X509Certificates.X509ContentType)">
842       <summary>Exports the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to a byte array in a format described by one of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values.</summary>
843       <param name="contentType">One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values that describes how to format the output data.</param>
844       <exception cref="T:System.Security.Cryptography.CryptographicException">A value other than <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert" />, <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert" />, or <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> was passed to the <paramref name="contentType" /> parameter.  
845   
846  -or-  
847   
848  The certificate could not be exported.</exception>
849       <returns>An array of bytes that represents the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</returns>
850     </member>
851     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Export(System.Security.Cryptography.X509Certificates.X509ContentType,System.Security.SecureString)">
852       <summary>Exports the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to a byte array using the specified format and a password.</summary>
853       <param name="contentType">One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values that describes how to format the output data.</param>
854       <param name="password">The password required to access the X.509 certificate data.</param>
855       <exception cref="T:System.Security.Cryptography.CryptographicException">A value other than <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert" />, <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert" />, or <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> was passed to the <paramref name="contentType" /> parameter.  
856   
857  -or-  
858   
859  The certificate could not be exported.</exception>
860       <returns>A byte array that represents the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</returns>
861     </member>
862     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Export(System.Security.Cryptography.X509Certificates.X509ContentType,System.String)">
863       <summary>Exports the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object to a byte array in a format described by one of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values, and using the specified password.</summary>
864       <param name="contentType">One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> values that describes how to format the output data.</param>
865       <param name="password">The password required to access the X.509 certificate data.</param>
866       <exception cref="T:System.Security.Cryptography.CryptographicException">A value other than <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert" />, <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert" />, or <see cref="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12" /> was passed to the <paramref name="contentType" /> parameter.  
867   
868  -or-  
869   
870  The certificate could not be exported.</exception>
871       <returns>An array of bytes that represents the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</returns>
872     </member>
873     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.FormatDate(System.DateTime)">
874       <summary>Converts the specified date and time to a string.</summary>
875       <param name="date">The date and time to convert.</param>
876       <returns>A string representation of the value of the <see cref="T:System.DateTime" /> object.</returns>
877     </member>
878     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetCertHash">
879       <summary>Returns the hash value for the X.509v3 certificate as an array of bytes.</summary>
880       <returns>The hash value for the X.509 certificate.</returns>
881     </member>
882     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetCertHash(System.Security.Cryptography.HashAlgorithmName)">
883       <summary>Returns the hash value for the X.509v3 certificate that is computed by using the specified cryptographic hash algorithm.</summary>
884       <param name="hashAlgorithm">The name of the cryptographic hash algorithm to use.</param>
885       <exception cref="T:System.ArgumentException">
886         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or an empty string.</exception>
887       <exception cref="T:System.Security.Cryptography.CryptographicException">
888         <paramref name="hashAlgorithm" /> is not a known hash algorithm.</exception>
889       <returns>A byte array that contains the hash value for the X.509 certificate.</returns>
890     </member>
891     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetCertHashString">
892       <summary>Returns the SHA1 hash value for the X.509v3 certificate as a hexadecimal string.</summary>
893       <returns>The hexadecimal string representation of the X.509 certificate hash value.</returns>
894     </member>
895     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetCertHashString(System.Security.Cryptography.HashAlgorithmName)">
896       <summary>Returns a hexadecimal string containing the hash value for the X.509v3 certificate computed using the specified cryptographic hash algorithm.</summary>
897       <param name="hashAlgorithm">The name of the cryptographic hash algorithm to use.</param>
898       <exception cref="T:System.ArgumentException">
899         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or an empty string.</exception>
900       <exception cref="T:System.Security.Cryptography.CryptographicException">
901         <paramref name="hashAlgorithm" /> is not a known hash algorithm.</exception>
902       <returns>The hexadecimal string representation of the X.509 certificate hash value.</returns>
903     </member>
904     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetEffectiveDateString">
905       <summary>Returns the effective date of this X.509v3 certificate.</summary>
906       <returns>The effective date for this X.509 certificate.</returns>
907     </member>
908     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetExpirationDateString">
909       <summary>Returns the expiration date of this X.509v3 certificate.</summary>
910       <returns>The expiration date for this X.509 certificate.</returns>
911     </member>
912     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetFormat">
913       <summary>Returns the name of the format of this X.509v3 certificate.</summary>
914       <returns>The format of this X.509 certificate.</returns>
915     </member>
916     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetHashCode">
917       <summary>Returns the hash code for the X.509v3 certificate as an integer.</summary>
918       <returns>The hash code for the X.509 certificate as an integer.</returns>
919     </member>
920     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetIssuerName">
921       <summary>Returns the name of the certification authority that issued the X.509v3 certificate.</summary>
922       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
923   
924 -   The certificate file does not exist.  
925   
926 -   The certificate is invalid.  
927   
928 -   The certificate's password is incorrect.</exception>
929       <returns>The name of the certification authority that issued the X.509 certificate.</returns>
930     </member>
931     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetKeyAlgorithm">
932       <summary>Returns the key algorithm information for this X.509v3 certificate as a string.</summary>
933       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
934       <returns>The key algorithm information for this X.509 certificate as a string.</returns>
935     </member>
936     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetKeyAlgorithmParameters">
937       <summary>Returns the key algorithm parameters for the X.509v3 certificate as an array of bytes.</summary>
938       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
939       <returns>The key algorithm parameters for the X.509 certificate as an array of bytes.</returns>
940     </member>
941     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetKeyAlgorithmParametersString">
942       <summary>Returns the key algorithm parameters for the X.509v3 certificate as a hexadecimal string.</summary>
943       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
944       <returns>The key algorithm parameters for the X.509 certificate as a hexadecimal string.</returns>
945     </member>
946     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetName">
947       <summary>Returns the name of the principal to which the certificate was issued.</summary>
948       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
949       <returns>The name of the principal to which the certificate was issued.</returns>
950     </member>
951     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetPublicKey">
952       <summary>Returns the public key for the X.509v3 certificate as an array of bytes.</summary>
953       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
954       <returns>The public key for the X.509 certificate as an array of bytes.</returns>
955     </member>
956     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetPublicKeyString">
957       <summary>Returns the public key for the X.509v3 certificate as a hexadecimal string.</summary>
958       <returns>The public key for the X.509 certificate as a hexadecimal string.</returns>
959     </member>
960     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetRawCertData">
961       <summary>Returns the raw data for the entire X.509v3 certificate as an array of bytes.</summary>
962       <returns>A byte array containing the X.509 certificate data.</returns>
963     </member>
964     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetRawCertDataString">
965       <summary>Returns the raw data for the entire X.509v3 certificate as a hexadecimal string.</summary>
966       <returns>The X.509 certificate data as a hexadecimal string.</returns>
967     </member>
968     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetSerialNumber">
969       <summary>Returns the serial number of the X.509v3 certificate as an array of bytes in little-endian order.</summary>
970       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
971       <returns>The serial number of the X.509 certificate as an array of bytes in little-endian order.</returns>
972     </member>
973     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetSerialNumberString">
974       <summary>Returns the serial number of the X.509v3 certificate as a little-endian hexadecimal string .</summary>
975       <returns>The serial number of the X.509 certificate as a little-endian hexadecimal string.</returns>
976     </member>
977     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.Byte[])">
978       <summary>Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with data from a byte array.</summary>
979       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
980       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
981   
982  -or-  
983   
984  The length of the <paramref name="rawData" /> parameter is 0.</exception>
985       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
986     </member>
987     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.Byte[],System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
988       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object using data from a byte array, a password, and a key storage flag.</summary>
989       <param name="rawData">A byte array that contains data from an X.509 certificate.</param>
990       <param name="password">The password required to access the X.509 certificate data.</param>
991       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
992       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
993   
994  -or-  
995   
996  The length of the <paramref name="rawData" /> parameter is 0.</exception>
997       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
998     </member>
999     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1000       <summary>Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object using data from a byte array, a password, and flags for determining how the private key is imported.</summary>
1001       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1002       <param name="password">The password required to access the X.509 certificate data.</param>
1003       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1004       <exception cref="T:System.ArgumentException">The <paramref name="rawData" /> parameter is <see langword="null" />.  
1005   
1006  -or-  
1007   
1008  The length of the <paramref name="rawData" /> parameter is 0.</exception>
1009       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1010     </member>
1011     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.String)">
1012       <summary>Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with information from a certificate file.</summary>
1013       <param name="fileName">The name of a certificate file represented as a string.</param>
1014       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1015       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1016     </member>
1017     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1018       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with information from a certificate file, a password, and a key storage flag.</summary>
1019       <param name="fileName">The name of a certificate file.</param>
1020       <param name="password">The password required to access the X.509 certificate data.</param>
1021       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1022       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1023       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1024     </member>
1025     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Import(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1026       <summary>Populates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object with information from a certificate file, a password, and a <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> value.</summary>
1027       <param name="fileName">The name of a certificate file represented as a string.</param>
1028       <param name="password">The password required to access the X.509 certificate data.</param>
1029       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1030       <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1031       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1032     </member>
1033     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.Reset">
1034       <summary>Resets the state of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</summary>
1035     </member>
1036     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
1037       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete.</summary>
1038       <param name="sender">The source of the deserialization event.</param>
1039       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1040     </member>
1041     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1042       <summary>Gets serialization information with all the data needed to recreate an instance of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</summary>
1043       <param name="info">The object to populate with serialization information.</param>
1044       <param name="context">The destination context of the serialization.</param>
1045       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1046     </member>
1047     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.ToString">
1048       <summary>Returns a string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</summary>
1049       <returns>A string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</returns>
1050     </member>
1051     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.ToString(System.Boolean)">
1052       <summary>Returns a string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object, with extra information, if specified.</summary>
1053       <param name="fVerbose">
1054         <see langword="true" /> to produce the verbose form of the string representation; otherwise, <see langword="false" />.</param>
1055       <returns>A string representation of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</returns>
1056     </member>
1057     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate.TryGetCertHash(System.Security.Cryptography.HashAlgorithmName,System.Span{System.Byte},System.Int32@)">
1058       <summary>Attempts to produce a "thumbprint" for the certificate by hashing the encoded representation of the certificate with the specified hash algorithm.</summary>
1059       <param name="hashAlgorithm">The algorithm to use for the thumbprint.</param>
1060       <param name="destination">The buffer to receive the certificate thumbprint.</param>
1061       <param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
1062       <exception cref="T:System.ArgumentException">
1063         <paramref name="hashAlgorithm" />.<see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> is <see langword="null" /> or an empty string.</exception>
1064       <exception cref="T:System.Security.Cryptography.CryptographicException">
1065         <paramref name="hashAlgorithm" /> is not a known hash algorithm.</exception>
1066       <returns>
1067         <see langword="true" /> if <paramref name="destination" /> is long enough to receive the hash value; otherwise, <see langword="false" />.</returns>
1068     </member>
1069     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate.Handle">
1070       <summary>Gets a handle to a Microsoft Cryptographic API certificate context described by an unmanaged <see langword="PCCERT_CONTEXT" /> structure.</summary>
1071       <returns>An <see cref="T:System.IntPtr" /> structure that represents an unmanaged <see langword="PCCERT_CONTEXT" /> structure.</returns>
1072     </member>
1073     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate.Issuer">
1074       <summary>Gets the name of the certificate authority that issued the X.509v3 certificate.</summary>
1075       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate handle is invalid.</exception>
1076       <returns>The name of the certificate authority that issued the X.509v3 certificate.</returns>
1077     </member>
1078     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate.Subject">
1079       <summary>Gets the subject distinguished name from the certificate.</summary>
1080       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate handle is invalid.</exception>
1081       <returns>The subject distinguished name from the certificate.</returns>
1082     </member>
1083     <member name="T:System.Security.Cryptography.X509Certificates.X509Certificate2">
1084       <summary>Represents an X.509 certificate.</summary>
1085     </member>
1086     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor">
1087       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class.</summary>
1088     </member>
1089     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Byte[])">
1090       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using information from a byte array.</summary>
1091       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1092       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1093   
1094 -   The certificate file does not exist.  
1095   
1096 -   The certificate is invalid.  
1097   
1098 -   The certificate's password is incorrect.</exception>
1099     </member>
1100     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Byte[],System.Security.SecureString)">
1101       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a byte array and a password.</summary>
1102       <param name="rawData">A byte array that contains data from an X.509 certificate.</param>
1103       <param name="password">The password required to access the X.509 certificate data.</param>
1104       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1105   
1106 -   The certificate file does not exist.  
1107   
1108 -   The certificate is invalid.  
1109   
1110 -   The certificate's password is incorrect.</exception>
1111     </member>
1112     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Byte[],System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1113       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a byte array, a password, and a key storage flag.</summary>
1114       <param name="rawData">A byte array that contains data from an X.509 certificate.</param>
1115       <param name="password">The password required to access the X.509 certificate data.</param>
1116       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1117       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1118   
1119 -   The certificate file does not exist.  
1120   
1121 -   The certificate is invalid.  
1122   
1123 -   The certificate's password is incorrect.</exception>
1124     </member>
1125     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Byte[],System.String)">
1126       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a byte array and a password.</summary>
1127       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1128       <param name="password">The password required to access the X.509 certificate data.</param>
1129       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1130   
1131 -   The certificate file does not exist.  
1132   
1133 -   The certificate is invalid.  
1134   
1135 -   The certificate's password is incorrect.</exception>
1136     </member>
1137     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1138       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a byte array, a password, and a key storage flag.</summary>
1139       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1140       <param name="password">The password required to access the X.509 certificate data.</param>
1141       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1142       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1143   
1144 -   The certificate file does not exist.  
1145   
1146 -   The certificate is invalid.  
1147   
1148 -   The certificate's password is incorrect.</exception>
1149     </member>
1150     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.IntPtr)">
1151       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using an unmanaged handle.</summary>
1152       <param name="handle">A pointer to a certificate context in unmanaged code. The C structure is called <see langword="PCCERT_CONTEXT" />.</param>
1153       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1154   
1155 -   The certificate file does not exist.  
1156   
1157 -   The certificate is invalid.  
1158   
1159 -   The certificate's password is incorrect.</exception>
1160     </member>
1161     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.ReadOnlySpan{System.Byte})">
1162       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class from certificate data.</summary>
1163       <param name="rawData">The certificate data to process.</param>
1164       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs.</exception>
1165     </member>
1166     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char},System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1167       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class from certificate data, a password, and key storage flags.</summary>
1168       <param name="rawData">The certificate data to process.</param>
1169       <param name="password">The password required to access the certificate data.</param>
1170       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1171       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs.</exception>
1172     </member>
1173     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1174       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using the specified serialization and stream context information.</summary>
1175       <param name="info">The serialization information required to deserialize the new <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.</param>
1176       <param name="context">Contextual information about the source of the stream to be deserialized.</param>
1177       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
1178     </member>
1179     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate)">
1180       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</summary>
1181       <param name="certificate">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> object.</param>
1182       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1183   
1184 -   The certificate file does not exist.  
1185   
1186 -   The certificate is invalid.  
1187   
1188 -   The certificate's password is incorrect.</exception>
1189     </member>
1190     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.String)">
1191       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a certificate file name.</summary>
1192       <param name="fileName">The name of a certificate file.</param>
1193       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1194   
1195 -   The certificate file does not exist.  
1196   
1197 -   The certificate is invalid.  
1198   
1199 -   The certificate's password is incorrect.</exception>
1200     </member>
1201     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.String,System.ReadOnlySpan{System.Char},System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1202       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a certificate file name, a password, and a key storage flag.</summary>
1203       <param name="fileName">The name of a certificate file.</param>
1204       <param name="password">The password required to access the X.509 certificate data.</param>
1205       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1206       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1207   
1208 -   The certificate file does not exist.  
1209   
1210 -   The certificate is invalid.  
1211   
1212 -   The certificate's password is incorrect.</exception>
1213     </member>
1214     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.String,System.Security.SecureString)">
1215       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a certificate file name and a password.</summary>
1216       <param name="fileName">The name of a certificate file.</param>
1217       <param name="password">The password required to access the X.509 certificate data.</param>
1218       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1219   
1220 -   The certificate file does not exist.  
1221   
1222 -   The certificate is invalid.  
1223   
1224 -   The certificate's password is incorrect.</exception>
1225     </member>
1226     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1227       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a certificate file name, a password, and a key storage flag.</summary>
1228       <param name="fileName">The name of a certificate file.</param>
1229       <param name="password">The password required to access the X.509 certificate data.</param>
1230       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1231       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1232   
1233 -   The certificate file does not exist.  
1234   
1235 -   The certificate is invalid.  
1236   
1237 -   The certificate's password is incorrect.</exception>
1238     </member>
1239     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.String,System.String)">
1240       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a certificate file name and a password used to access the certificate.</summary>
1241       <param name="fileName">The name of a certificate file.</param>
1242       <param name="password">The password required to access the X.509 certificate data.</param>
1243       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1244   
1245 -   The certificate file does not exist.  
1246   
1247 -   The certificate is invalid.  
1248   
1249 -   The certificate's password is incorrect.</exception>
1250     </member>
1251     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.#ctor(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1252       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class using a certificate file name, a password used to access the certificate, and a key storage flag.</summary>
1253       <param name="fileName">The name of a certificate file.</param>
1254       <param name="password">The password required to access the X.509 certificate data.</param>
1255       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1256       <exception cref="T:System.Security.Cryptography.CryptographicException">An error with the certificate occurs. For example:  
1257   
1258 -   The certificate file does not exist.  
1259   
1260 -   The certificate is invalid.  
1261   
1262 -   The certificate's password is incorrect.</exception>
1263     </member>
1264     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.CopyWithPrivateKey(System.Security.Cryptography.ECDiffieHellman)">
1265       <summary>Combines a private key with the public key of an <see cref="T:System.Security.Cryptography.ECDiffieHellman" /> certificate to generate a new ECDiffieHellman certificate.</summary>
1266       <param name="privateKey">The private ECDiffieHellman key.</param>
1267       <exception cref="T:System.ArgumentNullException">
1268         <paramref name="privateKey" /> is <see langword="null" />.</exception>
1269       <exception cref="T:System.InvalidOperationException">The certificate already has an associated private key.</exception>
1270       <exception cref="T:System.ArgumentException">The certificate doesn't have a public key.
1271
1272 -or-
1273
1274 The specified private key doesn't match the public key for this certificate.</exception>
1275       <returns>A new ECDiffieHellman certificate with the <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey" /> property set to <see langword="true" />.
1276             The current certificate isn't modified.</returns>
1277     </member>
1278     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.CreateFromEncryptedPem(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char})">
1279       <summary>Creates a new X509 certificate from the contents of an RFC 7468 PEM-encoded certificate and password protected private key.</summary>
1280       <param name="certPem">The text of the PEM-encoded X509 certificate.</param>
1281       <param name="keyPem">The text of the password protected PEM-encoded private key.</param>
1282       <param name="password">The password for the encrypted PEM.</param>
1283       <exception cref="T:System.Security.Cryptography.CryptographicException">
1284 The contents of <paramref name="certPem" /> do not contain a PEM-encoded certificate, or it is malformed.
1285
1286 -or-
1287
1288 The contents of <paramref name="keyPem" /> do not contain a password protected PEM-encoded private key, or it is malformed.
1289
1290 -or-
1291
1292 The contents of <paramref name="keyPem" /> contains a key that does not match the public key in the certificate.
1293
1294 -or-
1295
1296 The certificate uses an unknown public key algorithm.
1297
1298 -or-
1299
1300 The password specified for the private key is incorrect.</exception>
1301       <returns>A new certificate with the private key.</returns>
1302     </member>
1303     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.CreateFromEncryptedPemFile(System.String,System.ReadOnlySpan{System.Char},System.String)">
1304       <summary>Creates a new X509 certificate from the file contents of an RFC 7468 PEM-encoded certificate and password protected private key.</summary>
1305       <param name="certPemFilePath">The path for the PEM-encoded X509 certificate.</param>
1306       <param name="password">The password for the encrypted PEM.</param>
1307       <param name="keyPemFilePath">If specified, the path for the password protected PEM-encoded private key.
1308             If unspecified, the <paramref name="certPemFilePath" /> file will be used to load the private key.</param>
1309       <exception cref="T:System.Security.Cryptography.CryptographicException">
1310 The contents of the file path in <paramref name="certPemFilePath" /> do not contain a PEM-encoded certificate, or it is malformed.
1311
1312 -or-
1313
1314 The contents of the file path in <paramref name="keyPemFilePath" /> do not contain a password protected PEM-encoded private key, or it is malformed.
1315
1316 -or-
1317
1318 The contents of the file path in <paramref name="keyPemFilePath" /> contains a key that does not match the public key in the certificate.
1319
1320 -or-
1321
1322 The certificate uses an unknown public key algorithm.
1323
1324 -or-
1325
1326 The password specified for the private key is incorrect.</exception>
1327       <exception cref="T:System.ArgumentNullException">
1328         <paramref name="certPemFilePath" /> is <see langword="null" />.</exception>
1329       <returns>A new certificate with the private key.</returns>
1330     </member>
1331     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.CreateFromPem(System.ReadOnlySpan{System.Char})">
1332       <summary>Creates a new X509 certificate from the contents of an RFC 7468 PEM-encoded certificate.</summary>
1333       <param name="certPem">The text of the PEM-encoded X509 certificate.</param>
1334       <exception cref="T:System.Security.Cryptography.CryptographicException">The contents of <paramref name="certPem" /> do not contain a PEM-encoded certificate, or it is malformed.</exception>
1335       <returns>A new X509 certificate.</returns>
1336     </member>
1337     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.CreateFromPem(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char})">
1338       <summary>Creates a new X509 certificate from the contents of an RFC 7468 PEM-encoded certificate and private key.</summary>
1339       <param name="certPem">The text of the PEM-encoded X509 certificate.</param>
1340       <param name="keyPem">The text of the PEM-encoded private key.</param>
1341       <exception cref="T:System.Security.Cryptography.CryptographicException">
1342 The contents of <paramref name="certPem" /> do not contain a PEM-encoded certificate, or it is malformed.
1343
1344 -or-
1345
1346 The contents of <paramref name="keyPem" /> do not contain a PEM-encoded private key, or it is malformed.
1347
1348 -or-
1349
1350 The contents of <paramref name="keyPem" /> contains a key that does not match the public key in the certificate.
1351
1352 -or-
1353
1354 The certificate uses an unknown public key algorithm.</exception>
1355       <returns>A new certificate with the private key.</returns>
1356     </member>
1357     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.CreateFromPemFile(System.String,System.String)">
1358       <summary>Creates a new X509 certificate from the file contents of an RFC 7468 PEM-encoded certificate and private key.</summary>
1359       <param name="certPemFilePath">The path for the PEM-encoded X509 certificate.</param>
1360       <param name="keyPemFilePath">If specified, the path for the PEM-encoded private key.
1361             If unspecified, the <paramref name="certPemFilePath" /> file will be used to load the private key.</param>
1362       <exception cref="T:System.Security.Cryptography.CryptographicException">
1363 The contents of the file path in <paramref name="certPemFilePath" /> do not contain a PEM-encoded certificate, or it is malformed.
1364
1365 -or-
1366
1367 The contents of the file path in <paramref name="keyPemFilePath" /> do not contain a PEM-encoded private key, or it is malformed.
1368
1369 -or-
1370
1371 The contents of the file path in <paramref name="keyPemFilePath" /> contains a key that does not match the public key in the certificate.
1372
1373 -or-
1374
1375 The certificate uses an unknown public key algorithm.</exception>
1376       <exception cref="T:System.ArgumentNullException">
1377         <paramref name="certPemFilePath" /> is <see langword="null" />.</exception>
1378       <returns>A new certificate with the private key.</returns>
1379     </member>
1380     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.GetCertContentType(System.Byte[])">
1381       <summary>Indicates the type of certificate contained in a byte array.</summary>
1382       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1383       <exception cref="T:System.ArgumentException">
1384         <paramref name="rawData" /> has a zero length or is <see langword="null" />.</exception>
1385       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> object.</returns>
1386     </member>
1387     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.GetCertContentType(System.ReadOnlySpan{System.Byte})">
1388       <summary>Indicates the type of certificate contained in the provided data.</summary>
1389       <param name="rawData">The data to identify.</param>
1390       <returns>One of the enumeration values that indicate the content type of the provided data.</returns>
1391     </member>
1392     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.GetCertContentType(System.String)">
1393       <summary>Indicates the type of certificate contained in a file.</summary>
1394       <param name="fileName">The name of a certificate file.</param>
1395       <exception cref="T:System.ArgumentNullException">
1396         <paramref name="fileName" /> is <see langword="null" />.</exception>
1397       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> object.</returns>
1398     </member>
1399     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.GetECDiffieHellmanPrivateKey">
1400       <summary>Gets the <see cref="T:System.Security.Cryptography.ECDiffieHellman" /> private key from this certificate.</summary>
1401       <exception cref="T:System.Security.Cryptography.CryptographicException">The handle is invalid.</exception>
1402       <returns>The private key, or <see langword="null" /> if this certificate does not have an ECDiffieHellman private key.</returns>
1403     </member>
1404     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.GetECDiffieHellmanPublicKey">
1405       <summary>Gets the <see cref="T:System.Security.Cryptography.ECDiffieHellman" /> public key from this certificate.</summary>
1406       <exception cref="T:System.Security.Cryptography.CryptographicException">The handle is invalid.</exception>
1407       <returns>The public key, or <see langword="null" /> if this certificate does not have an ECDiffieHellman public key.</returns>
1408     </member>
1409     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType,System.Boolean)">
1410       <summary>Gets the subject and issuer names from a certificate.</summary>
1411       <param name="nameType">The <see cref="T:System.Security.Cryptography.X509Certificates.X509NameType" /> value for the subject.</param>
1412       <param name="forIssuer">
1413         <see langword="true" /> to include the issuer name; otherwise, <see langword="false" />.</param>
1414       <returns>The name of the certificate.</returns>
1415     </member>
1416     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Import(System.Byte[])">
1417       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with data from a byte array.</summary>
1418       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1419     </member>
1420     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Import(System.Byte[],System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1421       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object using data from a byte array, a password, and a key storage flag.</summary>
1422       <param name="rawData">A byte array that contains data from an X.509 certificate.</param>
1423       <param name="password">The password required to access the X.509 certificate data.</param>
1424       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1425     </member>
1426     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Import(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1427       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object using data from a byte array, a password, and flags for determining how to import the private key.</summary>
1428       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1429       <param name="password">The password required to access the X.509 certificate data.</param>
1430       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1431     </member>
1432     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Import(System.String)">
1433       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with information from a certificate file.</summary>
1434       <param name="fileName">The name of a certificate.</param>
1435     </member>
1436     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Import(System.String,System.Security.SecureString,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1437       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with information from a certificate file, a password, and a key storage flag.</summary>
1438       <param name="fileName">The name of a certificate file.</param>
1439       <param name="password">The password required to access the X.509 certificate data.</param>
1440       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1441     </member>
1442     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Import(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1443       <summary>Populates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object with information from a certificate file, a password, and a <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags" /> value.</summary>
1444       <param name="fileName">The name of a certificate file.</param>
1445       <param name="password">The password required to access the X.509 certificate data.</param>
1446       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1447     </member>
1448     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Reset">
1449       <summary>Resets the state of an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</summary>
1450     </member>
1451     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.ToString">
1452       <summary>Displays an X.509 certificate in text format.</summary>
1453       <returns>The certificate information.</returns>
1454     </member>
1455     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.ToString(System.Boolean)">
1456       <summary>Displays an X.509 certificate in text format.</summary>
1457       <param name="verbose">
1458         <see langword="true" /> to display the public key, private key, extensions, and so forth; <see langword="false" /> to display information that is similar to the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> class, including thumbprint, serial number, subject and issuer names, and so on.</param>
1459       <returns>The certificate information.</returns>
1460     </member>
1461     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2.Verify">
1462       <summary>Performs a X.509 chain validation using basic validation policy.</summary>
1463       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1464       <returns>
1465         <see langword="true" /> if the validation succeeds; <see langword="false" /> if the validation fails.</returns>
1466     </member>
1467     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.Archived">
1468       <summary>Gets or sets a value indicating that an X.509 certificate is archived.</summary>
1469       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1470       <returns>
1471         <see langword="true" /> if the certificate is archived, <see langword="false" /> if the certificate is not archived.</returns>
1472     </member>
1473     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.Extensions">
1474       <summary>Gets a collection of <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> objects.</summary>
1475       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1476       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</returns>
1477     </member>
1478     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.FriendlyName">
1479       <summary>Gets or sets the associated alias for a certificate.</summary>
1480       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1481       <returns>The certificate's friendly name.</returns>
1482     </member>
1483     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.HasPrivateKey">
1484       <summary>Gets a value that indicates whether an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object contains a private key.</summary>
1485       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
1486       <returns>
1487         <see langword="true" /> if the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object contains a private key; otherwise, <see langword="false" />.</returns>
1488     </member>
1489     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.IssuerName">
1490       <summary>Gets the distinguished name of the certificate issuer.</summary>
1491       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
1492       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> object that contains the name of the certificate issuer.</returns>
1493     </member>
1494     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.NotAfter">
1495       <summary>Gets the date in local time after which a certificate is no longer valid.</summary>
1496       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1497       <returns>A <see cref="T:System.DateTime" /> object that represents the expiration date for the certificate.</returns>
1498     </member>
1499     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.NotBefore">
1500       <summary>Gets the date in local time on which a certificate becomes valid.</summary>
1501       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1502       <returns>A <see cref="T:System.DateTime" /> object that represents the effective date of the certificate.</returns>
1503     </member>
1504     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.PrivateKey">
1505       <summary>Gets or sets the <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object that represents the private key associated with a certificate.</summary>
1506       <exception cref="T:System.Security.Cryptography.CryptographicException">The key value is not an RSA or DSA key, or the key is unreadable.</exception>
1507       <exception cref="T:System.ArgumentNullException">The value being set for this property is <see langword="null" />.</exception>
1508       <exception cref="T:System.NotSupportedException">The key algorithm for this private key is not supported.</exception>
1509       <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException">The X.509 keys do not match.</exception>
1510       <exception cref="T:System.ArgumentException">The cryptographic service provider key is <see langword="null" />.</exception>
1511       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: An attempt was made to set this property.</exception>
1512       <returns>An <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm" /> object, which is either an RSA or DSA cryptographic service provider.</returns>
1513     </member>
1514     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.PublicKey">
1515       <summary>Gets a <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.PublicKey" /> object associated with a certificate.</summary>
1516       <exception cref="T:System.Security.Cryptography.CryptographicException">The key value is not an RSA or DSA key, or the key is unreadable.</exception>
1517       <returns>A <see cref="P:System.Security.Cryptography.X509Certificates.X509Certificate2.PublicKey" /> object.</returns>
1518     </member>
1519     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.RawData">
1520       <summary>Gets the raw data of a certificate.</summary>
1521       <returns>The raw data of the certificate as a byte array.</returns>
1522     </member>
1523     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.SerialNumber">
1524       <summary>Gets the serial number of a certificate as a big-endian hexadecimal string.</summary>
1525       <returns>The serial number of the certificate as a big-endian hexadecimal string.</returns>
1526     </member>
1527     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.SignatureAlgorithm">
1528       <summary>Gets the algorithm used to create the signature of a certificate.</summary>
1529       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1530       <returns>The object identifier of the signature algorithm.</returns>
1531     </member>
1532     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.SubjectName">
1533       <summary>Gets the subject distinguished name from a certificate.</summary>
1534       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate context is invalid.</exception>
1535       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X500DistinguishedName" /> object that represents the name of the certificate subject.</returns>
1536     </member>
1537     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.Thumbprint">
1538       <summary>Gets the thumbprint of a certificate.</summary>
1539       <returns>The thumbprint of the certificate.</returns>
1540     </member>
1541     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2.Version">
1542       <summary>Gets the X.509 format version of a certificate.</summary>
1543       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable.</exception>
1544       <returns>The certificate format.</returns>
1545     </member>
1546     <member name="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection">
1547       <summary>Represents a collection of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects. This class cannot be inherited.</summary>
1548     </member>
1549     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.#ctor">
1550       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> class without any <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> information.</summary>
1551     </member>
1552     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
1553       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> class using an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</summary>
1554       <param name="certificate">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object to start the collection from.</param>
1555     </member>
1556     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2[])">
1557       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> class using an array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects.</summary>
1558       <param name="certificates">An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects.</param>
1559     </member>
1560     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
1561       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> class using the specified certificate collection.</summary>
1562       <param name="certificates">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</param>
1563     </member>
1564     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Add(System.Security.Cryptography.X509Certificates.X509Certificate2)">
1565       <summary>Adds an object to the end of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" />.</summary>
1566       <param name="certificate">An X.509 certificate represented as an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</param>
1567       <exception cref="T:System.ArgumentNullException">
1568         <paramref name="certificate" /> is <see langword="null" />.</exception>
1569       <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> index at which the <paramref name="certificate" /> has been added.</returns>
1570     </member>
1571     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2[])">
1572       <summary>Adds multiple <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects in an array to the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1573       <param name="certificates">An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects.</param>
1574       <exception cref="T:System.ArgumentNullException">
1575         <paramref name="certificates" /> is <see langword="null" />.</exception>
1576     </member>
1577     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
1578       <summary>Adds multiple <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects in an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object to another <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1579       <param name="certificates">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</param>
1580       <exception cref="T:System.ArgumentNullException">
1581         <paramref name="certificates" /> is <see langword="null" />.</exception>
1582     </member>
1583     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Contains(System.Security.Cryptography.X509Certificates.X509Certificate2)">
1584       <summary>Determines whether the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object contains a specific certificate.</summary>
1585       <param name="certificate">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object to locate in the collection.</param>
1586       <exception cref="T:System.ArgumentNullException">
1587         <paramref name="certificate" /> is <see langword="null" />.</exception>
1588       <returns>
1589         <see langword="true" /> if the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> contains the specified <paramref name="certificate" />; otherwise, <see langword="false" />.</returns>
1590     </member>
1591     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Export(System.Security.Cryptography.X509Certificates.X509ContentType)">
1592       <summary>Exports X.509 certificate information into a byte array.</summary>
1593       <param name="contentType">A supported <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> object.</param>
1594       <returns>X.509 certificate information in a byte array.</returns>
1595     </member>
1596     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Export(System.Security.Cryptography.X509Certificates.X509ContentType,System.String)">
1597       <summary>Exports X.509 certificate information into a byte array using a password.</summary>
1598       <param name="contentType">A supported <see cref="T:System.Security.Cryptography.X509Certificates.X509ContentType" /> object.</param>
1599       <param name="password">A string used to protect the byte array.</param>
1600       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate is unreadable, the content is invalid or, in the case of a certificate requiring a password, the private key could not be exported because the password provided was incorrect.</exception>
1601       <returns>X.509 certificate information in a byte array.</returns>
1602     </member>
1603     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)">
1604       <summary>Searches an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object using the search criteria specified by the <see cref="T:System.Security.Cryptography.X509Certificates.X509FindType" /> enumeration and the <paramref name="findValue" /> object.</summary>
1605       <param name="findType">One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509FindType" /> values.</param>
1606       <param name="findValue">The search criteria as an object.</param>
1607       <param name="validOnly">
1608         <see langword="true" /> to allow only valid certificates to be returned from the search; otherwise, <see langword="false" />.</param>
1609       <exception cref="T:System.Security.Cryptography.CryptographicException">
1610         <paramref name="findType" /> is invalid.</exception>
1611       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
1612     </member>
1613     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.GetEnumerator">
1614       <summary>Returns an enumerator that can iterate through a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1615       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator" /> object that can iterate through the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
1616     </member>
1617     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.Byte[])">
1618       <summary>Imports a certificate in the form of a byte array into a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1619       <param name="rawData">A byte array containing data from an X.509 certificate.</param>
1620     </member>
1621     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1622       <summary>Imports a certificate, in the form of a byte array that requires a password to access the certificate, into a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1623       <param name="rawData">A byte array containing data from an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</param>
1624       <param name="password">The password required to access the certificate information.</param>
1625       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control how and where the certificate is imported.</param>
1626     </member>
1627     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.ReadOnlySpan{System.Byte})">
1628       <summary>Imports the certificates from the provided data into this collection.</summary>
1629       <param name="rawData">The certificate data to read.</param>
1630     </member>
1631     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char},System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1632       <summary>Imports the certificates from the provided data into this collection.</summary>
1633       <param name="rawData">The certificate data to read.</param>
1634       <param name="password">The password required to access the certificate data.</param>
1635       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1636     </member>
1637     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.ReadOnlySpan{System.Byte},System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1638       <summary>Imports the certificates from the provided data into this collection.</summary>
1639       <param name="rawData">The certificate data to read.</param>
1640       <param name="password">The password required to access the certificate data.</param>
1641       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1642     </member>
1643     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.String)">
1644       <summary>Imports a certificate file into a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1645       <param name="fileName">The name of the file containing the certificate information.</param>
1646     </member>
1647     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.String,System.ReadOnlySpan{System.Char},System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1648       <summary>Imports the certificates from the specified file a into this collection.</summary>
1649       <param name="fileName">The name of the file containing the certificate information.</param>
1650       <param name="password">The password required to access the certificate data.</param>
1651       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control where and how to import the certificate.</param>
1652     </member>
1653     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Import(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)">
1654       <summary>Imports a certificate file that requires a password into a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1655       <param name="fileName">The name of the file containing the certificate information.</param>
1656       <param name="password">The password required to access the certificate information.</param>
1657       <param name="keyStorageFlags">A bitwise combination of the enumeration values that control how and where the certificate is imported.</param>
1658     </member>
1659     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.ImportFromPem(System.ReadOnlySpan{System.Char})">
1660       <summary>Imports a collection of RFC 7468 PEM-encoded certificates.</summary>
1661       <param name="certPem">The text of the PEM-encoded X509 certificate collection.</param>
1662       <exception cref="T:System.Security.Cryptography.CryptographicException">The decoded contents of a PEM are invalid or corrupt and could not be imported.</exception>
1663     </member>
1664     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.ImportFromPemFile(System.String)">
1665       <summary>Imports a collection of RFC 7468 PEM-encoded certificates.</summary>
1666       <param name="certPemFilePath">The path for the PEM-encoded X509 certificate collection.</param>
1667       <exception cref="T:System.Security.Cryptography.CryptographicException">The decoded contents of a PEM are invalid or corrupt and could not be imported.</exception>
1668       <exception cref="T:System.ArgumentNullException">
1669         <paramref name="certPemFilePath" /> is <see langword="null" />.</exception>
1670     </member>
1671     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Insert(System.Int32,System.Security.Cryptography.X509Certificates.X509Certificate2)">
1672       <summary>Inserts an object into the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object at the specified index.</summary>
1673       <param name="index">The zero-based index at which to insert <paramref name="certificate" />.</param>
1674       <param name="certificate">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object to insert.</param>
1675       <exception cref="T:System.ArgumentOutOfRangeException">
1676         <paramref name="index" /> is less than zero.  
1677   
1678  -or-  
1679   
1680  <paramref name="index" /> is greater than the <see cref="P:System.Collections.CollectionBase.Count" /> property.</exception>
1681       <exception cref="T:System.NotSupportedException">The collection is read-only.  
1682   
1683  -or-  
1684   
1685  The collection has a fixed size.</exception>
1686       <exception cref="T:System.ArgumentNullException">
1687         <paramref name="certificate" /> is <see langword="null" />.</exception>
1688     </member>
1689     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Remove(System.Security.Cryptography.X509Certificates.X509Certificate2)">
1690       <summary>Removes the first occurrence of a certificate from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1691       <param name="certificate">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object to be removed from the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</param>
1692       <exception cref="T:System.ArgumentNullException">
1693         <paramref name="certificate" /> is <see langword="null" />.</exception>
1694     </member>
1695     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2[])">
1696       <summary>Removes multiple <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects in an array from an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1697       <param name="certificates">An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects.</param>
1698       <exception cref="T:System.ArgumentNullException">
1699         <paramref name="certificates" /> is <see langword="null" />.</exception>
1700     </member>
1701     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
1702       <summary>Removes multiple <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects in an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object from another <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1703       <param name="certificates">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</param>
1704       <exception cref="T:System.ArgumentNullException">
1705         <paramref name="certificates" /> is <see langword="null" />.</exception>
1706     </member>
1707     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.System#Collections#Generic#IEnumerable{System#Security#Cryptography#X509Certificates#X509Certificate2}#GetEnumerator">
1708       <summary>Returns an enumerator that iterates through the collection.</summary>
1709       <returns>An enumerator that can be used to iterate through the collection.</returns>
1710     </member>
1711     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Item(System.Int32)">
1712       <summary>Gets or sets the element at the specified index.</summary>
1713       <param name="index">The zero-based index of the element to get or set.</param>
1714       <exception cref="T:System.ArgumentOutOfRangeException">
1715         <paramref name="index" /> is less than zero.  
1716   
1717  -or-  
1718   
1719  <paramref name="index" /> is equal to or greater than the <see cref="P:System.Collections.CollectionBase.Count" /> property.</exception>
1720       <exception cref="T:System.ArgumentNullException">
1721         <paramref name="index" /> is <see langword="null" />.</exception>
1722       <returns>The element at the specified index.</returns>
1723     </member>
1724     <member name="T:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator">
1725       <summary>Supports a simple iteration over a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object. This class cannot be inherited.</summary>
1726     </member>
1727     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.MoveNext">
1728       <summary>Advances the enumerator to the next element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1729       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1730       <returns>
1731         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1732     </member>
1733     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.Reset">
1734       <summary>Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1735       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1736     </member>
1737     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.System#Collections#IEnumerator#MoveNext">
1738       <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.MoveNext" />.</summary>
1739       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1740       <returns>
1741         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1742     </member>
1743     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.System#Collections#IEnumerator#Reset">
1744       <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.Reset" />.</summary>
1745       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1746     </member>
1747     <member name="M:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.System#IDisposable#Dispose">
1748       <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
1749     </member>
1750     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.Current">
1751       <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
1752       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1753       <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
1754     </member>
1755     <member name="P:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator.System#Collections#IEnumerator#Current">
1756       <summary>For a description of this member, see <see cref="P:System.Collections.IEnumerator.Current" />.</summary>
1757       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1758       <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
1759     </member>
1760     <member name="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection">
1761       <summary>Defines a collection that stores <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects.</summary>
1762     </member>
1763     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.#ctor">
1764       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> class.</summary>
1765     </member>
1766     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate[])">
1767       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> class from an array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects.</summary>
1768       <param name="value">The array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects with which to initialize the new object.</param>
1769     </member>
1770     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.#ctor(System.Security.Cryptography.X509Certificates.X509CertificateCollection)">
1771       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> class from another <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1772       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> with which to initialize the new object.</param>
1773     </member>
1774     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.Add(System.Security.Cryptography.X509Certificates.X509Certificate)">
1775       <summary>Adds an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> with the specified value to the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1776       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to add to the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
1777       <returns>The index into the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> at which the new <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> was inserted.</returns>
1778     </member>
1779     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.AddRange(System.Security.Cryptography.X509Certificates.X509Certificate[])">
1780       <summary>Copies the elements of an array of type <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to the end of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1781       <param name="value">The array of type <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> containing the objects to add to the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
1782       <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
1783     </member>
1784     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.AddRange(System.Security.Cryptography.X509Certificates.X509CertificateCollection)">
1785       <summary>Copies the elements of the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> to the end of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1786       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> containing the objects to add to the collection.</param>
1787       <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
1788     </member>
1789     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.Contains(System.Security.Cryptography.X509Certificates.X509Certificate)">
1790       <summary>Gets a value indicating whether the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> contains the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" />.</summary>
1791       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to locate.</param>
1792       <returns>
1793         <see langword="true" /> if the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> is contained in this collection; otherwise, <see langword="false" />.</returns>
1794     </member>
1795     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.CopyTo(System.Security.Cryptography.X509Certificates.X509Certificate[],System.Int32)">
1796       <summary>Copies the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> values in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> to a one-dimensional <see cref="T:System.Array" /> instance at the specified index.</summary>
1797       <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
1798       <param name="index">The index into <paramref name="array" /> to begin copying.</param>
1799       <exception cref="T:System.ArgumentException">The <paramref name="array" /> parameter is multidimensional.  
1800   
1801  -or-  
1802   
1803  The number of elements in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> is greater than the available space between <paramref name="arrayIndex" /> and the end of <paramref name="array" />.</exception>
1804       <exception cref="T:System.ArgumentNullException">The <paramref name="array" /> parameter is <see langword="null" />.</exception>
1805       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="arrayIndex" /> parameter is less than the <paramref name="array" /> parameter's lower bound.</exception>
1806     </member>
1807     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.GetEnumerator">
1808       <summary>Returns an enumerator that can iterate through the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1809       <returns>An enumerator of the subelements of <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> you can use to iterate through the collection.</returns>
1810     </member>
1811     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.GetHashCode">
1812       <summary>Builds a hash value based on all values contained in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1813       <returns>A hash value based on all values contained in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</returns>
1814     </member>
1815     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.IndexOf(System.Security.Cryptography.X509Certificates.X509Certificate)">
1816       <summary>Returns the index of the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1817       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to locate.</param>
1818       <returns>The index of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> specified by the <paramref name="value" /> parameter in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />, if found; otherwise, -1.</returns>
1819     </member>
1820     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.Insert(System.Int32,System.Security.Cryptography.X509Certificates.X509Certificate)">
1821       <summary>Inserts a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> into the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> at the specified index.</summary>
1822       <param name="index">The zero-based index where <paramref name="value" /> should be inserted.</param>
1823       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to insert.</param>
1824     </member>
1825     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.OnValidate(System.Object)">
1826       <summary>Performs additional custom processes when validating a value.</summary>
1827       <param name="value">The object to validate.</param>
1828     </member>
1829     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.Remove(System.Security.Cryptography.X509Certificates.X509Certificate)">
1830       <summary>Removes a specific <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> from the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1831       <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to remove from the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
1832       <exception cref="T:System.ArgumentException">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> specified by the <paramref name="value" /> parameter is not found in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</exception>
1833     </member>
1834     <member name="P:System.Security.Cryptography.X509Certificates.X509CertificateCollection.Item(System.Int32)">
1835       <summary>Gets or sets the entry at the specified index of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1836       <param name="index">The zero-based index of the entry to locate in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
1837       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is outside the valid range of indexes for the collection.</exception>
1838       <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> at the specified index of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</returns>
1839     </member>
1840     <member name="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator">
1841       <summary>Enumerates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects in an <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1842     </member>
1843     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.#ctor(System.Security.Cryptography.X509Certificates.X509CertificateCollection)">
1844       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator" /> class for the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1845       <param name="mappings">The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> to enumerate.</param>
1846     </member>
1847     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.MoveNext">
1848       <summary>Advances the enumerator to the next element of the collection.</summary>
1849       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was instantiated.</exception>
1850       <returns>
1851         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1852     </member>
1853     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.Reset">
1854       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
1855       <exception cref="T:System.InvalidOperationException">The collection is modified after the enumerator is instantiated.</exception>
1856     </member>
1857     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.System#Collections#IEnumerator#MoveNext">
1858       <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.MoveNext" />.</summary>
1859       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was instantiated.</exception>
1860       <returns>
1861         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1862     </member>
1863     <member name="M:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.System#Collections#IEnumerator#Reset">
1864       <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.Reset" />.</summary>
1865       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was instantiated.</exception>
1866     </member>
1867     <member name="P:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.Current">
1868       <summary>Gets the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
1869       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1870       <returns>The current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</returns>
1871     </member>
1872     <member name="P:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator.System#Collections#IEnumerator#Current">
1873       <summary>For a description of this member, see <see cref="P:System.Collections.IEnumerator.Current" />.</summary>
1874       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1875       <returns>The current X.509 certificate object in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> object.</returns>
1876     </member>
1877     <member name="T:System.Security.Cryptography.X509Certificates.X509Chain">
1878       <summary>Represents a chain-building engine for <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> certificates.</summary>
1879     </member>
1880     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.#ctor">
1881       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> class.</summary>
1882     </member>
1883     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.#ctor(System.Boolean)">
1884       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> class specifying a value that indicates whether the machine context should be used.</summary>
1885       <param name="useMachineContext">
1886         <see langword="true" /> to use the machine context; <see langword="false" /> to use the current user context.</param>
1887     </member>
1888     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.#ctor(System.IntPtr)">
1889       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> class using an <see cref="T:System.IntPtr" /> handle to an X.509 chain.</summary>
1890       <param name="chainContext">An <see cref="T:System.IntPtr" /> handle to an X.509 chain.</param>
1891       <exception cref="T:System.ArgumentNullException">The <paramref name="chainContext" /> parameter is <see langword="null" />.</exception>
1892       <exception cref="T:System.Security.Cryptography.CryptographicException">The <paramref name="chainContext" /> parameter points to an invalid context.</exception>
1893     </member>
1894     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.Build(System.Security.Cryptography.X509Certificates.X509Certificate2)">
1895       <summary>Builds an X.509 chain using the policy specified in <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" />.</summary>
1896       <param name="certificate">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</param>
1897       <exception cref="T:System.ArgumentException">The <paramref name="certificate" /> is not a valid certificate or is <see langword="null" />.</exception>
1898       <exception cref="T:System.Security.Cryptography.CryptographicException">The <paramref name="certificate" /> is unreadable.</exception>
1899       <returns>
1900         <see langword="true" /> if the X.509 certificate is valid; otherwise, <see langword="false" />.</returns>
1901     </member>
1902     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.Create">
1903       <summary>Creates an <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> object after querying for the mapping defined in the CryptoConfig file, and maps the chain to that mapping.</summary>
1904       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> object.</returns>
1905     </member>
1906     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.Dispose">
1907       <summary>Releases all of the resources used by this <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" />.</summary>
1908     </member>
1909     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.Dispose(System.Boolean)">
1910       <summary>Releases the unmanaged resources used by this <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" />, and optionally releases the managed resources.</summary>
1911       <param name="disposing">
1912         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
1913     </member>
1914     <member name="M:System.Security.Cryptography.X509Certificates.X509Chain.Reset">
1915       <summary>Clears the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> object.</summary>
1916     </member>
1917     <member name="P:System.Security.Cryptography.X509Certificates.X509Chain.ChainContext">
1918       <summary>Gets a handle to an X.509 chain.</summary>
1919       <returns>An <see cref="T:System.IntPtr" /> handle to an X.509 chain.</returns>
1920     </member>
1921     <member name="P:System.Security.Cryptography.X509Certificates.X509Chain.ChainElements">
1922       <summary>Gets a collection of <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElement" /> objects.</summary>
1923       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" /> object.</returns>
1924     </member>
1925     <member name="P:System.Security.Cryptography.X509Certificates.X509Chain.ChainPolicy">
1926       <summary>Gets or sets the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" /> to use when building an X.509 certificate chain.</summary>
1927       <exception cref="T:System.ArgumentNullException">The value being set for this property is <see langword="null" />.</exception>
1928       <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" /> object associated with this X.509 chain.</returns>
1929     </member>
1930     <member name="P:System.Security.Cryptography.X509Certificates.X509Chain.ChainStatus">
1931       <summary>Gets the status of each element in an <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> object.</summary>
1932       <returns>An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainStatus" /> objects.</returns>
1933     </member>
1934     <member name="P:System.Security.Cryptography.X509Certificates.X509Chain.SafeHandle">
1935       <summary>Gets a safe handle for this <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> instance.</summary>
1936       <returns>The safe handle for this <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> instance.</returns>
1937     </member>
1938     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainElement">
1939       <summary>Represents an element of an X.509 chain.</summary>
1940     </member>
1941     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElement.Certificate">
1942       <summary>Gets the X.509 certificate at a particular chain element.</summary>
1943       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</returns>
1944     </member>
1945     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElement.ChainElementStatus">
1946       <summary>Gets the error status of the current X.509 certificate in a chain.</summary>
1947       <returns>An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainStatus" /> objects.</returns>
1948     </member>
1949     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElement.Information">
1950       <summary>Gets additional error information from an unmanaged certificate chain structure.</summary>
1951       <returns>A string representing the <see langword="pwszExtendedErrorInfo" /> member of the unmanaged <see langword="CERT_CHAIN_ELEMENT" /> structure in the Crypto API.</returns>
1952     </member>
1953     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection">
1954       <summary>Represents a collection of <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElement" /> objects. This class cannot be inherited.</summary>
1955     </member>
1956     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.CopyTo(System.Security.Cryptography.X509Certificates.X509ChainElement[],System.Int32)">
1957       <summary>Copies an <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" /> object into an array, starting at the specified index.</summary>
1958       <param name="array">An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElement" /> objects.</param>
1959       <param name="index">An integer representing the index value.</param>
1960       <exception cref="T:System.ArgumentOutOfRangeException">The specified <paramref name="index" /> is less than zero, or greater than or equal to the length of the array.</exception>
1961       <exception cref="T:System.ArgumentNullException">
1962         <paramref name="array" /> is <see langword="null" />.</exception>
1963       <exception cref="T:System.ArgumentException">
1964         <paramref name="index" /> plus the current count is greater than the length of the array.</exception>
1965     </member>
1966     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.GetEnumerator">
1967       <summary>Gets an <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator" /> object that can be used to navigate through a collection of chain elements.</summary>
1968       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator" /> object.</returns>
1969     </member>
1970     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.System#Collections#Generic#IEnumerable{System#Security#Cryptography#X509Certificates#X509ChainElement}#GetEnumerator">
1971       <summary>Returns an enumerator that iterates through the collection.</summary>
1972       <returns>An enumerator that can be used to iterate through the collection.</returns>
1973     </member>
1974     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1975       <summary>Copies an <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" /> object into an array, starting at the specified index.</summary>
1976       <param name="array">An array to copy the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" /> object to.</param>
1977       <param name="index">The index of <paramref name="array" /> at which to start copying.</param>
1978       <exception cref="T:System.ArgumentOutOfRangeException">The specified <paramref name="index" /> is less than zero, or greater than or equal to the length of the array.</exception>
1979       <exception cref="T:System.ArgumentNullException">
1980         <paramref name="array" /> is <see langword="null" />.</exception>
1981       <exception cref="T:System.ArgumentException">
1982         <paramref name="index" /> plus the current count is greater than the length of the array.</exception>
1983     </member>
1984     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.System#Collections#IEnumerable#GetEnumerator">
1985       <summary>Gets an <see cref="T:System.Collections.IEnumerator" /> object that can be used to navigate a collection of chain elements.</summary>
1986       <returns>An <see cref="T:System.Collections.IEnumerator" /> object.</returns>
1987     </member>
1988     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.Count">
1989       <summary>Gets the number of elements in the collection.</summary>
1990       <returns>An integer representing the number of elements in the collection.</returns>
1991     </member>
1992     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.IsSynchronized">
1993       <summary>Gets a value indicating whether the collection of chain elements is synchronized.</summary>
1994       <returns>Always returns <see langword="false" />.</returns>
1995     </member>
1996     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.Item(System.Int32)">
1997       <summary>Gets the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElement" /> object at the specified index.</summary>
1998       <param name="index">An integer value.</param>
1999       <exception cref="T:System.InvalidOperationException">
2000         <paramref name="index" /> is less than zero.</exception>
2001       <exception cref="T:System.ArgumentOutOfRangeException">
2002         <paramref name="index" /> is greater than or equal to the length of the collection.</exception>
2003       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElement" /> object.</returns>
2004     </member>
2005     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElementCollection.SyncRoot">
2006       <summary>Gets an object that can be used to synchronize access to an <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" /> object.</summary>
2007       <returns>A pointer reference to the current object.</returns>
2008     </member>
2009     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator">
2010       <summary>Supports a simple iteration over an <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />. This class cannot be inherited.</summary>
2011     </member>
2012     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.MoveNext">
2013       <summary>Advances the enumerator to the next element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
2014       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2015       <returns>
2016         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2017     </member>
2018     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.Reset">
2019       <summary>Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
2020       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2021     </member>
2022     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.System#IDisposable#Dispose">
2023       <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
2024     </member>
2025     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.Current">
2026       <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
2027       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2028       <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</returns>
2029     </member>
2030     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.System#Collections#IEnumerator#Current">
2031       <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
2032       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2033       <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</returns>
2034     </member>
2035     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy">
2036       <summary>Represents the chain policy to be applied when building an X509 certificate chain. This class cannot be inherited.</summary>
2037     </member>
2038     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainPolicy.#ctor">
2039       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" /> class.</summary>
2040     </member>
2041     <member name="M:System.Security.Cryptography.X509Certificates.X509ChainPolicy.Reset">
2042       <summary>Resets the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" /> members to their default values.</summary>
2043     </member>
2044     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.ApplicationPolicy">
2045       <summary>Gets a collection of object identifiers (OIDs) specifying which application policies or enhanced key usages (EKUs) the certificate must support.</summary>
2046       <returns>An <see cref="T:System.Security.Cryptography.OidCollection" /> object.</returns>
2047     </member>
2048     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.CertificatePolicy">
2049       <summary>Gets a collection of object identifiers (OIDs) specifying which certificate policies the certificate must support.</summary>
2050       <returns>An <see cref="T:System.Security.Cryptography.OidCollection" /> object.</returns>
2051     </member>
2052     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.CustomTrustStore">
2053       <summary>Represents a collection of certificates replacing the default certificate trust.</summary>
2054       <returns>A collection of certificates replacing the default certificate trust.</returns>
2055     </member>
2056     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.DisableCertificateDownloads">
2057       <summary>Gets or sets a value that indicates whether the chain engine can use the Authority Information Access (AIA) extension to locate unknown issuer certificates.</summary>
2058       <returns>
2059         <see langword="true" /> if using the AIA extension is disabled; otherwise, <see langword="false" />.
2060  The default is <see langword="false" />.</returns>
2061     </member>
2062     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.ExtraStore">
2063       <summary>Gets an object that represents an additional collection of certificates that can be searched by the chaining engine when validating a certificate chain.</summary>
2064       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
2065     </member>
2066     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.RevocationFlag">
2067       <summary>Gets or sets values for X509 revocation flags.</summary>
2068       <exception cref="T:System.ArgumentException">The <see cref="T:System.Security.Cryptography.X509Certificates.X509RevocationFlag" /> value supplied is not a valid flag.</exception>
2069       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509RevocationFlag" /> object.</returns>
2070     </member>
2071     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.RevocationMode">
2072       <summary>Gets or sets values for X509 certificate revocation mode.</summary>
2073       <exception cref="T:System.ArgumentException">The <see cref="T:System.Security.Cryptography.X509Certificates.X509RevocationMode" /> value supplied is not a valid flag.</exception>
2074       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509RevocationMode" /> object.</returns>
2075     </member>
2076     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.TrustMode">
2077       <summary>The mode determining the root trust for building the certificate chain.</summary>
2078       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainTrustMode" /> value determining the root trust.</returns>
2079     </member>
2080     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.UrlRetrievalTimeout">
2081       <summary>Gets or sets the maximum amount of time to be spent during online revocation verification or downloading the certificate revocation list (CRL). A value of <see cref="F:System.TimeSpan.Zero" /> means there are no limits.</summary>
2082       <returns>A <see cref="T:System.TimeSpan" /> object.</returns>
2083     </member>
2084     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.VerificationFlags">
2085       <summary>Gets verification flags for the certificate.</summary>
2086       <exception cref="T:System.ArgumentException">The <see cref="T:System.Security.Cryptography.X509Certificates.X509VerificationFlags" /> value supplied is not a valid flag. <see cref="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.NoFlag" /> is the default value.</exception>
2087       <returns>A value from the <see cref="T:System.Security.Cryptography.X509Certificates.X509VerificationFlags" /> enumeration.</returns>
2088     </member>
2089     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.VerificationTime">
2090       <summary>Gets or sets the time for which the chain is to be validated.</summary>
2091       <returns>A <see cref="T:System.DateTime" /> object.</returns>
2092     </member>
2093     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainStatus">
2094       <summary>Provides a simple structure for storing X509 chain status and error information.</summary>
2095     </member>
2096     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainStatus.Status">
2097       <summary>Specifies the status of the X509 chain.</summary>
2098       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags" /> value.</returns>
2099     </member>
2100     <member name="P:System.Security.Cryptography.X509Certificates.X509ChainStatus.StatusInformation">
2101       <summary>Specifies a description of the <see cref="P:System.Security.Cryptography.X509Certificates.X509Chain.ChainStatus" /> value.</summary>
2102       <returns>A localizable string.</returns>
2103     </member>
2104     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags">
2105       <summary>Defines the status of an X509 chain.</summary>
2106     </member>
2107     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.CtlNotSignatureValid">
2108       <summary>Specifies that the certificate trust list (CTL) contains an invalid signature.</summary>
2109     </member>
2110     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.CtlNotTimeValid">
2111       <summary>Specifies that the certificate trust list (CTL) is not valid because of an invalid time value, such as one that indicates that the CTL has expired.</summary>
2112     </member>
2113     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.CtlNotValidForUsage">
2114       <summary>Specifies that the certificate trust list (CTL) is not valid for this use.</summary>
2115     </member>
2116     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.Cyclic">
2117       <summary>Specifies that the X509 chain could not be built.</summary>
2118     </member>
2119     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.ExplicitDistrust">
2120       <summary>Specifies that the certificate is explicitly distrusted.</summary>
2121     </member>
2122     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.HasExcludedNameConstraint">
2123       <summary>Specifies that the X509 chain is invalid because a certificate has excluded a name constraint.</summary>
2124     </member>
2125     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.HasNotDefinedNameConstraint">
2126       <summary>Specifies that the certificate has an undefined name constraint.</summary>
2127     </member>
2128     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.HasNotPermittedNameConstraint">
2129       <summary>Specifies that the certificate has an impermissible name constraint.</summary>
2130     </member>
2131     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.HasNotSupportedCriticalExtension">
2132       <summary>Specifies that the certificate does not support a critical extension.</summary>
2133     </member>
2134     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.HasNotSupportedNameConstraint">
2135       <summary>Specifies that the certificate does not have a supported name constraint or has a name constraint that is unsupported.</summary>
2136     </member>
2137     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.HasWeakSignature">
2138       <summary>Specifies that the certificate has not been strong signed. Typically, this indicates that the MD2 or MD5 hashing algorithms were used to create a hash of the certificate.</summary>
2139     </member>
2140     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.InvalidBasicConstraints">
2141       <summary>Specifies that the X509 chain is invalid due to invalid basic constraints.</summary>
2142     </member>
2143     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.InvalidExtension">
2144       <summary>Specifies that the X509 chain is invalid due to an invalid extension.</summary>
2145     </member>
2146     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.InvalidNameConstraints">
2147       <summary>Specifies that the X509 chain is invalid due to invalid name constraints.</summary>
2148     </member>
2149     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.InvalidPolicyConstraints">
2150       <summary>Specifies that the X509 chain is invalid due to invalid policy constraints.</summary>
2151     </member>
2152     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.NoError">
2153       <summary>Specifies that the X509 chain has no errors.</summary>
2154     </member>
2155     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.NoIssuanceChainPolicy">
2156       <summary>Specifies that there is no certificate policy extension in the certificate. This error would occur if a group policy has specified that all certificates must have a certificate policy.</summary>
2157     </member>
2158     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.NotSignatureValid">
2159       <summary>Specifies that the X509 chain is invalid due to an invalid certificate signature.</summary>
2160     </member>
2161     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.NotTimeNested">
2162       <summary>Deprecated. Specifies that the CA (certificate authority) certificate and the issued certificate have validity periods that are not nested. For example, the CA cert can be valid from January 1 to December 1 and the issued certificate from January 2 to December 2, which would mean the validity periods are not nested.</summary>
2163     </member>
2164     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.NotTimeValid">
2165       <summary>Specifies that the X509 chain is not valid due to an invalid time value, such as a value that indicates an expired certificate.</summary>
2166     </member>
2167     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.NotValidForUsage">
2168       <summary>Specifies that the key usage is not valid.</summary>
2169     </member>
2170     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.OfflineRevocation">
2171       <summary>Specifies that the online certificate revocation list (CRL) the X509 chain relies on is currently offline.</summary>
2172     </member>
2173     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.PartialChain">
2174       <summary>Specifies that the X509 chain could not be built up to the root certificate.</summary>
2175     </member>
2176     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.RevocationStatusUnknown">
2177       <summary>Specifies that it is not possible to determine whether the certificate has been revoked. This can be due to the certificate revocation list (CRL) being offline or unavailable.</summary>
2178     </member>
2179     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.Revoked">
2180       <summary>Specifies that the X509 chain is invalid due to a revoked certificate.</summary>
2181     </member>
2182     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainStatusFlags.UntrustedRoot">
2183       <summary>Specifies that the X509 chain is invalid due to an untrusted root certificate.</summary>
2184     </member>
2185     <member name="T:System.Security.Cryptography.X509Certificates.X509ChainTrustMode">
2186       <summary>The mode determining the root trust for building the certificate chain.</summary>
2187     </member>
2188     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainTrustMode.CustomRootTrust">
2189       <summary>When this value is used, the <see cref="P:System.Security.Cryptography.X509Certificates.X509ChainPolicy.CustomTrustStore" /> will be used instead of the default root trust.</summary>
2190     </member>
2191     <member name="F:System.Security.Cryptography.X509Certificates.X509ChainTrustMode.System">
2192       <summary>Use the default (system) root trust.</summary>
2193     </member>
2194     <member name="T:System.Security.Cryptography.X509Certificates.X509ContentType">
2195       <summary>Specifies the format of an X.509 certificate.</summary>
2196     </member>
2197     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Authenticode">
2198       <summary>An Authenticode X.509 certificate.</summary>
2199     </member>
2200     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Cert">
2201       <summary>A single X.509 certificate.</summary>
2202     </member>
2203     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pfx">
2204       <summary>A PFX-formatted certificate. The <see langword="Pfx" /> value is identical to the <see langword="Pkcs12" /> value.</summary>
2205     </member>
2206     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12">
2207       <summary>A PKCS #12-formatted certificate. The <see langword="Pkcs12" /> value is identical to the <see langword="Pfx" /> value.</summary>
2208     </member>
2209     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs7">
2210       <summary>A PKCS #7-formatted certificate.</summary>
2211     </member>
2212     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedCert">
2213       <summary>A single serialized X.509 certificate.</summary>
2214     </member>
2215     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.SerializedStore">
2216       <summary>A serialized store.</summary>
2217     </member>
2218     <member name="F:System.Security.Cryptography.X509Certificates.X509ContentType.Unknown">
2219       <summary>An unknown X.509 certificate.</summary>
2220     </member>
2221     <member name="T:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension">
2222       <summary>Defines the collection of object identifiers (OIDs) that indicates the applications that use the key. This class cannot be inherited.</summary>
2223     </member>
2224     <member name="M:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension.#ctor">
2225       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" /> class.</summary>
2226     </member>
2227     <member name="M:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension.#ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)">
2228       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" /> class using an <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object and a value that identifies whether the extension is critical.</summary>
2229       <param name="encodedEnhancedKeyUsages">The encoded data to use to create the extension.</param>
2230       <param name="critical">
2231         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2232     </member>
2233     <member name="M:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension.#ctor(System.Security.Cryptography.OidCollection,System.Boolean)">
2234       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" /> class using an <see cref="T:System.Security.Cryptography.OidCollection" /> and a value that identifies whether the extension is critical.</summary>
2235       <param name="enhancedKeyUsages">An <see cref="T:System.Security.Cryptography.OidCollection" /> collection.</param>
2236       <param name="critical">
2237         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2238       <exception cref="T:System.Security.Cryptography.CryptographicException">The specified <see cref="T:System.Security.Cryptography.OidCollection" /> contains one or more corrupt values.</exception>
2239     </member>
2240     <member name="M:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension.CopyFrom(System.Security.Cryptography.AsnEncodedData)">
2241       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" /> class using an <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object.</summary>
2242       <param name="asnEncodedData">The encoded data to use to create the extension.</param>
2243     </member>
2244     <member name="P:System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension.EnhancedKeyUsages">
2245       <summary>Gets the collection of object identifiers (OIDs) that indicate the applications that use the key.</summary>
2246       <returns>An <see cref="T:System.Security.Cryptography.OidCollection" /> object indicating the applications that use the key.</returns>
2247     </member>
2248     <member name="T:System.Security.Cryptography.X509Certificates.X509Extension">
2249       <summary>Represents an X509 extension.</summary>
2250     </member>
2251     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.#ctor">
2252       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> class.</summary>
2253     </member>
2254     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.#ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)">
2255       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> class.</summary>
2256       <param name="encodedExtension">The encoded data to be used to create the extension.</param>
2257       <param name="critical">
2258         <see langword="true" /> if the extension is critical; otherwise <see langword="false" />.</param>
2259     </member>
2260     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.#ctor(System.Security.Cryptography.Oid,System.Byte[],System.Boolean)">
2261       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> class.</summary>
2262       <param name="oid">The object identifier used to identify the extension.</param>
2263       <param name="rawData">The encoded data used to create the extension.</param>
2264       <param name="critical">
2265         <see langword="true" /> if the extension is critical; otherwise <see langword="false" />.</param>
2266       <exception cref="T:System.ArgumentNullException">
2267         <paramref name="oid" /> is <see langword="null" />.</exception>
2268       <exception cref="T:System.ArgumentException">
2269         <paramref name="oid" /> is an empty string ("").</exception>
2270     </member>
2271     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.#ctor(System.Security.Cryptography.Oid,System.ReadOnlySpan{System.Byte},System.Boolean)">
2272       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> class.</summary>
2273       <param name="oid">The object identifier used to identify the extension.</param>
2274       <param name="rawData">The encoded data used to create the extension.</param>
2275       <param name="critical">
2276         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2277     </member>
2278     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.#ctor(System.String,System.Byte[],System.Boolean)">
2279       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> class.</summary>
2280       <param name="oid">A string representing the object identifier.</param>
2281       <param name="rawData">The encoded data used to create the extension.</param>
2282       <param name="critical">
2283         <see langword="true" /> if the extension is critical; otherwise <see langword="false" />.</param>
2284     </member>
2285     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.#ctor(System.String,System.ReadOnlySpan{System.Byte},System.Boolean)">
2286       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> class.</summary>
2287       <param name="oid">The object identifier used to identify the extension.</param>
2288       <param name="rawData">The encoded data used to create the extension.</param>
2289       <param name="critical">
2290         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2291     </member>
2292     <member name="M:System.Security.Cryptography.X509Certificates.X509Extension.CopyFrom(System.Security.Cryptography.AsnEncodedData)">
2293       <summary>Copies the extension properties of the specified <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object.</summary>
2294       <param name="asnEncodedData">The <see cref="T:System.Security.Cryptography.AsnEncodedData" /> to be copied.</param>
2295       <exception cref="T:System.ArgumentNullException">
2296         <paramref name="asnEncodedData" /> is <see langword="null" />.</exception>
2297       <exception cref="T:System.ArgumentException">
2298         <paramref name="asnEncodedData" /> does not have a valid X.509 extension.</exception>
2299     </member>
2300     <member name="P:System.Security.Cryptography.X509Certificates.X509Extension.Critical">
2301       <summary>Gets a Boolean value indicating whether the extension is critical.</summary>
2302       <returns>
2303         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</returns>
2304     </member>
2305     <member name="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection">
2306       <summary>Represents a collection of <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> objects. This class cannot be inherited.</summary>
2307     </member>
2308     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.#ctor">
2309       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> class.</summary>
2310     </member>
2311     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.Add(System.Security.Cryptography.X509Certificates.X509Extension)">
2312       <summary>Adds an <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object to an <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</summary>
2313       <param name="extension">An <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object to add to the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</param>
2314       <exception cref="T:System.ArgumentNullException">The value of the <paramref name="extension" /> parameter is <see langword="null" />.</exception>
2315       <returns>The index at which the <paramref name="extension" /> parameter was added.</returns>
2316     </member>
2317     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.CopyTo(System.Security.Cryptography.X509Certificates.X509Extension[],System.Int32)">
2318       <summary>Copies a collection into an array starting at the specified index.</summary>
2319       <param name="array">An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> objects.</param>
2320       <param name="index">The location in the array at which copying starts.</param>
2321       <exception cref="T:System.ArgumentException">
2322         <paramref name="index" /> is a zero-length string or contains an invalid value.</exception>
2323       <exception cref="T:System.ArgumentNullException">
2324         <paramref name="index" /> is <see langword="null" />.</exception>
2325       <exception cref="T:System.ArgumentOutOfRangeException">
2326         <paramref name="index" /> specifies a value that is not in the range of the array.</exception>
2327     </member>
2328     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.GetEnumerator">
2329       <summary>Returns an enumerator that can iterate through an <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</summary>
2330       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator" /> object to use to iterate through the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</returns>
2331     </member>
2332     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.System#Collections#Generic#IEnumerable{System#Security#Cryptography#X509Certificates#X509Extension}#GetEnumerator">
2333       <summary>Returns an enumerator that iterates through the collection.</summary>
2334       <returns>An enumerator that can be used to iterate through the collection.</returns>
2335     </member>
2336     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2337       <summary>Copies the collection into an array starting at the specified index.</summary>
2338       <param name="array">An array of <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> objects.</param>
2339       <param name="index">The location in the array at which copying starts.</param>
2340       <exception cref="T:System.ArgumentException">
2341         <paramref name="index" /> is a zero-length string or contains an invalid value.</exception>
2342       <exception cref="T:System.ArgumentNullException">
2343         <paramref name="index" /> is <see langword="null" />.</exception>
2344       <exception cref="T:System.ArgumentOutOfRangeException">
2345         <paramref name="index" /> specifies a value that is not in the range of the array.</exception>
2346     </member>
2347     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.System#Collections#IEnumerable#GetEnumerator">
2348       <summary>Returns an enumerator that can iterate through an <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</summary>
2349       <returns>An <see cref="T:System.Collections.IEnumerator" /> object to use to iterate through the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</returns>
2350     </member>
2351     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.Count">
2352       <summary>Gets the number of <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> objects in a <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</summary>
2353       <returns>An integer representing the number of <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> objects in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</returns>
2354     </member>
2355     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.IsSynchronized">
2356       <summary>Gets a value indicating whether the collection is guaranteed to be thread safe.</summary>
2357       <returns>
2358         <see langword="true" /> if the collection is thread safe; otherwise, <see langword="false" />.</returns>
2359     </member>
2360     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.Item(System.Int32)">
2361       <summary>Gets the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object at the specified index.</summary>
2362       <param name="index">The location of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object to retrieve.</param>
2363       <exception cref="T:System.InvalidOperationException">
2364         <paramref name="index" /> is less than zero.</exception>
2365       <exception cref="T:System.ArgumentOutOfRangeException">
2366         <paramref name="index" /> is equal to or greater than the length of the array.</exception>
2367       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object.</returns>
2368     </member>
2369     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.Item(System.String)">
2370       <summary>Gets the first <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object whose value or friendly name is specified by an object identifier (OID).</summary>
2371       <param name="oid">The object identifier (OID) of the extension to retrieve.</param>
2372       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Extension" /> object.</returns>
2373     </member>
2374     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionCollection.SyncRoot">
2375       <summary>Gets an object that you can use to synchronize access to the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</summary>
2376       <returns>An object that you can use to synchronize access to the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" /> object.</returns>
2377     </member>
2378     <member name="T:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator">
2379       <summary>Supports a simple iteration over a <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" />. This class cannot be inherited.</summary>
2380     </member>
2381     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator.MoveNext">
2382       <summary>Advances the enumerator to the next element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" />.</summary>
2383       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2384       <returns>
2385         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2386     </member>
2387     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator.Reset">
2388       <summary>Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" />.</summary>
2389       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2390     </member>
2391     <member name="M:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator.System#IDisposable#Dispose">
2392       <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
2393     </member>
2394     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator.Current">
2395       <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" />.</summary>
2396       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2397       <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" />.</returns>
2398     </member>
2399     <member name="P:System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator.System#Collections#IEnumerator#Current">
2400       <summary>Gets an object from a collection.</summary>
2401       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2402       <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ExtensionCollection" />.</returns>
2403     </member>
2404     <member name="T:System.Security.Cryptography.X509Certificates.X509FindType">
2405       <summary>Specifies the type of value the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method searches for.</summary>
2406     </member>
2407     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByApplicationPolicy">
2408       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing either the application policy friendly name or the object identifier (OID, or <see cref="T:System.Security.Cryptography.Oid" />) of the certificate. For example, "Encrypting File System" or "1.3.6.1.4.1.311.10.3.4" can be used. For an application that will be localized, the OID value must be used, because the friendly name is localized.</summary>
2409     </member>
2410     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByCertificatePolicy">
2411       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing either the friendly name or the object identifier (OID, or <see cref="T:System.Security.Cryptography.Oid" />) of the certificate policy. The best practice is to use the OID, such as "1.3.6.1.4.1.311.10.3.4". For an application that will be localized, the OID must be used, because the friendly name is localized.</summary>
2412     </member>
2413     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByExtension">
2414       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string describing the extension to find. The object identifier (OID) is most commonly used to direct the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method to search for all certificates that have an extension matching that OID value.</summary>
2415     </member>
2416     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByIssuerDistinguishedName">
2417       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the issuer distinguished name of the certificate. This is a more specific search than that provided by the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByIssuerName" /> enumeration value. Using the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByIssuerDistinguishedName" /> value, the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method performs a case-insensitive string comparison for the entire distinguished name. Searching by issuer name is a less precise search.</summary>
2418     </member>
2419     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByIssuerName">
2420       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the issuer name of the certificate. This is a less specific search than that provided by the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByIssuerDistinguishedName" /> enumeration value. Using the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByIssuerName" /> value, the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method performs a case-insensitive string comparison using the supplied value. For example, if you pass "MyCA" to the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method, it will find all certificates with the issuer name containing that string, regardless of other issuer values.</summary>
2421     </member>
2422     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByKeyUsage">
2423       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be either a string representing the key usage or an integer representing a bit mask containing all the requested key usages. For the string value, only one key usage at a time can be specified, but the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method can be used in a cascading sequence to get the intersection of the requested usages. For example, the <paramref name="findValue" /> parameter can be set to "KeyEncipherment" or an integer (0x30 indicates "KeyEncipherment" and "DataEncipherment"). Values of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags" /> enumeration can also be used.</summary>
2424     </member>
2425     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySerialNumber">
2426       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string that represents the serial number of the certificate as displayed by the certificate dialog box, but without the spaces, or as returned by the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate.GetSerialNumberString" /> method.</summary>
2427     </member>
2428     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectDistinguishedName">
2429       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the subject distinguished name of the certificate. This is a more specific search than that provided by the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectName" /> enumeration value. Using the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectDistinguishedName" /> value, the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method performs a case-insensitive string comparison for the entire distinguished name. Searching by subject name is a less precise search.</summary>
2430     </member>
2431     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectKeyIdentifier">
2432       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the subject key identifier in hexadecimal, such as "F3E815D45E83B8477B9284113C64EF208E897112", as displayed in the UI.</summary>
2433     </member>
2434     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectName">
2435       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the subject name of the certificate. This is a less specific search than that provided by the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectDistinguishedName" /> enumeration value. Using the <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectName" /> value, the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method performs a case-insensitive string comparison using the supplied value. For example, if you pass "MyCert" to the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method, it will find all certificates with the subject name containing that string, regardless of other subject values. Searching by distinguished name is a more precise search.</summary>
2436     </member>
2437     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTemplateName">
2438       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the template name of the certificate, such as "ClientAuth". A template name is an X509 version 3 extension that specifies the uses of the certificate.</summary>
2439     </member>
2440     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByThumbprint">
2441       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a string representing the thumbprint of the certificate.</summary>
2442     </member>
2443     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeExpired">
2444       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a <see cref="T:System.DateTime" /> value in local time. For example, you can find all the certificates that will be valid until the end of the year by eliminating the results of a <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> operation for <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeExpired" /> of the last day of the year from the results of a <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> operation for <see cref="P:System.DateTime.Now" />.</summary>
2445     </member>
2446     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeNotYetValid">
2447       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a <see cref="T:System.DateTime" /> value in local time. The value does not have to be in the future. For example, you can use <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeNotYetValid" /> to find certificates that became valid in the current year by taking the intersection of the results of a <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> operation for <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeNotYetValid" /> for the last day of last year with the results of a <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> operation for <see cref="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeValid" /> of <see cref="P:System.DateTime.Now" />.</summary>
2448     </member>
2449     <member name="F:System.Security.Cryptography.X509Certificates.X509FindType.FindByTimeValid">
2450       <summary>The <paramref name="findValue" /> parameter for the <see cref="M:System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Find(System.Security.Cryptography.X509Certificates.X509FindType,System.Object,System.Boolean)" /> method must be a <see cref="T:System.DateTime" /> value in local time. You can use <see cref="P:System.DateTime.Now" /> to find all the currently valid certificates.</summary>
2451     </member>
2452     <member name="T:System.Security.Cryptography.X509Certificates.X509IncludeOption">
2453       <summary>Specifies how much of the X.509 certificate chain should be included in the X.509 data.</summary>
2454     </member>
2455     <member name="F:System.Security.Cryptography.X509Certificates.X509IncludeOption.EndCertOnly">
2456       <summary>Only the end certificate is included in the X.509 chain information.</summary>
2457     </member>
2458     <member name="F:System.Security.Cryptography.X509Certificates.X509IncludeOption.ExcludeRoot">
2459       <summary>The entire X.509 chain is included except for the root certificate.</summary>
2460     </member>
2461     <member name="F:System.Security.Cryptography.X509Certificates.X509IncludeOption.None">
2462       <summary>No X.509 chain information is included.</summary>
2463     </member>
2464     <member name="F:System.Security.Cryptography.X509Certificates.X509IncludeOption.WholeChain">
2465       <summary>The entire X.509 chain is included.</summary>
2466     </member>
2467     <member name="T:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags">
2468       <summary>Defines where and how to import the private key of an X.509 certificate.</summary>
2469     </member>
2470     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.DefaultKeySet">
2471       <summary>The default key set is used.  The user key set is usually the default.</summary>
2472     </member>
2473     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.EphemeralKeySet">
2474       <summary>The key associated with a PFX file is created in memory and not persisted on disk when importing a certificate.</summary>
2475     </member>
2476     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.Exportable">
2477       <summary>Imported keys are marked as exportable.</summary>
2478     </member>
2479     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.MachineKeySet">
2480       <summary>Private keys are stored in the local computer store rather than the current user store.</summary>
2481     </member>
2482     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.PersistKeySet">
2483       <summary>The key associated with a PFX file is persisted when importing a certificate.</summary>
2484     </member>
2485     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.UserKeySet">
2486       <summary>Private keys are stored in the current user store rather than the local computer store. This occurs even if the certificate specifies that the keys should go in the local computer store.</summary>
2487     </member>
2488     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.UserProtected">
2489       <summary>Notify the user through a dialog box or other method that the key is accessed.  The Cryptographic Service Provider (CSP) in use defines the precise behavior.</summary>
2490     </member>
2491     <member name="T:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension">
2492       <summary>Defines the usage of a key contained within an X.509 certificate.  This class cannot be inherited.</summary>
2493     </member>
2494     <member name="M:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension.#ctor">
2495       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" /> class.</summary>
2496     </member>
2497     <member name="M:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension.#ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)">
2498       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" /> class using an <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object and a value that identifies whether the extension is critical.</summary>
2499       <param name="encodedKeyUsage">The encoded data to use to create the extension.</param>
2500       <param name="critical">
2501         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2502     </member>
2503     <member name="M:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension.#ctor(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags,System.Boolean)">
2504       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" /> class using the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags" /> value and a value that identifies whether the extension is critical.</summary>
2505       <param name="keyUsages">One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags" /> values that describes how to use the key.</param>
2506       <param name="critical">
2507         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2508     </member>
2509     <member name="M:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension.CopyFrom(System.Security.Cryptography.AsnEncodedData)">
2510       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" /> class using an <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object.</summary>
2511       <param name="asnEncodedData">The encoded data to use to create the extension.</param>
2512     </member>
2513     <member name="P:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension.KeyUsages">
2514       <summary>Gets the key usage flag associated with the certificate.</summary>
2515       <exception cref="T:System.Security.Cryptography.CryptographicException">The extension cannot be decoded.</exception>
2516       <returns>One of the <see cref="P:System.Security.Cryptography.X509Certificates.X509KeyUsageExtension.KeyUsages" /> values.</returns>
2517     </member>
2518     <member name="T:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags">
2519       <summary>Defines how the certificate key can be used. If this value is not defined, the key can be used for any purpose.</summary>
2520     </member>
2521     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.CrlSign">
2522       <summary>The key can be used to sign a certificate revocation list (CRL).</summary>
2523     </member>
2524     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.DataEncipherment">
2525       <summary>The key can be used for data encryption.</summary>
2526     </member>
2527     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.DecipherOnly">
2528       <summary>The key can be used for decryption only.</summary>
2529     </member>
2530     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.DigitalSignature">
2531       <summary>The key can be used as a digital signature.</summary>
2532     </member>
2533     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.EncipherOnly">
2534       <summary>The key can be used for encryption only.</summary>
2535     </member>
2536     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.KeyAgreement">
2537       <summary>The key can be used to determine key agreement, such as a key created using the Diffie-Hellman key agreement algorithm.</summary>
2538     </member>
2539     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.KeyCertSign">
2540       <summary>The key can be used to sign certificates.</summary>
2541     </member>
2542     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.KeyEncipherment">
2543       <summary>The key can be used for key encryption.</summary>
2544     </member>
2545     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.None">
2546       <summary>No key usage parameters.</summary>
2547     </member>
2548     <member name="F:System.Security.Cryptography.X509Certificates.X509KeyUsageFlags.NonRepudiation">
2549       <summary>The key can be used for authentication.</summary>
2550     </member>
2551     <member name="T:System.Security.Cryptography.X509Certificates.X509NameType">
2552       <summary>Specifies the type of name the X509 certificate contains.</summary>
2553     </member>
2554     <member name="F:System.Security.Cryptography.X509Certificates.X509NameType.DnsFromAlternativeName">
2555       <summary>The DNS name associated with the alternative name of either the subject or the issuer of an X.509 certificate.  This value is equivalent to the <see cref="F:System.Security.Cryptography.X509Certificates.X509NameType.DnsName" /> value.</summary>
2556     </member>
2557     <member name="F:System.Security.Cryptography.X509Certificates.X509NameType.DnsName">
2558       <summary>The DNS name associated with the alternative name of either the subject or issuer of an X509 certificate.</summary>
2559     </member>
2560     <member name="F:System.Security.Cryptography.X509Certificates.X509NameType.EmailName">
2561       <summary>The email address of the subject or issuer associated of an X509 certificate.</summary>
2562     </member>
2563     <member name="F:System.Security.Cryptography.X509Certificates.X509NameType.SimpleName">
2564       <summary>The simple name of a subject or issuer of an X509 certificate.</summary>
2565     </member>
2566     <member name="F:System.Security.Cryptography.X509Certificates.X509NameType.UpnName">
2567       <summary>The UPN name of the subject or issuer of an X509 certificate.</summary>
2568     </member>
2569     <member name="F:System.Security.Cryptography.X509Certificates.X509NameType.UrlName">
2570       <summary>The URL address associated with the alternative name of either the subject or issuer of an X509 certificate.</summary>
2571     </member>
2572     <member name="T:System.Security.Cryptography.X509Certificates.X509RevocationFlag">
2573       <summary>Specifies which X509 certificates in the chain should be checked for revocation.</summary>
2574     </member>
2575     <member name="F:System.Security.Cryptography.X509Certificates.X509RevocationFlag.EndCertificateOnly">
2576       <summary>Only the end certificate is checked for revocation.</summary>
2577     </member>
2578     <member name="F:System.Security.Cryptography.X509Certificates.X509RevocationFlag.EntireChain">
2579       <summary>The entire chain of certificates is checked for revocation.</summary>
2580     </member>
2581     <member name="F:System.Security.Cryptography.X509Certificates.X509RevocationFlag.ExcludeRoot">
2582       <summary>The entire chain, except the root certificate, is checked for revocation.</summary>
2583     </member>
2584     <member name="T:System.Security.Cryptography.X509Certificates.X509RevocationMode">
2585       <summary>Specifies the mode used to check for X509 certificate revocation.</summary>
2586     </member>
2587     <member name="F:System.Security.Cryptography.X509Certificates.X509RevocationMode.NoCheck">
2588       <summary>No revocation check is performed on the certificate.</summary>
2589     </member>
2590     <member name="F:System.Security.Cryptography.X509Certificates.X509RevocationMode.Offline">
2591       <summary>A revocation check is made using a cached certificate revocation list (CRL).</summary>
2592     </member>
2593     <member name="F:System.Security.Cryptography.X509Certificates.X509RevocationMode.Online">
2594       <summary>A revocation check is made using an online certificate revocation list (CRL).</summary>
2595     </member>
2596     <member name="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator">
2597       <summary>Base class for building encoded signatures as needed for X.509 certificates.</summary>
2598     </member>
2599     <member name="M:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.#ctor">
2600       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator" /> class.</summary>
2601     </member>
2602     <member name="M:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.BuildPublicKey">
2603       <summary>When overridden in a derived class, produces the certificate's public key that has the correctly encoded <see cref="T:System.Security.Cryptography.Oid" />, public key parameters and public key values.</summary>
2604       <returns>The certificate's public key.</returns>
2605     </member>
2606     <member name="M:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.CreateForECDsa(System.Security.Cryptography.ECDsa)">
2607       <summary>Creates an <see cref="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator" /> object for ECDSA signatures using the specified private key.</summary>
2608       <param name="key">The private key.</param>
2609       <exception cref="T:System.ArgumentNullException">
2610         <paramref name="key" /> is <see langword="null" />.</exception>
2611       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator" /> object for ECDSA signatures.</returns>
2612     </member>
2613     <member name="M:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.CreateForRSA(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)">
2614       <summary>Creates an <see cref="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator" /> object for RSA signatures using the specified private key and padding mode.</summary>
2615       <param name="key">The private key.</param>
2616       <param name="signaturePadding">The padding mode.</param>
2617       <exception cref="T:System.ArgumentNullException">
2618         <paramref name="key" /> is <see langword="null" />.  
2619   
2620  -or-  
2621   
2622  <paramref name="signaturePadding" /> is <see langword="null" />.</exception>
2623       <exception cref="T:System.ArgumentException">The specified padding mode is not valid for this algorithm.</exception>
2624       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509SignatureGenerator" /> object for RSA signatures.</returns>
2625     </member>
2626     <member name="M:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.GetSignatureAlgorithmIdentifier(System.Security.Cryptography.HashAlgorithmName)">
2627       <summary>When overridden in a derived class, encodes the X.509 algorithm identifier for this signature.</summary>
2628       <param name="hashAlgorithm">The hash algorithm to use for encoding.</param>
2629       <returns>The encoded value for the X.509 algorithm identifier.</returns>
2630     </member>
2631     <member name="M:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.SignData(System.Byte[],System.Security.Cryptography.HashAlgorithmName)">
2632       <summary>When overridden in a derived class, produces a signature for the specified data using the specified hash algorithm and encodes the results appropriately for X.509 signature values.</summary>
2633       <param name="data">The input data for which to produce the signature.</param>
2634       <param name="hashAlgorithm">The hash algorithm to use to produce the signature.</param>
2635       <returns>The X.509 signature for the specified data.</returns>
2636     </member>
2637     <member name="P:System.Security.Cryptography.X509Certificates.X509SignatureGenerator.PublicKey">
2638       <summary>Gets the public key associated with the private key with which signatures are being generated.</summary>
2639       <returns>The public key associated with the private key with which signatures are being generated.</returns>
2640     </member>
2641     <member name="T:System.Security.Cryptography.X509Certificates.X509Store">
2642       <summary>Represents an X.509 store, which is a physical store where certificates are persisted and managed. This class cannot be inherited.</summary>
2643     </member>
2644     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor">
2645       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the personal certificates store of the current user.</summary>
2646     </member>
2647     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.IntPtr)">
2648       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using an Intptr handle to an <see langword="HCERTSTORE" /> store.</summary>
2649       <param name="storeHandle">A handle to an <see langword="HCERTSTORE" /> store.</param>
2650       <exception cref="T:System.ArgumentNullException">The <paramref name="storeHandle" /> parameter is <see langword="null" />.</exception>
2651       <exception cref="T:System.Security.Cryptography.CryptographicException">The <paramref name="storeHandle" /> parameter points to an invalid context.</exception>
2652     </member>
2653     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.Security.Cryptography.X509Certificates.StoreLocation)">
2654       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the personal certificate store from the specified store location value.</summary>
2655       <param name="storeLocation">One of the enumeration values that specifies the location of the X.509 certificate store.</param>
2656     </member>
2657     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.Security.Cryptography.X509Certificates.StoreName)">
2658       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the specified store name from the current user's certificate stores.</summary>
2659       <param name="storeName">One of the enumeration values that specifies the name of the X.509 certificate store.</param>
2660       <exception cref="T:System.ArgumentException">
2661         <paramref name="storeName" /> is not a valid name.</exception>
2662     </member>
2663     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.Security.Cryptography.X509Certificates.StoreName,System.Security.Cryptography.X509Certificates.StoreLocation)">
2664       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the specified <see cref="T:System.Security.Cryptography.X509Certificates.StoreName" /> and <see cref="T:System.Security.Cryptography.X509Certificates.StoreLocation" /> values.</summary>
2665       <param name="storeName">One of the enumeration values that specifies the name of the X.509 certificate store.</param>
2666       <param name="storeLocation">One of the enumeration values that specifies the location of the X.509 certificate store.</param>
2667       <exception cref="T:System.ArgumentException">
2668         <paramref name="storeLocation" /> is not a valid location or <paramref name="storeName" /> is not a valid name.</exception>
2669     </member>
2670     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.Security.Cryptography.X509Certificates.StoreName,System.Security.Cryptography.X509Certificates.StoreLocation,System.Security.Cryptography.X509Certificates.OpenFlags)">
2671       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the specified store name and store location values, then opens it using the specified flags.</summary>
2672       <param name="storeName">One of the enumeration values that specifies the name of the X.509 certificate store.</param>
2673       <param name="storeLocation">One of the enumeration values that specifies the location of the X.509 certificate store.</param>
2674       <param name="flags">A bitwise combination of enumeration values that specifies the way to open the X.509 certificate store.</param>
2675       <exception cref="T:System.ArgumentException">
2676         <paramref name="storeLocation" /> is not a valid location or <paramref name="storeName" /> is not a valid name.</exception>
2677       <exception cref="T:System.Security.Cryptography.CryptographicException">The store cannot be opened.</exception>
2678     </member>
2679     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.String)">
2680       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the specified store name.</summary>
2681       <param name="storeName">The name of the certificate store.</param>
2682     </member>
2683     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.String,System.Security.Cryptography.X509Certificates.StoreLocation)">
2684       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using a specified store name and store location.</summary>
2685       <param name="storeName">The name of the certificate store.</param>
2686       <param name="storeLocation">One of the enumeration values that specifies the location of the X.509 certificate store.</param>
2687       <exception cref="T:System.ArgumentException">
2688         <paramref name="storeLocation" /> contains invalid values.</exception>
2689     </member>
2690     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.#ctor(System.String,System.Security.Cryptography.X509Certificates.StoreLocation,System.Security.Cryptography.X509Certificates.OpenFlags)">
2691       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" /> class using the specified store name and store location values, then opens it using the specified flags.</summary>
2692       <param name="storeName">The name of the certificate store.</param>
2693       <param name="storeLocation">One of the enumeration values that specifies the location of the X.509 certificate store.</param>
2694       <param name="flags">A bitwise combination of enumeration values that specifies the way to open the X.509 certificate store.</param>
2695       <exception cref="T:System.ArgumentException">
2696         <paramref name="storeLocation" /> is not a valid location.</exception>
2697     </member>
2698     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.Add(System.Security.Cryptography.X509Certificates.X509Certificate2)">
2699       <summary>Adds a certificate to an X.509 certificate store.</summary>
2700       <param name="certificate">The certificate to add.</param>
2701       <exception cref="T:System.ArgumentNullException">
2702         <paramref name="certificate" /> is <see langword="null" />.</exception>
2703       <exception cref="T:System.Security.Cryptography.CryptographicException">The certificate could not be added to the store.</exception>
2704     </member>
2705     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.AddRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
2706       <summary>Adds a collection of certificates to an X.509 certificate store.</summary>
2707       <param name="certificates">The collection of certificates to add.</param>
2708       <exception cref="T:System.ArgumentNullException">
2709         <paramref name="certificates" /> is <see langword="null" />.</exception>
2710       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2711     </member>
2712     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.Close">
2713       <summary>Closes an X.509 certificate store.</summary>
2714     </member>
2715     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.Dispose">
2716       <summary>Releases the resources used by this <see cref="T:System.Security.Cryptography.X509Certificates.X509Store" />.</summary>
2717     </member>
2718     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.Open(System.Security.Cryptography.X509Certificates.OpenFlags)">
2719       <summary>Opens an X.509 certificate store or creates a new store, depending on <see cref="T:System.Security.Cryptography.X509Certificates.OpenFlags" /> flag settings.</summary>
2720       <param name="flags">A bitwise combination of enumeration values that specifies the way to open the X.509 certificate store.</param>
2721       <exception cref="T:System.Security.Cryptography.CryptographicException">The store cannot be opened as requested.</exception>
2722       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2723       <exception cref="T:System.ArgumentException">The store contains invalid values.</exception>
2724     </member>
2725     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.Remove(System.Security.Cryptography.X509Certificates.X509Certificate2)">
2726       <summary>Removes a certificate from an X.509 certificate store.</summary>
2727       <param name="certificate">The certificate to remove.</param>
2728       <exception cref="T:System.ArgumentNullException">
2729         <paramref name="certificate" /> is <see langword="null" />.</exception>
2730       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2731     </member>
2732     <member name="M:System.Security.Cryptography.X509Certificates.X509Store.RemoveRange(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
2733       <summary>Removes a range of certificates from an X.509 certificate store.</summary>
2734       <param name="certificates">A range of certificates to remove.</param>
2735       <exception cref="T:System.ArgumentNullException">
2736         <paramref name="certificates" /> is <see langword="null" />.</exception>
2737       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
2738     </member>
2739     <member name="P:System.Security.Cryptography.X509Certificates.X509Store.Certificates">
2740       <summary>Returns a collection of certificates located in an X.509 certificate store.</summary>
2741       <returns>A collection of certificates.</returns>
2742     </member>
2743     <member name="P:System.Security.Cryptography.X509Certificates.X509Store.IsOpen">
2744       <summary>Gets a value that indicates whether the instance is connected to an open certificate store.</summary>
2745       <returns>
2746         <see langword="true" /> if the instance is connected to an open certificate store; otherwise, <see langword="false" />.</returns>
2747     </member>
2748     <member name="P:System.Security.Cryptography.X509Certificates.X509Store.Location">
2749       <summary>Gets the location of the X.509 certificate store.</summary>
2750       <returns>The location of the certificate store.</returns>
2751     </member>
2752     <member name="P:System.Security.Cryptography.X509Certificates.X509Store.Name">
2753       <summary>Gets the name of the X.509 certificate store.</summary>
2754       <returns>The name of the certificate store.</returns>
2755     </member>
2756     <member name="P:System.Security.Cryptography.X509Certificates.X509Store.StoreHandle">
2757       <summary>Gets an <see cref="T:System.IntPtr" /> handle to an <see langword="HCERTSTORE" /> store.</summary>
2758       <exception cref="T:System.Security.Cryptography.CryptographicException">The store is not open.</exception>
2759       <returns>A handle to an <see langword="HCERTSTORE" /> store.</returns>
2760     </member>
2761     <member name="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension">
2762       <summary>Defines a string that identifies a certificate's subject key identifier (SKI). This class cannot be inherited.</summary>
2763     </member>
2764     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor">
2765       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class.</summary>
2766     </member>
2767     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor(System.Byte[],System.Boolean)">
2768       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class using a byte array and a value that identifies whether the extension is critical.</summary>
2769       <param name="subjectKeyIdentifier">A byte array that represents data to use to create the extension.</param>
2770       <param name="critical">
2771         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2772     </member>
2773     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor(System.ReadOnlySpan{System.Byte},System.Boolean)">
2774       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class using a read-only span of bytes and a value that identifies whether the extension is critical.</summary>
2775       <param name="subjectKeyIdentifier">A read-only span of bytes that represents data to use to create the extension.</param>
2776       <param name="critical">
2777         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2778     </member>
2779     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)">
2780       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class using encoded data and a value that identifies whether the extension is critical.</summary>
2781       <param name="encodedSubjectKeyIdentifier">The <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object to use to create the extension.</param>
2782       <param name="critical">
2783         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2784     </member>
2785     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor(System.Security.Cryptography.X509Certificates.PublicKey,System.Boolean)">
2786       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class using a public key and a value indicating whether the extension is critical.</summary>
2787       <param name="key">A <see cref="T:System.Security.Cryptography.X509Certificates.PublicKey" /> object to create a subject key identifier (SKI) from.</param>
2788       <param name="critical">
2789         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2790     </member>
2791     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor(System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm,System.Boolean)">
2792       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class using a public key, a hash algorithm identifier, and a value indicating whether the extension is critical.</summary>
2793       <param name="key">A <see cref="T:System.Security.Cryptography.X509Certificates.PublicKey" /> object to create a subject key identifier (SKI) from.</param>
2794       <param name="algorithm">One of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm" /> values that identifies which hash algorithm to use.</param>
2795       <param name="critical">
2796         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2797     </member>
2798     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.#ctor(System.String,System.Boolean)">
2799       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class using a string and a value that identifies whether the extension is critical.</summary>
2800       <param name="subjectKeyIdentifier">A string, encoded in hexadecimal format, that represents the subject key identifier (SKI) for a certificate.</param>
2801       <param name="critical">
2802         <see langword="true" /> if the extension is critical; otherwise, <see langword="false" />.</param>
2803     </member>
2804     <member name="M:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.CopyFrom(System.Security.Cryptography.AsnEncodedData)">
2805       <summary>Creates a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class by copying information from encoded data.</summary>
2806       <param name="asnEncodedData">The <see cref="T:System.Security.Cryptography.AsnEncodedData" /> object to use to create the extension.</param>
2807     </member>
2808     <member name="P:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension.SubjectKeyIdentifier">
2809       <summary>Gets a string that represents the subject key identifier (SKI) for a certificate.</summary>
2810       <exception cref="T:System.Security.Cryptography.CryptographicException">The extension cannot be decoded.</exception>
2811       <returns>A string, encoded in hexadecimal format, that represents the subject key identifier (SKI).</returns>
2812     </member>
2813     <member name="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm">
2814       <summary>Defines the type of hash algorithm to use with the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class.</summary>
2815     </member>
2816     <member name="F:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm.CapiSha1">
2817       <summary>The subject key identifier (SKI) is composed of a 160-bit SHA-1 hash of the encoded public key (including the tag, length, and number of unused bits).</summary>
2818     </member>
2819     <member name="F:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm.Sha1">
2820       <summary>The SKI is composed of the 160-bit SHA-1 hash of the value of the public key (excluding the tag, length, and number of unused bits).</summary>
2821     </member>
2822     <member name="F:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm.ShortSha1">
2823       <summary>The SKI is composed of a four-bit type field with the value 0100, followed by the least significant 60 bits of the SHA-1 hash of the value of the public key (excluding the tag, length, and number of unused bit string bits)</summary>
2824     </member>
2825     <member name="T:System.Security.Cryptography.X509Certificates.X509VerificationFlags">
2826       <summary>Specifies conditions under which verification of certificates in the X509 chain should be conducted.</summary>
2827     </member>
2828     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.AllFlags">
2829       <summary>All flags pertaining to verification are included.</summary>
2830     </member>
2831     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.AllowUnknownCertificateAuthority">
2832       <summary>Ignore that the chain cannot be verified due to an unknown certificate authority (CA) or partial chains.</summary>
2833     </member>
2834     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreCertificateAuthorityRevocationUnknown">
2835       <summary>Ignore that the certificate authority revocation is unknown when determining certificate verification.</summary>
2836     </member>
2837     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreCtlNotTimeValid">
2838       <summary>Ignore that the certificate trust list (CTL) is not valid, for reasons such as the CTL has expired, when determining certificate verification.</summary>
2839     </member>
2840     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreCtlSignerRevocationUnknown">
2841       <summary>Ignore that the certificate trust list (CTL) signer revocation is unknown when determining certificate verification.</summary>
2842     </member>
2843     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreEndRevocationUnknown">
2844       <summary>Ignore that the end certificate (the user certificate) revocation is unknown when determining certificate verification.</summary>
2845     </member>
2846     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreInvalidBasicConstraints">
2847       <summary>Ignore that the basic constraints are not valid when determining certificate verification.</summary>
2848     </member>
2849     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreInvalidName">
2850       <summary>Ignore that the certificate has an invalid name when determining certificate verification.</summary>
2851     </member>
2852     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreInvalidPolicy">
2853       <summary>Ignore that the certificate has invalid policy when determining certificate verification.</summary>
2854     </member>
2855     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreNotTimeNested">
2856       <summary>Ignore that the CA (certificate authority) certificate and the issued certificate have validity periods that are not nested when verifying the certificate. For example, the CA cert can be valid from January 1 to December 1 and the issued certificate from January 2 to December 2, which would mean the validity periods are not nested.</summary>
2857     </member>
2858     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreNotTimeValid">
2859       <summary>Ignore certificates in the chain that are not valid either because they have expired or they are not yet in effect when determining certificate validity.</summary>
2860     </member>
2861     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreRootRevocationUnknown">
2862       <summary>Ignore that the root revocation is unknown when determining certificate verification.</summary>
2863     </member>
2864     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.IgnoreWrongUsage">
2865       <summary>Ignore that the certificate was not issued for the current use when determining certificate verification.</summary>
2866     </member>
2867     <member name="F:System.Security.Cryptography.X509Certificates.X509VerificationFlags.NoFlag">
2868       <summary>No flags pertaining to verification are included.</summary>
2869     </member>
2870   </members>
2871 </doc>