You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

System.IO.Compression.xml 44 KiB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  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>圧縮操作で速度または圧縮サイズのどちらを重視するかどうかを示す値を指定します。</summary>
  9. </member>
  10. <member name="F:System.IO.Compression.CompressionLevel.Fastest">
  11. <summary>圧縮後のファイルは最適な圧縮ではなくても、圧縮操作はできるだけ迅速に完了する必要があります。</summary>
  12. </member>
  13. <member name="F:System.IO.Compression.CompressionLevel.NoCompression">
  14. <summary>ファイルに対して圧縮を行いません。</summary>
  15. </member>
  16. <member name="F:System.IO.Compression.CompressionLevel.Optimal">
  17. <summary>圧縮操作の操作が完了するまでに時間がかかりますが、圧縮操作は最適に圧縮する必要があります。</summary>
  18. </member>
  19. <member name="T:System.IO.Compression.CompressionMode">
  20. <summary> 基になるストリームを圧縮するのか、または圧縮解除するのかを指定します。</summary>
  21. </member>
  22. <member name="F:System.IO.Compression.CompressionMode.Compress">
  23. <summary>基になるストリームを圧縮します。</summary>
  24. </member>
  25. <member name="F:System.IO.Compression.CompressionMode.Decompress">
  26. <summary>基になるストリームを圧縮解除します。</summary>
  27. </member>
  28. <member name="T:System.IO.Compression.DeflateStream">
  29. <summary>Deflate アルゴリズムを使用してストリームを圧縮および圧縮解除するためのメソッドとプロパティを提供します。</summary>
  30. </member>
  31. <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel)">
  32. <summary>指定したストリームと圧縮レベルを使用して、<see cref="T:System.IO.Compression.DeflateStream" /> クラスの新しいインスタンスを初期化します。</summary>
  33. <param name="stream">圧縮するストリーム。</param>
  34. <param name="compressionLevel">ストリームの圧縮時に速度または圧縮の効率性を強調するかどうかを示す列挙値の 1 つ。</param>
  35. <exception cref="T:System.ArgumentNullException">
  36. <paramref name="stream" /> は null です。</exception>
  37. <exception cref="T:System.ArgumentException">ストリームは圧縮などの書き込み操作をサポートしません。(ストリーム オブジェクトの <see cref="P:System.IO.Stream.CanWrite" /> プロパティは false です)</exception>
  38. </member>
  39. <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)">
  40. <summary>指定したストリームと圧縮レベルを使用して <see cref="T:System.IO.Compression.DeflateStream" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
  41. <param name="stream">圧縮するストリーム。</param>
  42. <param name="compressionLevel">ストリームの圧縮時に速度または圧縮の効率性を強調するかどうかを示す列挙値の 1 つ。</param>
  43. <param name="leaveOpen">
  44. <see cref="T:System.IO.Compression.DeflateStream" /> オブジェクトを破棄した後にストリーム オブジェクトを開いたままにする場合は true、それ以外の場合は false。</param>
  45. <exception cref="T:System.ArgumentNullException">
  46. <paramref name="stream" /> は null です。</exception>
  47. <exception cref="T:System.ArgumentException">ストリームは圧縮などの書き込み操作をサポートしません。(ストリーム オブジェクトの <see cref="P:System.IO.Stream.CanWrite" /> プロパティは false です)</exception>
  48. </member>
  49. <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode)">
  50. <summary>指定したストリームと圧縮モードを使用して、<see cref="T:System.IO.Compression.DeflateStream" /> クラスの新しいインスタンスを初期化します。</summary>
  51. <param name="stream">圧縮または圧縮解除するストリーム。</param>
  52. <param name="mode">ストリームを圧縮するか圧縮解除するかを示す列挙値の 1 つ。</param>
  53. <exception cref="T:System.ArgumentNullException">
  54. <paramref name="stream" /> は null です。</exception>
  55. <exception cref="T:System.ArgumentException">
  56. <paramref name="mode" /> が有効な <see cref="T:System.IO.Compression.CompressionMode" /> 値ではありません。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Compress" /> で、<see cref="P:System.IO.Stream.CanWrite" /> が false です。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> で、<see cref="P:System.IO.Stream.CanRead" /> が false です。</exception>
  57. </member>
  58. <member name="M:System.IO.Compression.DeflateStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean)">
  59. <summary>指定したストリームと圧縮モードを使用して <see cref="T:System.IO.Compression.DeflateStream" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
  60. <param name="stream">圧縮または圧縮解除するストリーム。</param>
  61. <param name="mode">ストリームを圧縮するか圧縮解除するかを示す列挙値の 1 つ。</param>
  62. <param name="leaveOpen">
  63. <see cref="T:System.IO.Compression.DeflateStream" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
  64. <exception cref="T:System.ArgumentNullException">
  65. <paramref name="stream" /> は null です。</exception>
  66. <exception cref="T:System.ArgumentException">
  67. <paramref name="mode" /> が有効な <see cref="T:System.IO.Compression.CompressionMode" /> 値ではありません。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Compress" /> で、<see cref="P:System.IO.Stream.CanWrite" /> が false です。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> で、<see cref="P:System.IO.Stream.CanRead" /> が false です。</exception>
  68. </member>
  69. <member name="P:System.IO.Compression.DeflateStream.BaseStream">
  70. <summary>基になるストリームへの参照を取得します。</summary>
  71. <returns>基になるストリームを表すストリーム オブジェクト。</returns>
  72. <exception cref="T:System.ObjectDisposedException">基になるストリームが閉じられました。</exception>
  73. </member>
  74. <member name="P:System.IO.Compression.DeflateStream.CanRead">
  75. <summary>ファイルの圧縮解除中にストリームが読み取りをサポートするかどうかを示す値を取得します。</summary>
  76. <returns>
  77. <see cref="T:System.IO.Compression.CompressionMode" /> 値が Decompress で、基になるストリームが開いており、読み取りをサポートしている場合は true。それ以外の場合は false。</returns>
  78. </member>
  79. <member name="P:System.IO.Compression.DeflateStream.CanSeek">
  80. <summary>ストリームがシークをサポートしているかどうかを示す値を取得します。</summary>
  81. <returns>常に false。</returns>
  82. </member>
  83. <member name="P:System.IO.Compression.DeflateStream.CanWrite">
  84. <summary>ストリームが書き込みをサポートしているかどうかを示す値を取得します。</summary>
  85. <returns>
  86. <see cref="T:System.IO.Compression.CompressionMode" /> 値が Compress で、基になるストリームが書き込みをサポートし、閉じられていない場合は true。それ以外の場合は false。</returns>
  87. </member>
  88. <member name="M:System.IO.Compression.DeflateStream.Dispose(System.Boolean)">
  89. <summary>
  90. <see cref="T:System.IO.Compression.DeflateStream" /> で使用されているアンマネージ リソースを解放し、オプションでマネージ リソースを解放します。</summary>
  91. <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
  92. </member>
  93. <member name="M:System.IO.Compression.DeflateStream.Flush">
  94. <summary>現在実装されているこのメソッドは、何の機能も提供しません。</summary>
  95. <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
  96. <PermissionSet>
  97. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  98. </PermissionSet>
  99. </member>
  100. <member name="P:System.IO.Compression.DeflateStream.Length">
  101. <summary>このプロパティはサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  102. <returns>long 値。</returns>
  103. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  104. <PermissionSet>
  105. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  106. </PermissionSet>
  107. </member>
  108. <member name="P:System.IO.Compression.DeflateStream.Position">
  109. <summary>このプロパティはサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  110. <returns>long 値。</returns>
  111. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  112. <PermissionSet>
  113. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  114. </PermissionSet>
  115. </member>
  116. <member name="M:System.IO.Compression.DeflateStream.Read(System.Byte[],System.Int32,System.Int32)">
  117. <summary>圧縮解除されたバイト数を、指定したバイト配列に読み取ります。</summary>
  118. <returns>バイト配列に読み取られたバイト数。</returns>
  119. <param name="array">圧縮解除されたバイトを格納するための配列。</param>
  120. <param name="offset">読み取られるバイトが配置される <paramref name="array" /> 内のバイト オフセット。</param>
  121. <param name="count">読み取られる、圧縮解除されたバイトの最大数。</param>
  122. <exception cref="T:System.ArgumentNullException">
  123. <paramref name="array" /> は null です。</exception>
  124. <exception cref="T:System.InvalidOperationException">オブジェクトが作成されたとき、<see cref="T:System.IO.Compression.CompressionMode" /> 値が Compress でした。または 基になるストリームが読み取りをサポートしていません。</exception>
  125. <exception cref="T:System.ArgumentOutOfRangeException">
  126. <paramref name="offset" /> または <paramref name="count" /> が 0 未満です。または<paramref name="array" /> の長さからインデックスの開始点を引いた値が <paramref name="count" /> 未満です。</exception>
  127. <exception cref="T:System.IO.InvalidDataException">データ形式が無効です。</exception>
  128. <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
  129. </member>
  130. <member name="M:System.IO.Compression.DeflateStream.Seek(System.Int64,System.IO.SeekOrigin)">
  131. <summary>この操作はサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  132. <returns>long 値。</returns>
  133. <param name="offset">ストリーム内の位置。</param>
  134. <param name="origin">
  135. <see cref="T:System.IO.SeekOrigin" /> 値の 1 つ。</param>
  136. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  137. </member>
  138. <member name="M:System.IO.Compression.DeflateStream.SetLength(System.Int64)">
  139. <summary>この操作はサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  140. <param name="value">ストリーム長。</param>
  141. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  142. </member>
  143. <member name="M:System.IO.Compression.DeflateStream.Write(System.Byte[],System.Int32,System.Int32)">
  144. <summary>圧縮されたバイトを、指定したバイト配列から基になるストリームに書き込みます。</summary>
  145. <param name="array">圧縮するデータを格納しているバッファー。</param>
  146. <param name="offset">バイトの読み取り元となる <paramref name="array" /> 内のバイト オフセット。</param>
  147. <param name="count">書き込む最大バイト数。</param>
  148. </member>
  149. <member name="T:System.IO.Compression.GZipStream">
  150. <summary>ストリームの圧縮および圧縮解除を実行するために使用するメソッドとプロパティを提供します。</summary>
  151. </member>
  152. <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel)">
  153. <summary>指定したストリームと圧縮レベルを使用して、<see cref="T:System.IO.Compression.GZipStream" /> クラスの新しいインスタンスを初期化します。</summary>
  154. <param name="stream">圧縮されたデータを書き込むストリーム。</param>
  155. <param name="compressionLevel">ストリームの圧縮時に速度または圧縮の効率性を強調するかどうかを示す列挙値の 1 つ。</param>
  156. <exception cref="T:System.ArgumentNullException">
  157. <paramref name="stream" /> は null です。</exception>
  158. <exception cref="T:System.ArgumentException">ストリームは圧縮などの書き込み操作をサポートしません。(ストリーム オブジェクトの <see cref="P:System.IO.Stream.CanWrite" /> プロパティは false です)</exception>
  159. </member>
  160. <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)">
  161. <summary>指定したストリームと圧縮レベルを使用して <see cref="T:System.IO.Compression.GZipStream" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
  162. <param name="stream">圧縮されたデータを書き込むストリーム。</param>
  163. <param name="compressionLevel">ストリームの圧縮時に速度または圧縮の効率性を強調するかどうかを示す列挙値の 1 つ。</param>
  164. <param name="leaveOpen">
  165. <see cref="T:System.IO.Compression.GZipStream" /> オブジェクトを破棄した後にストリーム オブジェクトを開いたままにする場合は true、それ以外の場合は false。</param>
  166. <exception cref="T:System.ArgumentNullException">
  167. <paramref name="stream" /> は null です。</exception>
  168. <exception cref="T:System.ArgumentException">ストリームは圧縮などの書き込み操作をサポートしません。(ストリーム オブジェクトの <see cref="P:System.IO.Stream.CanWrite" /> プロパティは false です)</exception>
  169. </member>
  170. <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode)">
  171. <summary>指定したストリームと圧縮モードを使用して、<see cref="T:System.IO.Compression.GZipStream" /> クラスの新しいインスタンスを初期化します。</summary>
  172. <param name="stream">圧縮されたデータまたは圧縮解除されたデータが書き込まれるストリーム。</param>
  173. <param name="mode">ストリームを圧縮するか圧縮解除するかを示す列挙値の 1 つ。</param>
  174. <exception cref="T:System.ArgumentNullException">
  175. <paramref name="stream" /> は null です。</exception>
  176. <exception cref="T:System.ArgumentException">
  177. <paramref name="mode" /> が有効な <see cref="T:System.IO.Compression.CompressionMode" /> 列挙値ではありません。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Compress" /> で、<see cref="P:System.IO.Stream.CanWrite" /> が false です。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> で、<see cref="P:System.IO.Stream.CanRead" /> が false です。</exception>
  178. </member>
  179. <member name="M:System.IO.Compression.GZipStream.#ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean)">
  180. <summary>指定したストリームと圧縮モードを使用して <see cref="T:System.IO.Compression.GZipStream" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
  181. <param name="stream">圧縮されたデータまたは圧縮解除されたデータが書き込まれるストリーム。</param>
  182. <param name="mode">ストリームを圧縮するか圧縮解除するかを示す列挙値の 1 つ。</param>
  183. <param name="leaveOpen">
  184. <see cref="T:System.IO.Compression.GZipStream" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
  185. <exception cref="T:System.ArgumentNullException">
  186. <paramref name="stream" /> は null です。</exception>
  187. <exception cref="T:System.ArgumentException">
  188. <paramref name="mode" /> が有効な <see cref="T:System.IO.Compression.CompressionMode" /> 値ではありません。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Compress" /> で、<see cref="P:System.IO.Stream.CanWrite" /> が false です。または<see cref="T:System.IO.Compression.CompressionMode" /> が <see cref="F:System.IO.Compression.CompressionMode.Decompress" /> で、<see cref="P:System.IO.Stream.CanRead" /> が false です。</exception>
  189. </member>
  190. <member name="P:System.IO.Compression.GZipStream.BaseStream">
  191. <summary>基になるストリームへの参照を取得します。</summary>
  192. <returns>基になるストリームを表すストリーム オブジェクト。</returns>
  193. <exception cref="T:System.ObjectDisposedException">基になるストリームが閉じられました。</exception>
  194. <PermissionSet>
  195. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  196. </PermissionSet>
  197. </member>
  198. <member name="P:System.IO.Compression.GZipStream.CanRead">
  199. <summary>ファイルの圧縮解除中にストリームが読み取りをサポートするかどうかを示す値を取得します。</summary>
  200. <returns>
  201. <see cref="T:System.IO.Compression.CompressionMode" /> 値が Decompress, で、基になるストリームが読み取りをサポートし、閉じられていない場合は true。それ以外の場合は false。</returns>
  202. <PermissionSet>
  203. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  204. </PermissionSet>
  205. </member>
  206. <member name="P:System.IO.Compression.GZipStream.CanSeek">
  207. <summary>ストリームがシークをサポートしているかどうかを示す値を取得します。</summary>
  208. <returns>常に false。</returns>
  209. </member>
  210. <member name="P:System.IO.Compression.GZipStream.CanWrite">
  211. <summary>ストリームが書き込みをサポートしているかどうかを示す値を取得します。</summary>
  212. <returns>
  213. <see cref="T:System.IO.Compression.CompressionMode" /> 値が Compress で、基になるストリームが書き込みをサポートし、閉じられていない場合は true。それ以外の場合は false。</returns>
  214. <PermissionSet>
  215. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  216. </PermissionSet>
  217. </member>
  218. <member name="M:System.IO.Compression.GZipStream.Dispose(System.Boolean)">
  219. <summary>
  220. <see cref="T:System.IO.Compression.GZipStream" /> で使用されているアンマネージ リソースを解放し、オプションでマネージ リソースを解放します。</summary>
  221. <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
  222. </member>
  223. <member name="M:System.IO.Compression.GZipStream.Flush">
  224. <summary>現在実装されているこのメソッドは、何の機能も提供しません。</summary>
  225. <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
  226. <PermissionSet>
  227. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  228. </PermissionSet>
  229. </member>
  230. <member name="P:System.IO.Compression.GZipStream.Length">
  231. <summary>このプロパティはサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  232. <returns>long 値。</returns>
  233. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  234. <PermissionSet>
  235. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  236. </PermissionSet>
  237. </member>
  238. <member name="P:System.IO.Compression.GZipStream.Position">
  239. <summary>このプロパティはサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  240. <returns>long 値。</returns>
  241. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  242. <PermissionSet>
  243. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
  244. </PermissionSet>
  245. </member>
  246. <member name="M:System.IO.Compression.GZipStream.Read(System.Byte[],System.Int32,System.Int32)">
  247. <summary>圧縮解除されたバイト数を、指定したバイト配列に読み取ります。</summary>
  248. <returns>圧縮解除されバイト配列に読み取られたバイト数。既にストリームの末尾に到達している場合は、ゼロまたは読み取られたバイト数が返されます。</returns>
  249. <param name="array">圧縮解除されたバイトを格納するために使用する配列。</param>
  250. <param name="offset">読み取られるバイトが配置される <paramref name="array" /> 内のバイト オフセット。</param>
  251. <param name="count">読み取られる、圧縮解除されたバイトの最大数。</param>
  252. <exception cref="T:System.ArgumentNullException">
  253. <paramref name="array" /> は null です。</exception>
  254. <exception cref="T:System.InvalidOperationException">オブジェクトが作成されたとき、<see cref="T:System.IO.Compression.CompressionMode" /> 値が Compress でした。または基になるストリームが読み取りをサポートしていません。</exception>
  255. <exception cref="T:System.ArgumentOutOfRangeException">
  256. <paramref name="offset" /> または <paramref name="count" /> が 0 未満です。または<paramref name="array" /> の長さからインデックスの開始点を引いた値が <paramref name="count" /> 未満です。</exception>
  257. <exception cref="T:System.IO.InvalidDataException">データ形式が無効です。</exception>
  258. <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
  259. </member>
  260. <member name="M:System.IO.Compression.GZipStream.Seek(System.Int64,System.IO.SeekOrigin)">
  261. <summary>このプロパティはサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  262. <returns>long 値。</returns>
  263. <param name="offset">ストリーム内の位置。</param>
  264. <param name="origin">
  265. <see cref="T:System.IO.SeekOrigin" /> 値の 1 つ。</param>
  266. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  267. </member>
  268. <member name="M:System.IO.Compression.GZipStream.SetLength(System.Int64)">
  269. <summary>このプロパティはサポートされていないため、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
  270. <param name="value">ストリーム長。</param>
  271. <exception cref="T:System.NotSupportedException">このストリームでは、このプロパティはサポートされていません。</exception>
  272. </member>
  273. <member name="M:System.IO.Compression.GZipStream.Write(System.Byte[],System.Int32,System.Int32)">
  274. <summary>圧縮されたバイトを、指定したバイト配列から基になるストリームに書き込みます。</summary>
  275. <param name="array">圧縮するデータを格納しているバッファー。</param>
  276. <param name="offset">バイトの読み取り元となる <paramref name="array" /> 内のバイト オフセット。</param>
  277. <param name="count">書き込む最大バイト数。</param>
  278. <exception cref="T:System.ObjectDisposedException">ストリームが閉じているため、書き込み操作を実行できません。</exception>
  279. </member>
  280. <member name="T:System.IO.Compression.ZipArchive">
  281. <summary>zip アーカイブ形式の圧縮ファイルのパッケージを表します。</summary>
  282. </member>
  283. <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream)">
  284. <summary>指定したストリームからの <see cref="T:System.IO.Compression.ZipArchive" /> クラスの新しいインスタンスを初期化します。</summary>
  285. <param name="stream">読み取るアーカイブを格納しているストリーム。</param>
  286. <exception cref="T:System.ArgumentException">The stream is already closed or does not support reading.</exception>
  287. <exception cref="T:System.ArgumentNullException">
  288. <paramref name="stream" /> is null.</exception>
  289. <exception cref="T:System.IO.InvalidDataException">The contents of the stream are not in the zip archive format.</exception>
  290. </member>
  291. <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream,System.IO.Compression.ZipArchiveMode)">
  292. <summary>指定したストリームと指定したモードから <see cref="T:System.IO.Compression.ZipArchive" /> クラスの新しいインスタンスを初期化します。</summary>
  293. <param name="stream">入力ストリームまたは出力ストリーム。</param>
  294. <param name="mode">zip のアーカイブがエントリの読み込み、作成、または更新に使用されているかどうかを示す列挙値の 1 つ。</param>
  295. <exception cref="T:System.ArgumentException">The stream is already closed, or the capabilities of the stream do not match the mode.</exception>
  296. <exception cref="T:System.ArgumentNullException">
  297. <paramref name="stream" /> is null.</exception>
  298. <exception cref="T:System.ArgumentOutOfRangeException">
  299. <paramref name="mode" /> is an invalid value.</exception>
  300. <exception cref="T:System.IO.InvalidDataException">The contents of the stream could not be interpreted as a zip archive.-or-<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.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is too large to fit into memory.</exception>
  301. </member>
  302. <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream,System.IO.Compression.ZipArchiveMode,System.Boolean)">
  303. <summary>指定されたモードの指定されたストリームで <see cref="T:System.IO.Compression.ZipArchive" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
  304. <param name="stream">入力ストリームまたは出力ストリーム。</param>
  305. <param name="mode">zip のアーカイブがエントリの読み込み、作成、または更新に使用されているかどうかを示す列挙値の 1 つ。</param>
  306. <param name="leaveOpen">
  307. <see cref="T:System.IO.Compression.ZipArchive" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
  308. <exception cref="T:System.ArgumentException">The stream is already closed, or the capabilities of the stream do not match the mode.</exception>
  309. <exception cref="T:System.ArgumentNullException">
  310. <paramref name="stream" /> is null.</exception>
  311. <exception cref="T:System.ArgumentOutOfRangeException">
  312. <paramref name="mode" /> is an invalid value.</exception>
  313. <exception cref="T:System.IO.InvalidDataException">The contents of the stream could not be interpreted as a zip archive.-or-<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.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is too large to fit into memory.</exception>
  314. </member>
  315. <member name="M:System.IO.Compression.ZipArchive.#ctor(System.IO.Stream,System.IO.Compression.ZipArchiveMode,System.Boolean,System.Text.Encoding)">
  316. <summary>指定されたモードの指定されたストリームで <see cref="T:System.IO.Compression.ZipArchive" /> クラスの新しいインスタンスを初期化し、エントリ名に指定されたエンコーディングを使用します。また、必要に応じて、ストリームを開いたままにします。</summary>
  317. <param name="stream">入力ストリームまたは出力ストリーム。</param>
  318. <param name="mode">zip のアーカイブがエントリの読み込み、作成、または更新に使用されているかどうかを示す列挙値の 1 つ。</param>
  319. <param name="leaveOpen">
  320. <see cref="T:System.IO.Compression.ZipArchive" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
  321. <param name="entryNameEncoding">このアーカイブのエントリ名の読み取りまたは書き込み時に使用するエンコード。エントリ名の UTF-8 エンコードをサポートしない zip アーカイブ ツールとライブラリとの相互運用性のためにエンコードが必要な場合にのみ、このパラメーターの値を指定してください。</param>
  322. <exception cref="T:System.ArgumentException">The stream is already closed, or the capabilities of the stream do not match the mode.</exception>
  323. <exception cref="T:System.ArgumentNullException">
  324. <paramref name="stream" /> is null.</exception>
  325. <exception cref="T:System.ArgumentOutOfRangeException">
  326. <paramref name="mode" /> is an invalid value.</exception>
  327. <exception cref="T:System.IO.InvalidDataException">The contents of the stream could not be interpreted as a zip archive.-or-<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.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and an entry is too large to fit into memory.</exception>
  328. </member>
  329. <member name="M:System.IO.Compression.ZipArchive.CreateEntry(System.String)">
  330. <summary>指定したパスとエントリ名を持つ空のエントリを zip アーカイブに作成します。</summary>
  331. <returns>zip アーカイブ内の空のエントリ。</returns>
  332. <param name="entryName">作成されるエントリの名前を指定する、アーカイブのルートを基準とするパス。</param>
  333. <exception cref="T:System.ArgumentException">
  334. <paramref name="entryName" /> is <see cref="F:System.String.Empty" />.</exception>
  335. <exception cref="T:System.ArgumentNullException">
  336. <paramref name="entryName" /> is null.</exception>
  337. <exception cref="T:System.NotSupportedException">The zip archive does not support writing.</exception>
  338. <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
  339. </member>
  340. <member name="M:System.IO.Compression.ZipArchive.CreateEntry(System.String,System.IO.Compression.CompressionLevel)">
  341. <summary>指定したエントリ名と圧縮レベルを持つ空のエントリを zip アーカイブに作成します。</summary>
  342. <returns>zip アーカイブ内の空のエントリ。</returns>
  343. <param name="entryName">作成されるエントリの名前を指定する、アーカイブのルートを基準とするパス。</param>
  344. <param name="compressionLevel">エントリの作成時に速度または圧縮の有効性を強調するかどうかを示す列挙値の 1 つ。</param>
  345. <exception cref="T:System.ArgumentException">
  346. <paramref name="entryName" /> is <see cref="F:System.String.Empty" />.</exception>
  347. <exception cref="T:System.ArgumentNullException">
  348. <paramref name="entryName" /> is null.</exception>
  349. <exception cref="T:System.NotSupportedException">The zip archive does not support writing.</exception>
  350. <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
  351. </member>
  352. <member name="M:System.IO.Compression.ZipArchive.Dispose">
  353. <summary>
  354. <see cref="T:System.IO.Compression.ZipArchive" /> クラスの現在のインスタンスによって使用されているリソースを解放します。</summary>
  355. </member>
  356. <member name="M:System.IO.Compression.ZipArchive.Dispose(System.Boolean)">
  357. <summary>
  358. <see cref="T:System.IO.Compression.ZipArchive" /> クラスの現在のインスタンスによって使用されるアンマネージ リソースを解放するために、<see cref="M:System.IO.Compression.ZipArchive.Dispose" /> メソッドと <see cref="M:System.Object.Finalize" /> メソッドによって呼び出されます。オプションで、アーカイブの書き込みを終了し、マネージ リソースを解放できます。</summary>
  359. <param name="disposing">アーカイブの書き込みを終了し、アンマネージ リソースとマネージ リソースを解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
  360. </member>
  361. <member name="P:System.IO.Compression.ZipArchive.Entries">
  362. <summary>現在 zip アーカイブ内にあるエントリのコレクションを取得します。</summary>
  363. <returns>現在 zip アーカイブ内にあるエントリのコレクション。</returns>
  364. <exception cref="T:System.NotSupportedException">The zip archive does not support reading.</exception>
  365. <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
  366. <exception cref="T:System.IO.InvalidDataException">The zip archive is corrupt, and its entries cannot be retrieved.</exception>
  367. </member>
  368. <member name="M:System.IO.Compression.ZipArchive.GetEntry(System.String)">
  369. <summary>zip アーカイブ内の指定したエントリのラッパーを取得します。</summary>
  370. <returns>アーカイブ内の指定されたエントリのラッパー。エントリがアーカイブに存在しない場合は null。</returns>
  371. <param name="entryName">取得するエントリを識別する、アーカイブのルートを基準とするパス。</param>
  372. <exception cref="T:System.ArgumentException">
  373. <paramref name="entryName" /> is <see cref="F:System.String.Empty" />.</exception>
  374. <exception cref="T:System.ArgumentNullException">
  375. <paramref name="entryName" /> is null.</exception>
  376. <exception cref="T:System.NotSupportedException">The zip archive does not support reading.</exception>
  377. <exception cref="T:System.ObjectDisposedException">The zip archive has been disposed.</exception>
  378. <exception cref="T:System.IO.InvalidDataException">The zip archive is corrupt, and its entries cannot be retrieved.</exception>
  379. </member>
  380. <member name="P:System.IO.Compression.ZipArchive.Mode">
  381. <summary>zip アーカイブがエントリで実行できる操作の種類を示す値を取得します。</summary>
  382. <returns>zip のアーカイブがエントリ上で実行できる操作の種類 (読み込み、作成、または更新) を示す列挙値の 1 つ。</returns>
  383. </member>
  384. <member name="T:System.IO.Compression.ZipArchiveEntry">
  385. <summary>zip アーカイブ内の圧縮ファイルを表します。</summary>
  386. </member>
  387. <member name="P:System.IO.Compression.ZipArchiveEntry.Archive">
  388. <summary>エントリが属する zip アーカイブを取得します。</summary>
  389. <returns>エントリが属している zip アーカイブ、または、エントリが削除されている場合は null。</returns>
  390. </member>
  391. <member name="P:System.IO.Compression.ZipArchiveEntry.CompressedLength">
  392. <summary>zip アーカイブ内のエントリの圧縮サイズを取得します。</summary>
  393. <returns>zip アーカイブ内のエントリの圧縮サイズ。</returns>
  394. <exception cref="T:System.InvalidOperationException">The value of the property is not available because the entry has been modified.</exception>
  395. </member>
  396. <member name="M:System.IO.Compression.ZipArchiveEntry.Delete">
  397. <summary>zip アーカイブからエントリを削除します。</summary>
  398. <exception cref="T:System.IO.IOException">The entry is already open for reading or writing.</exception>
  399. <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>
  400. <exception cref="T:System.ObjectDisposedException">The zip archive for this entry has been disposed.</exception>
  401. </member>
  402. <member name="P:System.IO.Compression.ZipArchiveEntry.FullName">
  403. <summary>zip アーカイブ内のエントリの相対パスを取得します。</summary>
  404. <returns>zip アーカイブ内のエントリの相対パス。</returns>
  405. </member>
  406. <member name="P:System.IO.Compression.ZipArchiveEntry.LastWriteTime">
  407. <summary>zip アーカイブのエントリが最後に変更されたときを取得または設定します。</summary>
  408. <returns>zip アーカイブ内のエントリが最後に変更された時間。</returns>
  409. <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>
  410. <exception cref="T:System.IO.IOException">The archive mode is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Create" />.- or -The archive mode is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Update" /> and the entry has been opened.</exception>
  411. <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>
  412. </member>
  413. <member name="P:System.IO.Compression.ZipArchiveEntry.Length">
  414. <summary>zip アーカイブ内のエントリの非圧縮サイズを取得します。</summary>
  415. <returns>zip アーカイブ内のエントリの非圧縮サイズ。</returns>
  416. <exception cref="T:System.InvalidOperationException">The value of the property is not available because the entry has been modified.</exception>
  417. </member>
  418. <member name="P:System.IO.Compression.ZipArchiveEntry.Name">
  419. <summary>zip アーカイブ内のエントリのファイル名を取得します。</summary>
  420. <returns>zip アーカイブ内のエントリのファイル名。</returns>
  421. </member>
  422. <member name="M:System.IO.Compression.ZipArchiveEntry.Open">
  423. <summary>zip のアーカイブからエントリを開きます。</summary>
  424. <returns>エントリの内容を表すストリーム。</returns>
  425. <exception cref="T:System.IO.IOException">The entry is already currently open for writing.-or-The entry has been deleted from the archive.-or-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>
  426. <exception cref="T:System.IO.InvalidDataException">The entry is either missing from the archive or is corrupt and cannot be read. -or-The entry has been compressed by using a compression method that is not supported.</exception>
  427. <exception cref="T:System.ObjectDisposedException">The zip archive for this entry has been disposed.</exception>
  428. </member>
  429. <member name="M:System.IO.Compression.ZipArchiveEntry.ToString">
  430. <summary>zip アーカイブ内のエントリの相対パスを取得します。</summary>
  431. <returns>エントリの相対パス。これは <see cref="P:System.IO.Compression.ZipArchiveEntry.FullName" /> プロパティに格納されている値です。</returns>
  432. </member>
  433. <member name="T:System.IO.Compression.ZipArchiveMode">
  434. <summary>zip のアーカイブ エントリとの対話のための値を指定します。</summary>
  435. </member>
  436. <member name="F:System.IO.Compression.ZipArchiveMode.Create">
  437. <summary>新しいアーカイブ エントリの作成に限り許可されます。</summary>
  438. </member>
  439. <member name="F:System.IO.Compression.ZipArchiveMode.Read">
  440. <summary>新しいアーカイブ エントリの読み込みに限り許可されます。</summary>
  441. </member>
  442. <member name="F:System.IO.Compression.ZipArchiveMode.Update">
  443. <summary>読み取りと書き込みの両方の操作がアーカイブ エントリで許可されます。</summary>
  444. </member>
  445. </members>
  446. </doc>