[ImageUtil] Add sync thumbnail extract API (#928)
[platform/core/csapi/tizenfx.git] / pkg / build / tizen40 / ref / System.Security.Cryptography.Encoding.xml
1 <?xml version="1.0" encoding="utf-8"?><span>
2 <doc>
3   <assembly>
4     <name>System.Security.Cryptography.Encoding</name>
5   </assembly>
6   <members>
7     <member name="T:System.Security.Cryptography.ToBase64Transform">
8       <summary>Converts a <see cref="T:System.Security.Cryptography.CryptoStream"></see> to base 64.</summary>
9     </member>
10     <member name="M:System.Security.Cryptography.ToBase64Transform.#ctor">
11       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ToBase64Transform"></see> class.</summary>
12     </member>
13     <member name="P:System.Security.Cryptography.ToBase64Transform.CanReuseTransform">
14       <summary>Gets a value indicating whether the current transform can be reused.</summary>
15       <returns>Always true.</returns>
16     </member>
17     <member name="P:System.Security.Cryptography.ToBase64Transform.CanTransformMultipleBlocks">
18       <summary>Gets a value that indicates whether multiple blocks can be transformed.</summary>
19       <returns>Always false.</returns>
20     </member>
21     <member name="M:System.Security.Cryptography.ToBase64Transform.Clear">
22       <summary>Releases all resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform"></see>.</summary>
23     </member>
24     <member name="M:System.Security.Cryptography.ToBase64Transform.Dispose">
25       <summary>Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.ToBase64Transform"></see> class.</summary>
26     </member>
27     <member name="M:System.Security.Cryptography.ToBase64Transform.Dispose(System.Boolean)">
28       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform"></see> and optionally releases the managed resources.</summary>
29       <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
30     </member>
31     <member name="M:System.Security.Cryptography.ToBase64Transform.Finalize">
32       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.ToBase64Transform"></see>.</summary>
33     </member>
34     <member name="P:System.Security.Cryptography.ToBase64Transform.InputBlockSize">
35       <summary>Gets the input block size.</summary>
36       <returns>The size of the input data blocks in bytes.</returns>
37     </member>
38     <member name="P:System.Security.Cryptography.ToBase64Transform.OutputBlockSize">
39       <summary>Gets the output block size.</summary>
40       <returns>The size of the output data blocks in bytes.</returns>
41     </member>
42     <member name="M:System.Security.Cryptography.ToBase64Transform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)">
43       <summary>Converts the specified region of the input byte array to base 64 and copies the result to the specified region of the output byte array.</summary>
44       <param name="inputBuffer">The input to compute to base 64.</param>
45       <param name="inputOffset">The offset into the input byte array from which to begin using data.</param>
46       <param name="inputCount">The number of bytes in the input byte array to use as data.</param>
47       <param name="outputBuffer">The output to which to write the result.</param>
48       <param name="outputOffset">The offset into the output byte array from which to begin writing data.</param>
49       <returns>The number of bytes written.</returns>
50       <exception cref="T:System.ObjectDisposedException">The current <see cref="T:System.Security.Cryptography.ToBase64Transform"></see> object has already been disposed.</exception>
51       <exception cref="T:System.Security.Cryptography.CryptographicException">The data size is not valid.</exception>
52       <exception cref="T:System.ArgumentException">The <paramref name="inputBuffer">inputBuffer</paramref> parameter contains an invalid offset length.   -or-   The <paramref name="inputCount">inputCount</paramref> parameter contains an invalid value.</exception>
53       <exception cref="T:System.ArgumentNullException">The <paramref name="inputBuffer">inputBuffer</paramref> parameter is null.</exception>
54       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="inputBuffer">inputBuffer</paramref> parameter requires a non-negative number.</exception>
55     </member>
56     <member name="M:System.Security.Cryptography.ToBase64Transform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)">
57       <summary>Converts the specified region of the specified byte array to base 64.</summary>
58       <param name="inputBuffer">The input to convert to base 64.</param>
59       <param name="inputOffset">The offset into the byte array from which to begin using data.</param>
60       <param name="inputCount">The number of bytes in the byte array to use as data.</param>
61       <returns>The computed base 64 conversion.</returns>
62       <exception cref="T:System.ObjectDisposedException">The current <see cref="T:System.Security.Cryptography.ToBase64Transform"></see> object has already been disposed.</exception>
63       <exception cref="T:System.ArgumentException">The <paramref name="inputBuffer">inputBuffer</paramref> parameter contains an invalid offset length.   -or-   The <paramref name="inputCount">inputCount</paramref> parameter contains an invalid value.</exception>
64       <exception cref="T:System.ArgumentNullException">The <paramref name="inputBuffer">inputBuffer</paramref> parameter is null.</exception>
65       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="inputBuffer">inputBuffer</paramref> parameter requires a non-negative number.</exception>
66     </member>
67     <member name="T:System.Security.Cryptography.FromBase64Transform">
68       <summary>Converts a <see cref="T:System.Security.Cryptography.CryptoStream"></see> from base 64.</summary>
69     </member>
70     <member name="M:System.Security.Cryptography.FromBase64Transform.#ctor">
71       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> class.</summary>
72     </member>
73     <member name="M:System.Security.Cryptography.FromBase64Transform.#ctor(System.Security.Cryptography.FromBase64TransformMode)">
74       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> class with the specified transformation mode.</summary>
75       <param name="whitespaces">One of the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> values.</param>
76     </member>
77     <member name="P:System.Security.Cryptography.FromBase64Transform.CanReuseTransform">
78       <summary>Gets a value indicating whether the current transform can be reused.</summary>
79       <returns>Always true.</returns>
80     </member>
81     <member name="P:System.Security.Cryptography.FromBase64Transform.CanTransformMultipleBlocks">
82       <summary>Gets a value that indicates whether multiple blocks can be transformed.</summary>
83       <returns>Always false.</returns>
84     </member>
85     <member name="M:System.Security.Cryptography.FromBase64Transform.Clear">
86       <summary>Releases all resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see>.</summary>
87     </member>
88     <member name="M:System.Security.Cryptography.FromBase64Transform.Dispose">
89       <summary>Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> class.</summary>
90     </member>
91     <member name="M:System.Security.Cryptography.FromBase64Transform.Dispose(System.Boolean)">
92       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> and optionally releases the managed resources.</summary>
93       <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
94     </member>
95     <member name="M:System.Security.Cryptography.FromBase64Transform.Finalize">
96       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.FromBase64Transform"></see>.</summary>
97     </member>
98     <member name="P:System.Security.Cryptography.FromBase64Transform.InputBlockSize">
99       <summary>Gets the input block size.</summary>
100       <returns>The size of the input data blocks in bytes.</returns>
101     </member>
102     <member name="P:System.Security.Cryptography.FromBase64Transform.OutputBlockSize">
103       <summary>Gets the output block size.</summary>
104       <returns>The size of the output data blocks in bytes.</returns>
105     </member>
106     <member name="M:System.Security.Cryptography.FromBase64Transform.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)">
107       <summary>Converts the specified region of the input byte array from base 64 and copies the result to the specified region of the output byte array.</summary>
108       <param name="inputBuffer">The input to compute from base 64.</param>
109       <param name="inputOffset">The offset into the input byte array from which to begin using data.</param>
110       <param name="inputCount">The number of bytes in the input byte array to use as data.</param>
111       <param name="outputBuffer">The output to which to write the result.</param>
112       <param name="outputOffset">The offset into the output byte array from which to begin writing data.</param>
113       <returns>The number of bytes written.</returns>
114       <exception cref="T:System.ObjectDisposedException">The current <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> object has already been disposed.</exception>
115       <exception cref="T:System.ArgumentException"><paramref name="inputCount">inputCount</paramref> uses an invalid value.   -or-  <paramref name="inputBuffer">inputBuffer</paramref> has an invalid offset length.</exception>
116       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset">inputOffset</paramref> is out of range. This parameter requires a non-negative number.</exception>
117       <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer">inputBuffer</paramref> is null.</exception>
118     </member>
119     <member name="M:System.Security.Cryptography.FromBase64Transform.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)">
120       <summary>Converts the specified region of the specified byte array from base 64.</summary>
121       <param name="inputBuffer">The input to convert from base 64.</param>
122       <param name="inputOffset">The offset into the byte array from which to begin using data.</param>
123       <param name="inputCount">The number of bytes in the byte array to use as data.</param>
124       <returns>The computed conversion.</returns>
125       <exception cref="T:System.ObjectDisposedException">The current <see cref="T:System.Security.Cryptography.FromBase64Transform"></see> object has already been disposed.</exception>
126       <exception cref="T:System.ArgumentException"><paramref name="inputBuffer">inputBuffer</paramref> has an invalid offset length.   -or-  <paramref name="inputCount">inputCount</paramref> has an invalid value.</exception>
127       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset">inputOffset</paramref> is out of range. This parameter requires a non-negative number.</exception>
128       <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer">inputBuffer</paramref> is null.</exception>
129     </member>
130     <member name="T:System.Security.Cryptography.FromBase64TransformMode">
131       <summary>Specifies whether white space should be ignored in the base 64 transformation.</summary>
132     </member>
133     <member name="F:System.Security.Cryptography.FromBase64TransformMode.DoNotIgnoreWhiteSpaces">
134       <summary>White space should not be ignored.</summary>
135       <returns></returns>
136     </member>
137     <member name="F:System.Security.Cryptography.FromBase64TransformMode.IgnoreWhiteSpaces">
138       <summary>White space should be ignored.</summary>
139       <returns></returns>
140     </member>
141     <member name="T:System.Security.Cryptography.Oid">
142       <summary>Represents a cryptographic object identifier. This class cannot be inherited.</summary>
143     </member>
144     <member name="M:System.Security.Cryptography.Oid.#ctor">
145       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Oid"></see> class.</summary>
146     </member>
147     <member name="M:System.Security.Cryptography.Oid.#ctor(System.Security.Cryptography.Oid)">
148       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Oid"></see> class using the specified <see cref="T:System.Security.Cryptography.Oid"></see> object.</summary>
149       <param name="oid">The object identifier information to use to create the new object identifier.</param>
150       <exception cref="T:System.ArgumentNullException"><paramref name="oid">oid</paramref> is null.</exception>
151     </member>
152     <member name="M:System.Security.Cryptography.Oid.#ctor(System.String)">
153       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Oid"></see> class using a string value of an <see cref="T:System.Security.Cryptography.Oid"></see> object.</summary>
154       <param name="oid">An object identifier.</param>
155     </member>
156     <member name="M:System.Security.Cryptography.Oid.#ctor(System.String,System.String)">
157       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Oid"></see> class using the specified value and friendly name.</summary>
158       <param name="value">The dotted number of the identifier.</param>
159       <param name="friendlyName">The friendly name of the identifier.</param>
160     </member>
161     <member name="P:System.Security.Cryptography.Oid.FriendlyName">
162       <summary>Gets or sets the friendly name of the identifier.</summary>
163       <returns>The friendly name of the identifier.</returns>
164     </member>
165     <member name="M:System.Security.Cryptography.Oid.FromFriendlyName(System.String,System.Security.Cryptography.OidGroup)">
166       <summary>Creates an <see cref="T:System.Security.Cryptography.Oid"></see> object from an OID friendly name by searching the specified group.</summary>
167       <param name="friendlyName">The friendly name of the identifier.</param>
168       <param name="group">The group to search in.</param>
169       <returns>An object that represents the specified OID.</returns>
170       <exception cref="T:System.ArgumentNullException"><paramref name="friendlyName">friendlyName</paramref> is null.</exception>
171       <exception cref="T:System.Security.Cryptography.CryptographicException">The OID was not found.</exception>
172     </member>
173     <member name="M:System.Security.Cryptography.Oid.FromOidValue(System.String,System.Security.Cryptography.OidGroup)">
174       <summary>Creates an <see cref="T:System.Security.Cryptography.Oid"></see> object by using the specified OID value and group.</summary>
175       <param name="oidValue">The OID value.</param>
176       <param name="group">The group to search in.</param>
177       <returns>A new instance of an <see cref="T:System.Security.Cryptography.Oid"></see> object.</returns>
178       <exception cref="T:System.ArgumentNullException"><paramref name="oidValue">oidValue</paramref> is null.</exception>
179       <exception cref="T:System.Security.Cryptography.CryptographicException">The friendly name for the OID value was not found.</exception>
180     </member>
181     <member name="P:System.Security.Cryptography.Oid.Value">
182       <summary>Gets or sets the dotted number of the identifier.</summary>
183       <returns>The dotted number of the identifier.</returns>
184     </member>
185     <member name="T:System.Security.Cryptography.OidCollection">
186       <summary>Represents a collection of <see cref="T:System.Security.Cryptography.Oid"></see> objects. This class cannot be inherited.</summary>
187     </member>
188     <member name="M:System.Security.Cryptography.OidCollection.#ctor">
189       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.OidCollection"></see> class.</summary>
190     </member>
191     <member name="M:System.Security.Cryptography.OidCollection.Add(System.Security.Cryptography.Oid)">
192       <summary>Adds an <see cref="T:System.Security.Cryptography.Oid"></see> object to the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
193       <param name="oid">The <see cref="T:System.Security.Cryptography.Oid"></see> object to add to the collection.</param>
194       <returns>The index of the added <see cref="T:System.Security.Cryptography.Oid"></see> object.</returns>
195     </member>
196     <member name="M:System.Security.Cryptography.OidCollection.CopyTo(System.Security.Cryptography.Oid[],System.Int32)">
197       <summary>Copies the <see cref="T:System.Security.Cryptography.OidCollection"></see> object into an array.</summary>
198       <param name="array">The array to copy the <see cref="T:System.Security.Cryptography.OidCollection"></see> object into.</param>
199       <param name="index">The location where the copy operation starts.</param>
200     </member>
201     <member name="P:System.Security.Cryptography.OidCollection.Count">
202       <summary>Gets the number of <see cref="T:System.Security.Cryptography.Oid"></see> objects in a collection.</summary>
203       <returns>The number of <see cref="T:System.Security.Cryptography.Oid"></see> objects in a collection.</returns>
204     </member>
205     <member name="M:System.Security.Cryptography.OidCollection.GetEnumerator">
206       <summary>Returns an <see cref="T:System.Security.Cryptography.OidEnumerator"></see> object that can be used to navigate the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
207       <returns>An <see cref="T:System.Security.Cryptography.OidEnumerator"></see> object.</returns>
208     </member>
209     <member name="P:System.Security.Cryptography.OidCollection.IsSynchronized">
210       <summary>Gets a value that indicates whether access to the <see cref="T:System.Security.Cryptography.OidCollection"></see> object is thread safe.</summary>
211       <returns>false in all cases.</returns>
212     </member>
213     <member name="P:System.Security.Cryptography.OidCollection.Item(System.Int32)">
214       <summary>Gets an <see cref="T:System.Security.Cryptography.Oid"></see> object from the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
215       <param name="index">The location of the <see cref="T:System.Security.Cryptography.Oid"></see> object in the collection.</param>
216       <returns>An <see cref="T:System.Security.Cryptography.Oid"></see> object.</returns>
217     </member>
218     <member name="P:System.Security.Cryptography.OidCollection.Item(System.String)">
219       <summary>Gets the first <see cref="T:System.Security.Cryptography.Oid"></see> object that contains a value of the <see cref="P:System.Security.Cryptography.Oid.Value"></see> property or a value of the <see cref="P:System.Security.Cryptography.Oid.FriendlyName"></see> property that matches the specified string value from the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
220       <param name="oid">A string that represents a <see cref="P:System.Security.Cryptography.Oid.Value"></see> property or a <see cref="P:System.Security.Cryptography.Oid.FriendlyName"></see> property.</param>
221       <returns>An <see cref="T:System.Security.Cryptography.Oid"></see> object.</returns>
222     </member>
223     <member name="P:System.Security.Cryptography.OidCollection.SyncRoot">
224       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
225       <returns>An object that can be used to synchronize access to the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</returns>
226     </member>
227     <member name="M:System.Security.Cryptography.OidCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
228       <summary>Copies the <see cref="T:System.Security.Cryptography.OidCollection"></see> object into an array.</summary>
229       <param name="array">The array to copy the <see cref="T:System.Security.Cryptography.OidCollection"></see> object to.</param>
230       <param name="index">The location where the copy operation starts.</param>
231       <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> cannot be a multidimensional array.   -or-   The length of <paramref name="array">array</paramref> is an invalid offset length.</exception>
232       <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
233       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="index">index</paramref> is out range.</exception>
234     </member>
235     <member name="P:System.Security.Cryptography.OidCollection.System#Collections#ICollection#IsSynchronized">
236       <returns></returns>
237     </member>
238     <member name="P:System.Security.Cryptography.OidCollection.System#Collections#ICollection#SyncRoot">
239       <returns></returns>
240     </member>
241     <member name="M:System.Security.Cryptography.OidCollection.System#Collections#IEnumerable#GetEnumerator">
242       <summary>Returns an <see cref="T:System.Security.Cryptography.OidEnumerator"></see> object that can be used to navigate the <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
243       <returns>An <see cref="T:System.Security.Cryptography.OidEnumerator"></see> object that can be used to navigate the collection.</returns>
244     </member>
245     <member name="T:System.Security.Cryptography.OidEnumerator">
246       <summary>Provides the ability to navigate through an <see cref="T:System.Security.Cryptography.OidCollection"></see> object. This class cannot be inherited.</summary>
247     </member>
248     <member name="P:System.Security.Cryptography.OidEnumerator.Current">
249       <summary>Gets the current <see cref="T:System.Security.Cryptography.Oid"></see> object in an <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
250       <returns>The current <see cref="T:System.Security.Cryptography.Oid"></see> object in the collection.</returns>
251     </member>
252     <member name="M:System.Security.Cryptography.OidEnumerator.MoveNext">
253       <summary>Advances to the next <see cref="T:System.Security.Cryptography.Oid"></see> object in an <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
254       <returns>true, if the enumerator was successfully advanced to the next element; false, if the enumerator has passed the end of the collection.</returns>
255       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
256     </member>
257     <member name="M:System.Security.Cryptography.OidEnumerator.Reset">
258       <summary>Sets an enumerator to its initial position.</summary>
259       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
260     </member>
261     <member name="P:System.Security.Cryptography.OidEnumerator.System#Collections#IEnumerator#Current">
262       <summary>Gets the current <see cref="T:System.Security.Cryptography.Oid"></see> object in an <see cref="T:System.Security.Cryptography.OidCollection"></see> object.</summary>
263       <returns>The current <see cref="T:System.Security.Cryptography.Oid"></see> object.</returns>
264     </member>
265     <member name="T:System.Security.Cryptography.OidGroup">
266       <summary>Identifies Windows cryptographic object identifier (OID) groups.</summary>
267     </member>
268     <member name="F:System.Security.Cryptography.OidGroup.All">
269       <summary>All the groups.</summary>
270       <returns></returns>
271     </member>
272     <member name="F:System.Security.Cryptography.OidGroup.Attribute">
273       <summary>The Windows group that is represented by CRYPT_RDN_ATTR_OID_GROUP_ID.</summary>
274       <returns></returns>
275     </member>
276     <member name="F:System.Security.Cryptography.OidGroup.EncryptionAlgorithm">
277       <summary>The Windows group that is represented by CRYPT_ENCRYPT_ALG_OID_GROUP_ID.</summary>
278       <returns></returns>
279     </member>
280     <member name="F:System.Security.Cryptography.OidGroup.EnhancedKeyUsage">
281       <summary>The Windows group that is represented by CRYPT_ENHKEY_USAGE_OID_GROUP_ID.</summary>
282       <returns></returns>
283     </member>
284     <member name="F:System.Security.Cryptography.OidGroup.ExtensionOrAttribute">
285       <summary>The Windows group that is represented by CRYPT_EXT_OR_ATTR_OID_GROUP_ID.</summary>
286       <returns></returns>
287     </member>
288     <member name="F:System.Security.Cryptography.OidGroup.HashAlgorithm">
289       <summary>The Windows group that is represented by CRYPT_HASH_ALG_OID_GROUP_ID.</summary>
290       <returns></returns>
291     </member>
292     <member name="F:System.Security.Cryptography.OidGroup.KeyDerivationFunction">
293       <summary>The Windows group that is represented by CRYPT_KDF_OID_GROUP_ID.</summary>
294       <returns></returns>
295     </member>
296     <member name="F:System.Security.Cryptography.OidGroup.Policy">
297       <summary>The Windows group that is represented by CRYPT_POLICY_OID_GROUP_ID.</summary>
298       <returns></returns>
299     </member>
300     <member name="F:System.Security.Cryptography.OidGroup.PublicKeyAlgorithm">
301       <summary>The Windows group that is represented by CRYPT_PUBKEY_ALG_OID_GROUP_ID.</summary>
302       <returns></returns>
303     </member>
304     <member name="F:System.Security.Cryptography.OidGroup.SignatureAlgorithm">
305       <summary>The Windows group that is represented by CRYPT_SIGN_ALG_OID_GROUP_ID.</summary>
306       <returns></returns>
307     </member>
308     <member name="F:System.Security.Cryptography.OidGroup.Template">
309       <summary>The Windows group that is represented by CRYPT_TEMPLATE_OID_GROUP_ID.</summary>
310       <returns></returns>
311     </member>
312     <member name="T:System.Security.Cryptography.AsnEncodedData">
313       <summary>Represents Abstract Syntax Notation One (ASN.1)-encoded data.</summary>
314     </member>
315     <member name="M:System.Security.Cryptography.AsnEncodedData.#ctor">
316       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class.</summary>
317     </member>
318     <member name="M:System.Security.Cryptography.AsnEncodedData.#ctor(System.Byte[])">
319       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class using a byte array.</summary>
320       <param name="rawData">A byte array that contains Abstract Syntax Notation One (ASN.1)-encoded data.</param>
321     </member>
322     <member name="M:System.Security.Cryptography.AsnEncodedData.#ctor(System.Security.Cryptography.AsnEncodedData)">
323       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class using an instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class.</summary>
324       <param name="asnEncodedData">An instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class.</param>
325       <exception cref="T:System.ArgumentNullException"><paramref name="asnEncodedData">asnEncodedData</paramref> is null.</exception>
326     </member>
327     <member name="M:System.Security.Cryptography.AsnEncodedData.#ctor(System.Security.Cryptography.Oid,System.Byte[])">
328       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class using an <see cref="T:System.Security.Cryptography.Oid"></see> object and a byte array.</summary>
329       <param name="oid">An <see cref="T:System.Security.Cryptography.Oid"></see> object.</param>
330       <param name="rawData">A byte array that contains Abstract Syntax Notation One (ASN.1)-encoded data.</param>
331     </member>
332     <member name="M:System.Security.Cryptography.AsnEncodedData.#ctor(System.String,System.Byte[])">
333       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> class using a byte array.</summary>
334       <param name="oid">A string that represents <see cref="T:System.Security.Cryptography.Oid"></see> information.</param>
335       <param name="rawData">A byte array that contains Abstract Syntax Notation One (ASN.1)-encoded data.</param>
336     </member>
337     <member name="M:System.Security.Cryptography.AsnEncodedData.CopyFrom(System.Security.Cryptography.AsnEncodedData)">
338       <summary>Copies information from an <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object.</summary>
339       <param name="asnEncodedData">The <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object to base the new object on.</param>
340       <exception cref="T:System.ArgumentNullException"><paramref name="asnEncodedData">asnEncodedData</paramref> is null.</exception>
341     </member>
342     <member name="M:System.Security.Cryptography.AsnEncodedData.Format(System.Boolean)">
343       <summary>Returns a formatted version of the Abstract Syntax Notation One (ASN.1)-encoded data as a string.</summary>
344       <param name="multiLine">true if the return string should contain carriage returns; otherwise, false.</param>
345       <returns>A formatted string that represents the Abstract Syntax Notation One (ASN.1)-encoded data.</returns>
346     </member>
347     <member name="P:System.Security.Cryptography.AsnEncodedData.Oid">
348       <summary>Gets or sets the <see cref="T:System.Security.Cryptography.Oid"></see> value for an <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object.</summary>
349       <returns>An <see cref="T:System.Security.Cryptography.Oid"></see> object.</returns>
350     </member>
351     <member name="P:System.Security.Cryptography.AsnEncodedData.RawData">
352       <summary>Gets or sets the Abstract Syntax Notation One (ASN.1)-encoded data represented in a byte array.</summary>
353       <returns>A byte array that represents the Abstract Syntax Notation One (ASN.1)-encoded data.</returns>
354       <exception cref="T:System.ArgumentNullException">The value is null.</exception>
355     </member>
356     <member name="T:System.Security.Cryptography.AsnEncodedDataCollection">
357       <summary>Represents a collection of <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> objects. This class cannot be inherited.</summary>
358     </member>
359     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.#ctor">
360       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> class.</summary>
361     </member>
362     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.#ctor(System.Security.Cryptography.AsnEncodedData)">
363       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> class and adds an <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object to the collection.</summary>
364       <param name="asnEncodedData">The <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object to add to the collection.</param>
365     </member>
366     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.Add(System.Security.Cryptography.AsnEncodedData)">
367       <summary>Adds an <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object to the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
368       <param name="asnEncodedData">The <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object to add to the collection.</param>
369       <returns>The index of the added <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object.</returns>
370       <exception cref="T:System.ArgumentNullException"><paramref name="asnEncodedData">asnEncodedData</paramref> is null.</exception>
371       <exception cref="T:System.Security.Cryptography.CryptographicException">One of the OIDs is null and the OIDs do not match.</exception>
372     </member>
373     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.CopyTo(System.Security.Cryptography.AsnEncodedData[],System.Int32)">
374       <summary>Copies the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object into an array.</summary>
375       <param name="array">The array that the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object is to be copied into.</param>
376       <param name="index">The location where the copy operation starts.</param>
377     </member>
378     <member name="P:System.Security.Cryptography.AsnEncodedDataCollection.Count">
379       <summary>Gets the number of <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> objects in a collection.</summary>
380       <returns>The number of <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> objects.</returns>
381     </member>
382     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.GetEnumerator">
383       <summary>Returns an <see cref="T:System.Security.Cryptography.AsnEncodedDataEnumerator"></see> object that can be used to navigate the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
384       <returns>An <see cref="T:System.Security.Cryptography.AsnEncodedDataEnumerator"></see> object.</returns>
385     </member>
386     <member name="P:System.Security.Cryptography.AsnEncodedDataCollection.IsSynchronized">
387       <summary>Gets a value that indicates whether access to the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object is thread safe.</summary>
388       <returns>false in all cases.</returns>
389     </member>
390     <member name="P:System.Security.Cryptography.AsnEncodedDataCollection.Item(System.Int32)">
391       <summary>Gets an <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object from the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
392       <param name="index">The location in the collection.</param>
393       <returns>An <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object.</returns>
394     </member>
395     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.Remove(System.Security.Cryptography.AsnEncodedData)">
396       <summary>Removes an <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object from the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
397       <param name="asnEncodedData">The <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object to remove.</param>
398       <exception cref="T:System.ArgumentNullException"><paramref name="asnEncodedData">asnEncodedData</paramref> is null.</exception>
399     </member>
400     <member name="P:System.Security.Cryptography.AsnEncodedDataCollection.SyncRoot">
401       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
402       <returns>An object used to synchronize access to the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</returns>
403     </member>
404     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
405       <summary>Copies the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object into an array.</summary>
406       <param name="array">The array that the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object is to be copied into.</param>
407       <param name="index">The location where the copy operation starts.</param>
408       <exception cref="T:System.ArgumentException">The length for <paramref name="index">index</paramref> is invalid.</exception>
409       <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
410       <exception cref="T:System.ArgumentOutOfRangeException">The length for <paramref name="index">index</paramref> is out of range.</exception>
411     </member>
412     <member name="P:System.Security.Cryptography.AsnEncodedDataCollection.System#Collections#ICollection#IsSynchronized">
413       <returns></returns>
414     </member>
415     <member name="P:System.Security.Cryptography.AsnEncodedDataCollection.System#Collections#ICollection#SyncRoot">
416       <returns></returns>
417     </member>
418     <member name="M:System.Security.Cryptography.AsnEncodedDataCollection.System#Collections#IEnumerable#GetEnumerator">
419       <summary>Returns an <see cref="T:System.Security.Cryptography.AsnEncodedDataEnumerator"></see> object that can be used to navigate the <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
420       <returns>An <see cref="T:System.Security.Cryptography.AsnEncodedDataEnumerator"></see> object that can be used to navigate the collection.</returns>
421     </member>
422     <member name="T:System.Security.Cryptography.AsnEncodedDataEnumerator">
423       <summary>Provides the ability to navigate through an <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object. This class cannot be inherited.</summary>
424     </member>
425     <member name="P:System.Security.Cryptography.AsnEncodedDataEnumerator.Current">
426       <summary>Gets the current <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object in an <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
427       <returns>The current <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object in the collection.</returns>
428     </member>
429     <member name="M:System.Security.Cryptography.AsnEncodedDataEnumerator.MoveNext">
430       <summary>Advances to the next <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object in an <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
431       <returns>true, if the enumerator was successfully advanced to the next element; false, if the enumerator has passed the end of the collection.</returns>
432       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
433     </member>
434     <member name="M:System.Security.Cryptography.AsnEncodedDataEnumerator.Reset">
435       <summary>Sets an enumerator to its initial position.</summary>
436       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
437     </member>
438     <member name="P:System.Security.Cryptography.AsnEncodedDataEnumerator.System#Collections#IEnumerator#Current">
439       <summary>Gets the current <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object in an <see cref="T:System.Security.Cryptography.AsnEncodedDataCollection"></see> object.</summary>
440       <returns>The current <see cref="T:System.Security.Cryptography.AsnEncodedData"></see> object.</returns>
441     </member>
442   </members>
443 </doc></span>