Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.IO.Compression.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.IO.Compression</name>
5   </assembly>
6   <members>
7     <member name="T:System.IO.Compression.CompressionLevel">
8       <summary>Specifies values that indicate whether a compression operation emphasizes speed or compression size.</summary>
9     </member>
10     <member name="F:System.IO.Compression.CompressionLevel.Fastest">
11       <summary>The compression operation should complete as quickly as possible, even if the resulting file is not optimally compressed.</summary>
12     </member>
13     <member name="F:System.IO.Compression.CompressionLevel.NoCompression">
14       <summary>No compression should be performed on the file.</summary>
15     </member>
16     <member name="F:System.IO.Compression.CompressionLevel.Optimal">
17       <summary>The compression operation should be optimally compressed, even if the operation takes a longer time to complete.</summary>
18     </member>
19     <member name="T:System.IO.Compression.CompressionMode">
20       <summary>Specifies whether to compress or decompress the underlying stream.</summary>
21     </member>
22     <member name="F:System.IO.Compression.CompressionMode.Compress">
23       <summary>Compresses the underlying stream.</summary>
24     </member>
25     <member name="F:System.IO.Compression.CompressionMode.Decompress">
26       <summary>Decompresses the underlying stream.</summary>
27     </member>
28     <member name="T:System.IO.Compression.DeflateStream">
29       <summary>Provides methods and properties for compressing and decompressing streams by using the Deflate algorithm.</summary>
30     </member>
31     <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel)">
32       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.DeflateStream" /> class by using the specified stream and compression level.</summary>
33       <param name="stream">The stream to compress.</param>
34       <param name="compressionLevel">One of the enumeration values that indicates whether to emphasize speed or compression efficiency when compressing the stream.</param>
35       <exception cref="T:System.ArgumentNullException">
36         <paramref name="stream" /> is <see langword="null" />.</exception>
37       <exception cref="T:System.ArgumentException">The stream does not support write operations such as compression. (The <see cref="P:System.IO.Stream.CanWrite" /> property on the stream object is <see langword="false" />.)</exception>
38     </member>
39     <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)">
40       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.DeflateStream" /> class by using the specified stream and compression level, and optionally leaves the stream open.</summary>
41       <param name="stream">The stream to compress.</param>
42       <param name="compressionLevel">One of the enumeration values that indicates whether to emphasize speed or compression efficiency when compressing the stream.</param>
43       <param name="leaveOpen">
44         <see langword="true" /> to leave the stream object open after disposing the <see cref="T:System.IO.Compression.DeflateStream" /> object; otherwise, <see langword="false" />.</param>
45       <exception cref="T:System.ArgumentNullException">
46         <paramref name="stream" /> is <see langword="null" />.</exception>
47       <exception cref="T:System.ArgumentException">The stream does not support write operations such as compression. (The <see cref="P:System.IO.Stream.CanWrite" /> property on the stream object is <see langword="false" />.)</exception>
48     </member>
49     <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode)">
50       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.DeflateStream" /> class by using the specified stream and compression mode.</summary>
51       <param name="stream">The stream to compress or decompress.</param>
52       <param name="mode">One of the enumeration values that indicates whether to compress or decompress the stream.</param>
53       <exception cref="T:System.ArgumentNullException">
54         <paramref name="stream" /> is <see langword="null" />.</exception>
55       <exception cref="T:System.ArgumentException">
56         <paramref name="mode" /> is not a valid <see cref="T:System.IO.Compression.CompressionMode" /> value.
57 -or-
58 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Compress" /> and <see cref="P:System.IO.Stream.CanWrite" /> is <see langword="false" />.
59 -or-
60 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> and <see cref="P:System.IO.Stream.CanRead" /> is <see langword="false" />.</exception>
61     </member>
62     <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean)">
63       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.DeflateStream" /> class by using the specified stream and compression mode, and optionally leaves the stream open.</summary>
64       <param name="stream">The stream to compress or decompress.</param>
65       <param name="mode">One of the enumeration values that indicates whether to compress or decompress the stream.</param>
66       <param name="leaveOpen">
67         <see langword="true" /> to leave the stream open after disposing the <see cref="T:System.IO.Compression.DeflateStream" /> object; otherwise, <see langword="false" />.</param>
68       <exception cref="T:System.ArgumentNullException">
69         <paramref name="stream" /> is <see langword="null" />.</exception>
70       <exception cref="T:System.ArgumentException">
71         <paramref name="mode" /> is not a valid <see cref="T:System.IO.Compression.CompressionMode" /> value.
72 -or-
73 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Compress" /> and <see cref="P:System.IO.Stream.CanWrite" /> is <see langword="false" />.
74 -or-
75 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> and <see cref="P:System.IO.Stream.CanRead" /> is <see langword="false" />.</exception>
76     </member>
77     <member name="P:System.IO.Compression.DeflateStream.BaseStream">
78       <summary>Gets a reference to the underlying stream.</summary>
79       <returns>A stream object that represents the underlying stream.</returns>
80       <exception cref="T:System.ObjectDisposedException">The underlying stream is closed.</exception>
81     </member>
82     <member name="M:System.IO.Compression.DeflateStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
83       <summary>Begins an asynchronous read operation. (Consider using the <see cref="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
84       <param name="buffer">The byte array to read the data into.</param>
85       <param name="offset">The byte offset in <paramref name="array" /> at which to begin reading data from the stream.</param>
86       <param name="count">The maximum number of bytes to read.</param>
87       <param name="asyncCallback">An optional asynchronous callback, to be called when the read operation is complete.</param>
88       <param name="asyncState">A user-provided object that distinguishes this particular asynchronous read request from other requests.</param>
89       <returns>An  object that represents the asynchronous read operation, which could still be pending.</returns>
90       <exception cref="T:System.IO.IOException">The method tried to read asynchronously past the end of the stream, or a disk error occurred.</exception>
91       <exception cref="T:System.ArgumentException">One or more of the arguments is invalid.</exception>
92       <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
93       <exception cref="T:System.NotSupportedException">The current <see cref="T:System.IO.Compression.DeflateStream" /> implementation does not support the read operation.</exception>
94       <exception cref="T:System.InvalidOperationException">This call cannot be completed.</exception>
95     </member>
96     <member name="M:System.IO.Compression.DeflateStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
97       <summary>Begins an asynchronous write operation. (Consider using the <see cref="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
98       <param name="array">The buffer to write data from.</param>
99       <param name="offset">The byte offset in <paramref name="buffer" /> to begin writing from.</param>
100       <param name="count">The maximum number of bytes to write.</param>
101       <param name="asyncCallback">An optional asynchronous callback, to be called when the write operation is complete.</param>
102       <param name="asyncState">A user-provided object that distinguishes this particular asynchronous write request from other requests.</param>
103       <returns>An object that represents the asynchronous write operation, which could still be pending.</returns>
104       <exception cref="T:System.IO.IOException">The method tried to write asynchronously past the end of the stream, or a disk error occurred.</exception>
105       <exception cref="T:System.ArgumentException">One or more of the arguments is invalid.</exception>
106       <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
107       <exception cref="T:System.NotSupportedException">The current <see cref="T:System.IO.Compression.DeflateStream" /> implementation does not support the write operation.</exception>
108       <exception cref="T:System.InvalidOperationException">The write operation cannot be performed because the stream is closed.</exception>
109     </member>
110     <member name="P:System.IO.Compression.DeflateStream.CanRead">
111       <summary>Gets a value indicating whether the stream supports reading while decompressing a file.</summary>
112       <returns>
113         <see langword="true" /> if the <see cref="T:System.IO.Compression.CompressionMode" /> value is <see langword="Decompress" />, and the underlying stream is opened and supports reading; otherwise, <see langword="false" />.</returns>
114     </member>
115     <member name="P:System.IO.Compression.DeflateStream.CanSeek">
116       <summary>Gets a value indicating whether the stream supports seeking.</summary>
117       <returns>
118         <see langword="false" /> in all cases.</returns>
119     </member>
120     <member name="P:System.IO.Compression.DeflateStream.CanWrite">
121       <summary>Gets a value indicating whether the stream supports writing.</summary>
122       <returns>
123         <see langword="true" /> if the <see cref="T:System.IO.Compression.CompressionMode" /> value is <see langword="Compress" />, and the underlying stream supports writing and is not closed; otherwise, <see langword="false" />.</returns>
124     </member>
125     <member name="M:System.IO.Compression.DeflateStream.CopyTo(System.IO.Stream,System.Int32)">
126       <summary>Reads the bytes from the current Deflate stream and writes them to another stream, using a specified buffer size.</summary>
127       <param name="destination">The stream to which the contents of the current Deflate stream will be copied.</param>
128       <param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 81920.</param>
129     </member>
130     <member name="M:System.IO.Compression.DeflateStream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
131       <summary>Asynchronously reads the bytes from the current Deflate stream and writes them to another stream, using a specified buffer size.</summary>
132       <param name="destination">The stream to which the contents of the current Deflate stream will be copied.</param>
133       <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero. The default size is 81920.</param>
134       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
135       <returns>A task that represents the asynchronous copy operation.</returns>
136     </member>
137     <member name="M:System.IO.Compression.DeflateStream.Dispose(System.Boolean)">
138       <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.Compression.DeflateStream" /> and optionally releases the managed resources.</summary>
139       <param name="disposing">
140         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
141     </member>
142     <member name="M:System.IO.Compression.DeflateStream.DisposeAsync">
143       <summary>Asynchronously releases the unmanaged resources used by the <see cref="T:System.IO.Compression.DeflateStream" />.</summary>
144       <returns>A task that represents the asynchronous dispose operation.</returns>
145     </member>
146     <member name="M:System.IO.Compression.DeflateStream.EndRead(System.IAsyncResult)">
147       <summary>Waits for the pending asynchronous read to complete. (Consider using the <see cref="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
148       <param name="asyncResult">The reference to the pending asynchronous request to finish.</param>
149       <returns>The number of bytes read from the stream, between 0 (zero) and the number of bytes you requested. <see cref="T:System.IO.Compression.DeflateStream" /> returns 0 only at the end of the stream; otherwise, it blocks until at least one byte is available.</returns>
150       <exception cref="T:System.ArgumentNullException">
151         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
152       <exception cref="T:System.ArgumentException">
153         <paramref name="asyncResult" /> did not originate from a <see cref="M:System.IO.Compression.DeflateStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> method on the current stream.</exception>
154       <exception cref="T:System.SystemException">An exception was thrown during a call to <see cref="M:System.Threading.WaitHandle.WaitOne" />.</exception>
155       <exception cref="T:System.InvalidOperationException">The end call is invalid because asynchronous read operations for this stream are not yet complete.
156 -or-
157 The stream is <see langword="null" />.</exception>
158     </member>
159     <member name="M:System.IO.Compression.DeflateStream.EndWrite(System.IAsyncResult)">
160       <summary>Ends an asynchronous write operation. (Consider using the <see cref="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
161       <param name="asyncResult">A reference to the outstanding asynchronous I/O request.</param>
162       <exception cref="T:System.ArgumentNullException">
163         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
164       <exception cref="T:System.ArgumentException">
165         <paramref name="asyncResult" /> did not originate from a <see cref="M:System.IO.Compression.DeflateStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> method on the current stream.</exception>
166       <exception cref="T:System.Exception">An exception was thrown during a call to <see cref="M:System.Threading.WaitHandle.WaitOne" />.</exception>
167       <exception cref="T:System.InvalidOperationException">The stream is <see langword="null" />.
168 -or-
169 The end write call is invalid.</exception>
170     </member>
171     <member name="M:System.IO.Compression.DeflateStream.Flush">
172       <summary>The current implementation of this method has no functionality.</summary>
173       <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
174     </member>
175     <member name="M:System.IO.Compression.DeflateStream.FlushAsync(System.Threading.CancellationToken)">
176       <summary>Asynchronously clears all buffers for this Deflate stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests.</summary>
177       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
178       <returns>A task that represents the asynchronous flush operation.</returns>
179     </member>
180     <member name="P:System.IO.Compression.DeflateStream.Length">
181       <summary>This property is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
182       <returns>A long value.</returns>
183       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
184     </member>
185     <member name="P:System.IO.Compression.DeflateStream.Position">
186       <summary>This property is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
187       <returns>A long value.</returns>
188       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
189     </member>
190     <member name="M:System.IO.Compression.DeflateStream.Read(System.Byte[],System.Int32,System.Int32)">
191       <summary>Reads a number of decompressed bytes into the specified byte array.</summary>
192       <param name="array">The array to store decompressed bytes.</param>
193       <param name="offset">The byte offset in <paramref name="array" /> at which the read bytes will be placed.</param>
194       <param name="count">The maximum number of decompressed bytes to read.</param>
195       <returns>The number of bytes that were read into the byte array.</returns>
196       <exception cref="T:System.ArgumentNullException">
197         <paramref name="array" /> is <see langword="null" />.</exception>
198       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.IO.Compression.CompressionMode" /> value was <see langword="Compress" /> when the object was created.
199 -or-
200 The underlying stream does not support reading.</exception>
201       <exception cref="T:System.ArgumentOutOfRangeException">
202         <paramref name="offset" /> or <paramref name="count" /> is less than zero.
203 -or-
204 <paramref name="array" /> length minus the index starting point is less than <paramref name="count" />.</exception>
205       <exception cref="T:System.IO.InvalidDataException">The data is in an invalid format.</exception>
206       <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
207     </member>
208     <member name="M:System.IO.Compression.DeflateStream.Read(System.Span{System.Byte})">
209       <summary>Reads a sequence of bytes from the current Deflate stream into a byte span and advances the position within the Deflate stream by the number of bytes read.</summary>
210       <param name="buffer">A region of memory. When this method returns, the contents of this region are replaced by the bytes read from the current source.</param>
211       <returns>The total number of bytes read into the buffer. This can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
212     </member>
213     <member name="M:System.IO.Compression.DeflateStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
214       <summary>Asynchronously reads a sequence of bytes from the current Deflate stream, writes them to a byte array, advances the position within the Deflate stream by the number of bytes read, and monitors cancellation requests.</summary>
215       <param name="array">The buffer to write the data into.</param>
216       <param name="offset">The byte offset in <paramref name="array" /> at which to begin writing data from the Deflate stream.</param>
217       <param name="count">The maximum number of bytes to read.</param>
218       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
219       <returns>A task that represents the asynchronous read operation, which wraps the total number of bytes read into the <paramref name="array" />. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the Deflate stream has been reached.</returns>
220     </member>
221     <member name="M:System.IO.Compression.DeflateStream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken)">
222       <summary>Asynchronously reads a sequence of bytes from the current Deflate stream, writes them to a byte memory range, advances the position within the Deflate stream by the number of bytes read, and monitors cancellation requests.</summary>
223       <param name="buffer">The region of memory to write the data into.</param>
224       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
225       <returns>A task that represents the asynchronous read operation, which wraps the total number of bytes read into the buffer. The result value can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or it can be 0 (zero) if the end of the Deflate stream has been reached.</returns>
226     </member>
227     <member name="M:System.IO.Compression.DeflateStream.ReadByte">
228       <summary>Reads a byte from the Deflate stream and advances the position within the stream by one byte, or returns -1 if at the end of the Deflate stream.</summary>
229       <returns>The unsigned byte cast to an <see langword="Int32" />, or -1 if at the end of the stream.</returns>
230     </member>
231     <member name="M:System.IO.Compression.DeflateStream.Seek(System.Int64,System.IO.SeekOrigin)">
232       <summary>This operation is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
233       <param name="offset">The location in the stream.</param>
234       <param name="origin">One of the <see cref="T:System.IO.SeekOrigin" /> values.</param>
235       <returns>A long value.</returns>
236       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
237     </member>
238     <member name="M:System.IO.Compression.DeflateStream.SetLength(System.Int64)">
239       <summary>This operation is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
240       <param name="value">The length of the stream.</param>
241       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
242     </member>
243     <member name="M:System.IO.Compression.DeflateStream.Write(System.Byte[],System.Int32,System.Int32)">
244       <summary>Writes compressed bytes to the underlying stream from the specified byte array.</summary>
245       <param name="array">The buffer that contains the data to compress.</param>
246       <param name="offset">The byte offset in <paramref name="array" /> from which the bytes will be read.</param>
247       <param name="count">The maximum number of bytes to write.</param>
248     </member>
249     <member name="M:System.IO.Compression.DeflateStream.Write(System.ReadOnlySpan{System.Byte})">
250       <summary>Writes a sequence of bytes to the current Deflate stream and advances the current position within this Deflate stream by the number of bytes written.</summary>
251       <param name="buffer">A region of memory. This method copies the contents of this region to the current Deflate stream.</param>
252     </member>
253     <member name="M:System.IO.Compression.DeflateStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
254       <summary>Asynchronously writes compressed bytes to the underlying Deflate stream from the specified byte array.</summary>
255       <param name="array">The buffer that contains the data to compress.</param>
256       <param name="offset">The zero-based byte offset in <paramref name="array" /> from which to begin copying bytes to the Deflate stream.</param>
257       <param name="count">The maximum number of bytes to write.</param>
258       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
259       <returns>A task that represents the asynchronous write operation.</returns>
260     </member>
261     <member name="M:System.IO.Compression.DeflateStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
262       <summary>Asynchronously writes compressed bytes to the underlying Deflate stream from the specified read-only memory region.</summary>
263       <param name="buffer">The region of memory to write data from.</param>
264       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
265       <returns>A task that represents the asynchronous write operation.</returns>
266     </member>
267     <member name="T:System.IO.Compression.GZipStream">
268       <summary>Provides methods and properties used to compress and decompress streams by using the GZip data format specification.</summary>
269     </member>
270     <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel)">
271       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.GZipStream" /> class by using the specified stream and compression level.</summary>
272       <param name="stream">The stream to compress.</param>
273       <param name="compressionLevel">One of the enumeration values that indicates whether to emphasize speed or compression efficiency when compressing the stream.</param>
274       <exception cref="T:System.ArgumentNullException">
275         <paramref name="stream" /> is <see langword="null" />.</exception>
276       <exception cref="T:System.ArgumentException">The stream does not support write operations such as compression. (The <see cref="P:System.IO.Stream.CanWrite" /> property on the stream object is <see langword="false" />.)</exception>
277     </member>
278     <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)">
279       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.GZipStream" /> class by using the specified stream and compression level, and optionally leaves the stream open.</summary>
280       <param name="stream">The stream to write the compressed data to.</param>
281       <param name="compressionLevel">One of the enumeration values that indicates whether to emphasize speed or compression efficiency when compressing the stream.</param>
282       <param name="leaveOpen">
283         <see langword="true" /> to leave the stream object open after disposing the <see cref="T:System.IO.Compression.GZipStream" /> object; otherwise, <see langword="false" />.</param>
284       <exception cref="T:System.ArgumentNullException">
285         <paramref name="stream" /> is <see langword="null" />.</exception>
286       <exception cref="T:System.ArgumentException">The stream does not support write operations such as compression. (The <see cref="P:System.IO.Stream.CanWrite" /> property on the stream object is <see langword="false" />.)</exception>
287     </member>
288     <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode)">
289       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.GZipStream" /> class by using the specified stream and compression mode.</summary>
290       <param name="stream">The stream the compressed or decompressed data is written to.</param>
291       <param name="mode">One of the enumeration values that indicates whether to compress or decompress the stream.</param>
292       <exception cref="T:System.ArgumentNullException">
293         <paramref name="stream" /> is <see langword="null" />.</exception>
294       <exception cref="T:System.ArgumentException">
295         <paramref name="mode" /> is not a valid <see cref="T:System.IO.Compression.CompressionMode" /> enumeration value.
296 -or-
297 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Compress" /> and <see cref="P:System.IO.Stream.CanWrite" /> is <see langword="false" />.
298 -or-
299 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> and <see cref="P:System.IO.Stream.CanRead" /> is <see langword="false" />.</exception>
300     </member>
301     <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean)">
302       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.GZipStream" /> class by using the specified stream and compression mode, and optionally leaves the stream open.</summary>
303       <param name="stream">The stream to compress.</param>
304       <param name="mode">One of the enumeration values that indicates whether to compress or decompress the stream.</param>
305       <param name="leaveOpen">
306         <see langword="true" /> to leave the stream open after disposing the <see cref="T:System.IO.Compression.GZipStream" /> object; otherwise, <see langword="false" />.</param>
307       <exception cref="T:System.ArgumentNullException">
308         <paramref name="stream" /> is <see langword="null" />.</exception>
309       <exception cref="T:System.ArgumentException">
310         <paramref name="mode" /> is not a valid <see cref="T:System.IO.Compression.CompressionMode" /> value.
311 -or-
312 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Compress" /> and <see cref="P:System.IO.Stream.CanWrite" /> is <see langword="false" />.
313 -or-
314 <see cref="T:System.IO.Compression.CompressionMode" /> is <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> and <see cref="P:System.IO.Stream.CanRead" /> is <see langword="false" />.</exception>
315     </member>
316     <member name="P:System.IO.Compression.GZipStream.BaseStream">
317       <summary>Gets a reference to the underlying stream.</summary>
318       <returns>A stream object that represents the underlying stream.</returns>
319       <exception cref="T:System.ObjectDisposedException">The underlying stream is closed.</exception>
320     </member>
321     <member name="M:System.IO.Compression.GZipStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
322       <summary>Begins an asynchronous read operation. (Consider using the <see cref="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
323       <param name="array">The byte array to read the data into.</param>
324       <param name="offset">The byte offset in <paramref name="array" /> at which to begin reading data from the stream.</param>
325       <param name="count">The maximum number of bytes to read.</param>
326       <param name="asyncCallback">An optional asynchronous callback, to be called when the read operation is complete.</param>
327       <param name="asyncState">A user-provided object that distinguishes this particular asynchronous read request from other requests.</param>
328       <returns>An object that represents the asynchronous read operation, which could still be pending.</returns>
329       <exception cref="T:System.IO.IOException">The method tried to  read asynchronously past the end of the stream, or a disk error occurred.</exception>
330       <exception cref="T:System.ArgumentException">One or more of the arguments is invalid.</exception>
331       <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
332       <exception cref="T:System.NotSupportedException">The current <see cref="T:System.IO.Compression.GZipStream" /> implementation does not support the read operation.</exception>
333       <exception cref="T:System.InvalidOperationException">A read operation cannot be performed because the stream is closed.</exception>
334     </member>
335     <member name="M:System.IO.Compression.GZipStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
336       <summary>Begins an asynchronous write operation. (Consider using the <see cref="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
337       <param name="array">The buffer containing data to write to the current stream.</param>
338       <param name="offset">The byte offset in <paramref name="array" /> at which to begin writing.</param>
339       <param name="count">The maximum number of bytes to write.</param>
340       <param name="asyncCallback">An optional asynchronous callback to be called when the write operation is complete.</param>
341       <param name="asyncState">A user-provided object that distinguishes this particular asynchronous write request from other requests.</param>
342       <returns>An  object that represents the asynchronous write operation, which could still be pending.</returns>
343       <exception cref="T:System.InvalidOperationException">The underlying stream is <see langword="null" />.
344 -or-
345 The underlying stream is closed.</exception>
346     </member>
347     <member name="P:System.IO.Compression.GZipStream.CanRead">
348       <summary>Gets a value indicating whether the stream supports reading while decompressing a file.</summary>
349       <returns>
350         <see langword="true" /> if the <see cref="T:System.IO.Compression.CompressionMode" /> value is <see langword="Decompress," /> and the underlying stream supports reading and is not closed; otherwise, <see langword="false" />.</returns>
351     </member>
352     <member name="P:System.IO.Compression.GZipStream.CanSeek">
353       <summary>Gets a value indicating whether the stream supports seeking.</summary>
354       <returns>
355         <see langword="false" /> in all cases.</returns>
356     </member>
357     <member name="P:System.IO.Compression.GZipStream.CanWrite">
358       <summary>Gets a value indicating whether the stream supports writing.</summary>
359       <returns>
360         <see langword="true" /> if the <see cref="T:System.IO.Compression.CompressionMode" /> value is <see langword="Compress" />, and the underlying stream supports writing and is not closed; otherwise, <see langword="false" />.</returns>
361     </member>
362     <member name="M:System.IO.Compression.GZipStream.CopyTo(System.IO.Stream,System.Int32)">
363       <summary>Reads the bytes from the current GZip stream and writes them to another stream, using a specified buffer size.</summary>
364       <param name="destination">The stream to which the contents of the current GZip stream will be copied.</param>
365       <param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 81920.</param>
366     </member>
367     <member name="M:System.IO.Compression.GZipStream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
368       <summary>Asynchronously reads the bytes from the current GZip stream and writes them to another stream, using a specified buffer size.</summary>
369       <param name="destination">The stream to which the contents of the current GZip stream will be copied.</param>
370       <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero. The default size is 81920.</param>
371       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
372       <returns>A task that represents the asynchronous copy operation.</returns>
373     </member>
374     <member name="M:System.IO.Compression.GZipStream.Dispose(System.Boolean)">
375       <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.Compression.GZipStream" /> and optionally releases the managed resources.</summary>
376       <param name="disposing">
377         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
378     </member>
379     <member name="M:System.IO.Compression.GZipStream.DisposeAsync">
380       <summary>Asynchronously releases the unmanaged resources used by the <see cref="T:System.IO.Compression.GZipStream" />.</summary>
381       <returns>A task that represents the asynchronous dispose operation.</returns>
382     </member>
383     <member name="M:System.IO.Compression.GZipStream.EndRead(System.IAsyncResult)">
384       <summary>Waits for the pending asynchronous read to complete. (Consider using the <see cref="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
385       <param name="asyncResult">The reference to the pending asynchronous request to finish.</param>
386       <returns>The number of bytes read from the stream, between 0 (zero) and the number of bytes you requested. <see cref="T:System.IO.Compression.GZipStream" /> returns 0 only at the end of the stream; otherwise, it blocks until at least one byte is available.</returns>
387       <exception cref="T:System.ArgumentNullException">
388         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
389       <exception cref="T:System.ArgumentException">
390         <paramref name="asyncResult" /> did not originate from a <see cref="M:System.IO.Compression.GZipStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> method on the current stream.</exception>
391       <exception cref="T:System.InvalidOperationException">The end operation cannot be performed because the stream is closed.</exception>
392     </member>
393     <member name="M:System.IO.Compression.GZipStream.EndWrite(System.IAsyncResult)">
394       <summary>Handles the end of an asynchronous write operation. (Consider using the <see cref="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)" /> method instead.)</summary>
395       <param name="asyncResult">The object that represents the asynchronous call.</param>
396       <exception cref="T:System.InvalidOperationException">The underlying stream is <see langword="null" />.
397 -or-
398 The underlying stream is closed.</exception>
399     </member>
400     <member name="M:System.IO.Compression.GZipStream.Flush">
401       <summary>The current implementation of this method has no functionality.</summary>
402       <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
403     </member>
404     <member name="M:System.IO.Compression.GZipStream.FlushAsync(System.Threading.CancellationToken)">
405       <summary>Asynchronously clears all buffers for this GZip stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests.</summary>
406       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
407       <returns>A task that represents the asynchronous flush operation.</returns>
408     </member>
409     <member name="P:System.IO.Compression.GZipStream.Length">
410       <summary>This property is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
411       <returns>A long value.</returns>
412       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
413     </member>
414     <member name="P:System.IO.Compression.GZipStream.Position">
415       <summary>This property is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
416       <returns>A long value.</returns>
417       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
418     </member>
419     <member name="M:System.IO.Compression.GZipStream.Read(System.Byte[],System.Int32,System.Int32)">
420       <summary>Reads a number of decompressed bytes into the specified byte array.</summary>
421       <param name="array">The array used to store decompressed bytes.</param>
422       <param name="offset">The byte offset in <paramref name="array" /> at which the read bytes will be placed.</param>
423       <param name="count">The maximum number of decompressed bytes to read.</param>
424       <returns>The number of bytes that were decompressed into the byte array. If the end of the stream has been reached, zero or the number of bytes read is returned.</returns>
425       <exception cref="T:System.ArgumentNullException">
426         <paramref name="array" /> is <see langword="null" />.</exception>
427       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.IO.Compression.CompressionMode" /> value was <see langword="Compress" /> when the object was created.
428 -or-
429 The underlying stream does not support reading.</exception>
430       <exception cref="T:System.ArgumentOutOfRangeException">
431         <paramref name="offset" /> or <paramref name="count" /> is less than zero.
432 -or-
433 <paramref name="array" /> length minus the index starting point is less than <paramref name="count" />.</exception>
434       <exception cref="T:System.IO.InvalidDataException">The data is in an invalid format.</exception>
435       <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
436     </member>
437     <member name="M:System.IO.Compression.GZipStream.Read(System.Span{System.Byte})">
438       <summary>Reads a sequence of bytes from the current GZip stream into a byte span and advances the position within the GZip stream by the number of bytes read.</summary>
439       <param name="buffer">A region of memory. When this method returns, the contents of this region are replaced by the bytes read from the current source.</param>
440       <returns>The total number of bytes read into the buffer. This can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
441     </member>
442     <member name="M:System.IO.Compression.GZipStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
443       <summary>Asynchronously reads a sequence of bytes from the current GZip stream into a byte array, advances the position within the GZip stream by the number of bytes read, and monitors cancellation requests.</summary>
444       <param name="array">The buffer to write the data into.</param>
445       <param name="offset">The byte offset in <paramref name="array" /> at which to begin writing data from the GZip stream.</param>
446       <param name="count">The maximum number of bytes to read.</param>
447       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
448       <returns>A task that represents the asynchronous read operation, which wraps the total number of bytes read into the <paramref name="array" />. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the GZip stream has been reached.</returns>
449     </member>
450     <member name="M:System.IO.Compression.GZipStream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken)">
451       <summary>Asynchronously reads a sequence of bytes from the current GZip stream into a byte memory region, advances the position within the GZip stream by the number of bytes read, and monitors cancellation requests.</summary>
452       <param name="buffer">The region of memory to write the data into.</param>
453       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
454       <returns>A task that represents the asynchronous read operation, which wraps the total number of bytes read into the buffer. The result value can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or it can be 0 (zero) if the end of the GZip stream has been reached.</returns>
455     </member>
456     <member name="M:System.IO.Compression.GZipStream.ReadByte">
457       <summary>Reads a byte from the GZip stream and advances the position within the stream by one byte, or returns -1 if at the end of the GZip stream.</summary>
458       <returns>The unsigned byte cast to an <see langword="Int32" />, or -1 if at the end of the stream.</returns>
459     </member>
460     <member name="M:System.IO.Compression.GZipStream.Seek(System.Int64,System.IO.SeekOrigin)">
461       <summary>This property is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
462       <param name="offset">The location in the stream.</param>
463       <param name="origin">One of the <see cref="T:System.IO.SeekOrigin" /> values.</param>
464       <returns>A long value.</returns>
465       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
466     </member>
467     <member name="M:System.IO.Compression.GZipStream.SetLength(System.Int64)">
468       <summary>This property is not supported and always throws a <see cref="T:System.NotSupportedException" />.</summary>
469       <param name="value">The length of the stream.</param>
470       <exception cref="T:System.NotSupportedException">This property is not supported on this stream.</exception>
471     </member>
472     <member name="M:System.IO.Compression.GZipStream.Write(System.Byte[],System.Int32,System.Int32)">
473       <summary>Writes compressed bytes to the underlying GZip stream from the specified byte array.</summary>
474       <param name="array">The buffer that contains the data to compress.</param>
475       <param name="offset">The byte offset in <paramref name="array" /> from which the bytes will be read.</param>
476       <param name="count">The maximum number of bytes to write.</param>
477       <exception cref="T:System.ObjectDisposedException">The write operation cannot be performed because the stream is closed.</exception>
478     </member>
479     <member name="M:System.IO.Compression.GZipStream.Write(System.ReadOnlySpan{System.Byte})">
480       <summary>Writes a sequence of bytes to the current GZip stream from a read-only byte span and advances the current position within this GZip stream by the number of bytes written.</summary>
481       <param name="buffer">A region of memory. This method copies the contents of this region to the current GZip stream.</param>
482     </member>
483     <member name="M:System.IO.Compression.GZipStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
484       <summary>Asynchronously writes compressed bytes to the underlying GZip stream from the specified byte array.</summary>
485       <param name="array">The buffer that contains the data to compress.</param>
486       <param name="offset">The zero-based byte offset in <paramref name="array" /> from which to begin copying bytes to the GZip stream.</param>
487       <param name="count">The maximum number of bytes to write.</param>
488       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
489       <returns>A task that represents the asynchronous write operation.</returns>
490     </member>
491     <member name="M:System.IO.Compression.GZipStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
492       <summary>Asynchronously writes compressed bytes to the underlying GZip stream from the specified read-only byte memory region.</summary>
493       <param name="buffer">The region of memory to write data from.</param>
494       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
495       <returns>A task that represents the asynchronous write operation.</returns>
496     </member>
497     <member name="T:System.IO.Compression.ZipArchive">
498       <summary>Represents a package of compressed files in the zip archive format.</summary>
499     </member>
500     <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream)">
501       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.ZipArchive" /> class from the specified stream.</summary>
502       <param name="stream">The stream that contains the archive to be read.</param>
503       <exception cref="T:System.ArgumentException">The stream is already closed or does not support reading.</exception>
504       <exception cref="T:System.ArgumentNullException">
505         <paramref name="stream" /> is <see langword="null" />.</exception>
506       <exception cref="T:System.IO.InvalidDataException">The contents of the stream are not in the zip archive format.</exception>
507     </member>
508     <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream,System.IO.Compression.ZipArchiveMode)">
509       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.ZipArchive" /> class from the specified stream and with the specified mode.</summary>
510       <param name="stream">The input or output stream.</param>
511       <param name="mode">One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries.</param>
512       <exception cref="T:System.ArgumentException">The stream is already closed, or the capabilities of the stream do not match the mode.</exception>
513       <exception cref="T:System.ArgumentNullException">
514         <paramref name="stream" /> is <see langword="null" />.</exception>
515       <exception cref="T:System.ArgumentOutOfRangeException">
516         <paramref name="mode" /> is an invalid value.</exception>
517       <exception cref="T:System.IO.InvalidDataException">The contents of the stream could not be interpreted as a zip archive.
518 -or-
519 <paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is missing from the archive or is corrupt and cannot be read.
520 -or-
521 <paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is too large to fit into memory.</exception>
522     </member>
523     <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream,System.IO.Compression.ZipArchiveMode,System.Boolean)">
524       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.ZipArchive" /> class on the specified stream for the specified mode, and optionally leaves the stream open.</summary>
525       <param name="stream">The input or output stream.</param>
526       <param name="mode">One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries.</param>
527       <param name="leaveOpen">
528         <see langword="true" /> to leave the stream open after the <see cref="T:System.IO.Compression.ZipArchive" /> object is disposed; otherwise, <see langword="false" />.</param>
529       <exception cref="T:System.ArgumentException">The stream is already closed, or the capabilities of the stream do not match the mode.</exception>
530       <exception cref="T:System.ArgumentNullException">
531         <paramref name="stream" /> is <see langword="null" />.</exception>
532       <exception cref="T:System.ArgumentOutOfRangeException">
533         <paramref name="mode" /> is an invalid value.</exception>
534       <exception cref="T:System.IO.InvalidDataException">The contents of the stream could not be interpreted as a zip archive.
535 -or-
536 <paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is missing from the archive or is corrupt and cannot be read.
537 -or-
538 <paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is too large to fit into memory.</exception>
539     </member>
540     <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream,System.IO.Compression.ZipArchiveMode,System.Boolean,System.Text.Encoding)">
541       <summary>Initializes a new instance of the <see cref="T:System.IO.Compression.ZipArchive" /> class on the specified stream for the specified mode, uses the specified encoding for entry names, and optionally leaves the stream open.</summary>
542       <param name="stream">The input or output stream.</param>
543       <param name="mode">One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries.</param>
544       <param name="leaveOpen">
545         <see langword="true" /> to leave the stream open after the <see cref="T:System.IO.Compression.ZipArchive" /> object is disposed; otherwise, <see langword="false" />.</param>
546       <param name="entryNameEncoding">The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names.</param>
547       <exception cref="T:System.ArgumentException">The stream is already closed, or the capabilities of the stream do not match the mode.</exception>
548       <exception cref="T:System.ArgumentNullException">
549         <paramref name="stream" /> is <see langword="null" />.</exception>
550       <exception cref="T:System.ArgumentOutOfRangeException">
551         <paramref name="mode" /> is an invalid value.</exception>
552       <exception cref="T:System.IO.InvalidDataException">The contents of the stream could not be interpreted as a zip archive.
553 -or-
554 <paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is missing from the archive or is corrupt and cannot be read.
555 -or-
556 <paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is too large to fit into memory.</exception>
557     </member>
558     <member name="M:System.IO.Compression.ZipArchive.CreateEntry(System.String)">
559       <summary>Creates an empty entry that has the specified path and entry name in the zip archive.</summary>
560       <param name="entryName">A path, relative to the root of the archive, that specifies the name of the entry to be created.</param>
561       <returns>An empty entry in the zip archive.</returns>
562       <exception cref="T:System.ArgumentException">
563         <paramref name="entryName" /> is <see cref="F:System.String.Empty" />.</exception>
564       <exception cref="T:System.ArgumentNullException">
565         <paramref name="entryName" /> is <see langword="null" />.</exception>
566       <exception cref="T:System.NotSupportedException">The zip archive does not support writing.</exception>
567       <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
568     </member>
569     <member name="M:System.IO.Compression.ZipArchive.CreateEntry(System.String,System.IO.Compression.CompressionLevel)">
570       <summary>Creates an empty entry that has the specified entry name and compression level in the zip archive.</summary>
571       <param name="entryName">A path, relative to the root of the archive, that specifies the name of the entry to be created.</param>
572       <param name="compressionLevel">One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry.</param>
573       <returns>An empty entry in the zip archive.</returns>
574       <exception cref="T:System.ArgumentException">
575         <paramref name="entryName" /> is <see cref="F:System.String.Empty" />.</exception>
576       <exception cref="T:System.ArgumentNullException">
577         <paramref name="entryName" /> is <see langword="null" />.</exception>
578       <exception cref="T:System.NotSupportedException">The zip archive does not support writing.</exception>
579       <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
580     </member>
581     <member name="M:System.IO.Compression.ZipArchive.Dispose">
582       <summary>Releases the resources used by the current instance of the <see cref="T:System.IO.Compression.ZipArchive" /> class.</summary>
583     </member>
584     <member name="M:System.IO.Compression.ZipArchive.Dispose(System.Boolean)">
585       <summary>Called by the <see cref="M:System.IO.Compression.ZipArchive.Dispose" /> and <see cref="M:System.Object.Finalize" /> methods to release the unmanaged resources used by the current instance of the <see cref="T:System.IO.Compression.ZipArchive" /> class, and optionally finishes writing the archive and releases the managed resources.</summary>
586       <param name="disposing">
587         <see langword="true" /> to finish writing the archive and release unmanaged and managed resources; <see langword="false" /> to release only unmanaged resources.</param>
588     </member>
589     <member name="P:System.IO.Compression.ZipArchive.Entries">
590       <summary>Gets the collection of entries that are currently in the zip archive.</summary>
591       <returns>The collection of entries that are currently in the zip archive.</returns>
592       <exception cref="T:System.NotSupportedException">The zip archive does not support reading.</exception>
593       <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
594       <exception cref="T:System.IO.InvalidDataException">The zip archive is corrupt, and its entries cannot be retrieved.</exception>
595     </member>
596     <member name="M:System.IO.Compression.ZipArchive.GetEntry(System.String)">
597       <summary>Retrieves a wrapper for the specified entry in the zip archive.</summary>
598       <param name="entryName">A path, relative to the root of the archive, that identifies the entry to retrieve.</param>
599       <returns>A wrapper for the specified entry in the archive; <see langword="null" /> if the entry does not exist in the archive.</returns>
600       <exception cref="T:System.ArgumentException">
601         <paramref name="entryName" /> is <see cref="F:System.String.Empty" />.</exception>
602       <exception cref="T:System.ArgumentNullException">
603         <paramref name="entryName" /> is <see langword="null" />.</exception>
604       <exception cref="T:System.NotSupportedException">The zip archive does not support reading.</exception>
605       <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
606       <exception cref="T:System.IO.InvalidDataException">The zip archive is corrupt, and its entries cannot be retrieved.</exception>
607     </member>
608     <member name="P:System.IO.Compression.ZipArchive.Mode">
609       <summary>Gets a value that describes the type of action the zip archive can perform on entries.</summary>
610       <returns>One of the enumeration values that describes the type of action (read, create, or update) the zip archive can perform on entries.</returns>
611     </member>
612     <member name="T:System.IO.Compression.ZipArchiveEntry">
613       <summary>Represents a compressed file within a zip archive.</summary>
614     </member>
615     <member name="P:System.IO.Compression.ZipArchiveEntry.Archive">
616       <summary>Gets the zip archive that the entry belongs to.</summary>
617       <returns>The zip archive that the entry belongs to, or <see langword="null" /> if the entry has been deleted.</returns>
618     </member>
619     <member name="P:System.IO.Compression.ZipArchiveEntry.CompressedLength">
620       <summary>Gets the compressed size of the entry in the zip archive.</summary>
621       <returns>The compressed size of the entry in the zip archive.</returns>
622       <exception cref="T:System.InvalidOperationException">The value of the property is not available because the entry has been modified.</exception>
623     </member>
624     <member name="P:System.IO.Compression.ZipArchiveEntry.Crc32" />
625     <member name="M:System.IO.Compression.ZipArchiveEntry.Delete">
626       <summary>Deletes the entry from the zip archive.</summary>
627       <exception cref="T:System.IO.IOException">The entry is already open for reading or writing.</exception>
628       <exception cref="T:System.NotSupportedException">The zip archive for this entry was opened in a mode other than <see cref="F:System.IO.Compression.ZipArchiveMode.Update" />.</exception>
629       <exception cref="T:System.ObjectDisposedException">The zip archive for this entry has been disposed.</exception>
630     </member>
631     <member name="P:System.IO.Compression.ZipArchiveEntry.ExternalAttributes">
632       <summary>OS and application specific file attributes.</summary>
633       <returns>The external attributes written by the application when this entry was written. It is both host OS and application dependent.</returns>
634     </member>
635     <member name="P:System.IO.Compression.ZipArchiveEntry.FullName">
636       <summary>Gets the relative path of the entry in the zip archive.</summary>
637       <returns>The relative path of the entry in the zip archive.</returns>
638     </member>
639     <member name="P:System.IO.Compression.ZipArchiveEntry.LastWriteTime">
640       <summary>Gets or sets the last time the entry in the zip archive was changed.</summary>
641       <returns>The last time the entry in the zip archive was changed.</returns>
642       <exception cref="T:System.NotSupportedException">The attempt to set this property failed, because the zip archive for the entry is in <see cref="F:System.IO.Compression.ZipArchiveMode.Read" /> mode.</exception>
643       <exception cref="T:System.IO.IOException">The archive mode is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Create" />.
644 -or-
645 The archive mode is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and the entry has been opened.</exception>
646       <exception cref="T:System.ArgumentOutOfRangeException">An attempt was made to set this property to a value that is either earlier than 1980 January 1 0:00:00 (midnight) or later than 2107 December 31 23:59:58 (one second before midnight).</exception>
647     </member>
648     <member name="P:System.IO.Compression.ZipArchiveEntry.Length">
649       <summary>Gets the uncompressed size of the entry in the zip archive.</summary>
650       <returns>The uncompressed size of the entry in the zip archive.</returns>
651       <exception cref="T:System.InvalidOperationException">The value of the property is not available because the entry has been modified.</exception>
652     </member>
653     <member name="P:System.IO.Compression.ZipArchiveEntry.Name">
654       <summary>Gets the file name of the entry in the zip archive.</summary>
655       <returns>The file name of the entry in the zip archive.</returns>
656     </member>
657     <member name="M:System.IO.Compression.ZipArchiveEntry.Open">
658       <summary>Opens the entry from the zip archive.</summary>
659       <returns>The stream that represents the contents of the entry.</returns>
660       <exception cref="T:System.IO.IOException">The entry is already currently open for writing.
661 -or-
662 The entry has been deleted from the archive.
663 -or-
664 The archive for this entry was opened with the <see cref="F:System.IO.Compression.ZipArchiveMode.Create" /> mode, and this entry has already been written to.</exception>
665       <exception cref="T:System.IO.InvalidDataException">The entry is either missing from the archive or is corrupt and cannot be read.
666 -or-
667 The entry has been compressed by using a compression method that is not supported.</exception>
668       <exception cref="T:System.ObjectDisposedException">The zip archive for this entry has been disposed.</exception>
669     </member>
670     <member name="M:System.IO.Compression.ZipArchiveEntry.ToString">
671       <summary>Retrieves the relative path of the entry in the zip archive.</summary>
672       <returns>The relative path of the entry, which is the value stored in the <see cref="P:System.IO.Compression.ZipArchiveEntry.FullName" /> property.</returns>
673     </member>
674     <member name="T:System.IO.Compression.ZipArchiveMode">
675       <summary>Specifies values for interacting with zip archive entries.</summary>
676     </member>
677     <member name="F:System.IO.Compression.ZipArchiveMode.Create">
678       <summary>Only creating new archive entries is permitted.</summary>
679     </member>
680     <member name="F:System.IO.Compression.ZipArchiveMode.Read">
681       <summary>Only reading archive entries is permitted.</summary>
682     </member>
683     <member name="F:System.IO.Compression.ZipArchiveMode.Update">
684       <summary>Both read and write operations are permitted for archive entries.</summary>
685     </member>
686   </members>
687 </doc>