[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / system.io / 4.3.0 / ref / netcore50 / ja / System.IO.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.IO</name>
5   </assembly>
6   <members>
7     <member name="T:System.IO.BinaryReader">
8       <summary>プリミティブ データ型を特定のエンコーディングのバイナリ値として読み取ります。</summary>
9       <filterpriority>2</filterpriority>
10     </member>
11     <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream)">
12       <summary>指定したストリームに基づき、UTF-8 エンコーディングを使用する <see cref="T:System.IO.BinaryReader" /> クラスの新しいインスタンスを初期化します。</summary>
13       <param name="input">入力ストリーム。</param>
14       <exception cref="T:System.ArgumentException">ストリームが読み取りをサポートしていないか、null であるか、既に閉じています。</exception>
15     </member>
16     <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding)">
17       <summary>指定したストリームと文字エンコーディングに基づいて、<see cref="T:System.IO.BinaryReader" /> クラスの新しいインスタンスを初期化します。</summary>
18       <param name="input">入力ストリーム。</param>
19       <param name="encoding">使用する文字エンコーディング。</param>
20       <exception cref="T:System.ArgumentException">ストリームが読み取りをサポートしていないか、null であるか、既に閉じています。</exception>
21       <exception cref="T:System.ArgumentNullException">
22         <paramref name="encoding" /> は null です。</exception>
23     </member>
24     <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
25       <summary>指定したストリームと文字エンコーディングに基づいて <see cref="T:System.IO.BinaryReader" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
26       <param name="input">入力ストリーム。</param>
27       <param name="encoding">使用する文字エンコーディング。</param>
28       <param name="leaveOpen">
29         <see cref="T:System.IO.BinaryReader" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
30       <exception cref="T:System.ArgumentException">ストリームが読み取りをサポートしていないか、null であるか、既に閉じています。</exception>
31       <exception cref="T:System.ArgumentNullException">
32         <paramref name="encoding" /> または <paramref name="input" /> が null です。</exception>
33     </member>
34     <member name="P:System.IO.BinaryReader.BaseStream">
35       <summary>
36         <see cref="T:System.IO.BinaryReader" /> の基になるストリームへのアクセスを公開します。</summary>
37       <returns>BinaryReader に関連付けられた、基になるストリーム。</returns>
38       <filterpriority>2</filterpriority>
39     </member>
40     <member name="M:System.IO.BinaryReader.Dispose">
41       <summary>
42         <see cref="T:System.IO.BinaryReader" /> クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。</summary>
43     </member>
44     <member name="M:System.IO.BinaryReader.Dispose(System.Boolean)">
45       <summary>
46         <see cref="T:System.IO.BinaryReader" /> クラスによって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。</summary>
47       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
48     </member>
49     <member name="M:System.IO.BinaryReader.FillBuffer(System.Int32)">
50       <summary>指定したバイト数分だけストリームから読み取ったバイトを内部バッファーに格納します。</summary>
51       <param name="numBytes">読み取るバイト数。</param>
52       <exception cref="T:System.IO.EndOfStreamException">
53         <paramref name="numBytes" /> 分のバイトを読み取る前にストリームの末尾に到達しました。</exception>
54       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
55       <exception cref="T:System.ArgumentOutOfRangeException">要求された <paramref name="numBytes" /> が、内部バッファー サイズより大きくなっています。</exception>
56     </member>
57     <member name="M:System.IO.BinaryReader.PeekChar">
58       <summary>読み取り可能な次の文字を返します。バイトの位置または文字の位置は変化しません。</summary>
59       <returns>使用できる次の文字。使用できる文字がないか、ストリームがシークをサポートしていない場合は -1。</returns>
60       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
61       <exception cref="T:System.ArgumentException">現在の文字は、ストリーム用に選択された <see cref="T:System.Text.Encoding" /> を使用して内部文字バッファーにデコードできません。</exception>
62       <filterpriority>2</filterpriority>
63     </member>
64     <member name="M:System.IO.BinaryReader.Read">
65       <summary>基になるストリームから文字を読み取り、使用した Encoding とストリームから読み取った特定の文字に従ってストリームの現在位置を進めます。</summary>
66       <returns>入力ストリームの次の文字。現在読み取り可能な文字がない場合は -1。</returns>
67       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
68       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
69       <filterpriority>2</filterpriority>
70     </member>
71     <member name="M:System.IO.BinaryReader.Read(System.Byte[],System.Int32,System.Int32)">
72       <summary>バイト配列内の指定された位置を開始点として、ストリームから指定されたバイト数を読み取ります。</summary>
73       <returns>
74         <paramref name="buffer" /> に読み取るバイト数。要求したバイト数分のバイトを読み取れなかった場合、この値は要求したバイト数より小さくなります。ストリームの末尾に到達した場合は 0 になることがあります。</returns>
75       <param name="buffer">データを読み取るバッファー。</param>
76       <param name="index">バッファー内の、バッファーへの読み取り開始点。</param>
77       <param name="count">読み取るバイト数。</param>
78       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。またはデコードされた文字の数が <paramref name="count" /> を超えています。これは、Unicode デコーダーがフォールバック文字またはサロゲート ペアを返す場合に発生することがあります。</exception>
79       <exception cref="T:System.ArgumentNullException">
80         <paramref name="buffer" /> は null です。</exception>
81       <exception cref="T:System.ArgumentOutOfRangeException">
82         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
83       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
84       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
85       <filterpriority>2</filterpriority>
86     </member>
87     <member name="M:System.IO.BinaryReader.Read(System.Char[],System.Int32,System.Int32)">
88       <summary>文字配列内の指定された位置を開始点として、ストリームから指定された文字数を読み取ります。</summary>
89       <returns>バッファーに読み取られた合計文字数。要求した文字数分の文字を読み取れなかった場合、この値は要求した文字数より小さくなります。また、ストリームの末尾に到達した場合は 0 になることがあります。</returns>
90       <param name="buffer">データを読み取るバッファー。</param>
91       <param name="index">バッファー内の、バッファーへの読み取り開始点。</param>
92       <param name="count">読み取る文字の数。</param>
93       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。またはデコードされた文字の数が <paramref name="count" /> を超えています。これは、Unicode デコーダーがフォールバック文字またはサロゲート ペアを返す場合に発生することがあります。</exception>
94       <exception cref="T:System.ArgumentNullException">
95         <paramref name="buffer" /> は null です。</exception>
96       <exception cref="T:System.ArgumentOutOfRangeException">
97         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
98       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
99       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
100       <filterpriority>2</filterpriority>
101     </member>
102     <member name="M:System.IO.BinaryReader.Read7BitEncodedInt">
103       <summary>32 ビット整数を圧縮形式で読み取ります。</summary>
104       <returns>圧縮形式の 32 ビット整数。</returns>
105       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
106       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
107       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
108       <exception cref="T:System.FormatException">ストリームが破損しています。</exception>
109     </member>
110     <member name="M:System.IO.BinaryReader.ReadBoolean">
111       <summary>現在のストリームから Boolean 値を読み取り、ストリームの現在位置を 1 バイトだけ進めます。</summary>
112       <returns>読み取ったバイトが 0 以外の場合は true。0 の場合は false。</returns>
113       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
114       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
115       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
116       <filterpriority>2</filterpriority>
117     </member>
118     <member name="M:System.IO.BinaryReader.ReadByte">
119       <summary>現在のストリームから次のバイトを読み取り、ストリームの現在位置を 1 バイトだけ進めます。</summary>
120       <returns>現在のストリームから読み取った次のバイト。</returns>
121       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
122       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
123       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
124       <filterpriority>2</filterpriority>
125     </member>
126     <member name="M:System.IO.BinaryReader.ReadBytes(System.Int32)">
127       <summary>現在のストリームから指定されたバイト数をバイト配列に読み取り、そのバイト数だけストリーム内の現在位置を進めます。</summary>
128       <returns>基になるストリームから読み取ったデータが格納されているバイト配列。ストリームの末尾に到達した場合は要求したバイト数より小さくなることがあります。</returns>
129       <param name="count">読み取るバイト数。この値は 0 以上の数字の必要があり、それ以外の場合は例外が発生します。</param>
130       <exception cref="T:System.ArgumentException">デコードされた文字の数が <paramref name="count" /> を超えています。これは、Unicode デコーダーがフォールバック文字またはサロゲート ペアを返す場合に発生することがあります。</exception>
131       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
132       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
133       <exception cref="T:System.ArgumentOutOfRangeException">
134         <paramref name="count" /> が負の値です。</exception>
135       <filterpriority>2</filterpriority>
136     </member>
137     <member name="M:System.IO.BinaryReader.ReadChar">
138       <summary>現在のストリームの次の文字を読み取り、使用した Encoding とストリームから読み取った特定の文字に従ってストリームの現在位置を進めます。</summary>
139       <returns>現在のストリームから読み取った文字。</returns>
140       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
141       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
142       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
143       <exception cref="T:System.ArgumentException">サロゲート文字が読み取られました。</exception>
144       <filterpriority>2</filterpriority>
145     </member>
146     <member name="M:System.IO.BinaryReader.ReadChars(System.Int32)">
147       <summary>現在のストリームから指定された文字数を読み取り、そのデータを文字配列として返します。また、使用した Encoding とストリームから読み取った特定の文字に従って現在位置を進めます。</summary>
148       <returns>基になるストリームから読み取ったデータが格納されている文字配列。ストリームの末尾に到達した場合は、要求された文字数より小さくなることがあります。</returns>
149       <param name="count">読み取る文字の数。</param>
150       <exception cref="T:System.ArgumentException">デコードされた文字の数が <paramref name="count" /> を超えています。これは、Unicode デコーダーがフォールバック文字またはサロゲート ペアを返す場合に発生することがあります。</exception>
151       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
152       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
153       <exception cref="T:System.ArgumentOutOfRangeException">
154         <paramref name="count" /> が負の値です。</exception>
155       <filterpriority>2</filterpriority>
156     </member>
157     <member name="M:System.IO.BinaryReader.ReadDecimal">
158       <summary>現在のストリームから 10 進数値を読み取り、ストリームの現在位置を 16 バイトだけ進めます。</summary>
159       <returns>現在のストリームから読み取った 10 進数値。</returns>
160       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
161       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
162       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
163       <filterpriority>2</filterpriority>
164     </member>
165     <member name="M:System.IO.BinaryReader.ReadDouble">
166       <summary>現在のストリームから 8 バイト浮動小数点値を読み取り、ストリームの現在位置を 8 バイトだけ進めます。</summary>
167       <returns>現在のストリームから読み取った 8 バイト浮動小数点値。</returns>
168       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
169       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
170       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
171       <filterpriority>2</filterpriority>
172     </member>
173     <member name="M:System.IO.BinaryReader.ReadInt16">
174       <summary>現在のストリームから 2 バイト符号付き整数を読み取り、ストリームの現在位置を 2 バイトだけ進めます。</summary>
175       <returns>現在のストリームから読み取った 2 バイト符号付き整数。</returns>
176       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
177       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
178       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
179       <filterpriority>2</filterpriority>
180     </member>
181     <member name="M:System.IO.BinaryReader.ReadInt32">
182       <summary>現在のストリームから 4 バイト符号付き整数を読み取り、ストリームの現在位置を 4 バイトだけ進めます。</summary>
183       <returns>現在のストリームから読み取った 4 バイト符号付き整数。</returns>
184       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
185       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
186       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
187       <filterpriority>2</filterpriority>
188     </member>
189     <member name="M:System.IO.BinaryReader.ReadInt64">
190       <summary>現在のストリームから 8 バイト符号付き整数を読み取り、ストリームの現在位置を 8 バイトだけ進めます。</summary>
191       <returns>現在のストリームから読み取った 8 バイト符号付き整数。</returns>
192       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
193       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
194       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
195       <filterpriority>2</filterpriority>
196     </member>
197     <member name="M:System.IO.BinaryReader.ReadSByte">
198       <summary>現在のストリームから符号付きバイトを読み取り、ストリームの現在位置を 1 バイトだけ進めます。</summary>
199       <returns>現在のストリームから読み取った符号付きバイト。</returns>
200       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
201       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
202       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
203       <filterpriority>2</filterpriority>
204     </member>
205     <member name="M:System.IO.BinaryReader.ReadSingle">
206       <summary>現在のストリームから 4 バイト浮動小数点値を読み取り、ストリームの現在位置を 4 バイトだけ進めます。</summary>
207       <returns>現在のストリームから読み取った 4 バイト浮動小数点値。</returns>
208       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
209       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
210       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
211       <filterpriority>2</filterpriority>
212     </member>
213     <member name="M:System.IO.BinaryReader.ReadString">
214       <summary>現在のストリームから 1 つの文字列を読み取ります。ストリームの文字列は、7 ビットごとにエンコードされた文字列の長さが先頭に付加されています。</summary>
215       <returns>読み取った文字列。</returns>
216       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
217       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
218       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
219       <filterpriority>2</filterpriority>
220     </member>
221     <member name="M:System.IO.BinaryReader.ReadUInt16">
222       <summary>リトル エンディアン エンコーディングを使用して現在のストリームから 2 バイト符号なし整数を読み取り、ストリームの位置を 2 バイトだけ進めます。</summary>
223       <returns>現在のストリームから読み取った 2 バイト符号なし整数。</returns>
224       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
225       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
226       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
227       <filterpriority>2</filterpriority>
228     </member>
229     <member name="M:System.IO.BinaryReader.ReadUInt32">
230       <summary>現在のストリームから 4 バイト符号なし整数を読み取り、ストリームの位置を 4 バイトだけ進めます。</summary>
231       <returns>現在のストリームから読み取った 4 バイト符号なし整数。</returns>
232       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
233       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
234       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
235       <filterpriority>2</filterpriority>
236     </member>
237     <member name="M:System.IO.BinaryReader.ReadUInt64">
238       <summary>現在のストリームから 8 バイト符号なし整数を読み取り、ストリームの位置を 8 バイトだけ進めます。</summary>
239       <returns>現在のストリームから読み取った 8 バイト符号なし整数。</returns>
240       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
241       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
242       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
243       <filterpriority>2</filterpriority>
244     </member>
245     <member name="T:System.IO.BinaryWriter">
246       <summary>プリミティブ型をバイナリでストリームに書き込みます。特定のエンコーディングの文字列の書き込みをサポートします。</summary>
247       <filterpriority>2</filterpriority>
248     </member>
249     <member name="M:System.IO.BinaryWriter.#ctor">
250       <summary>ストリームへの書き込みを行う <see cref="T:System.IO.BinaryWriter" /> クラスの新しいインスタンスを初期化します。</summary>
251     </member>
252     <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream)">
253       <summary>指定したストリームに基づき、UTF-8 エンコーディングを使用する <see cref="T:System.IO.BinaryWriter" /> クラスの新しいインスタンスを初期化します。</summary>
254       <param name="output">出力ストリーム。</param>
255       <exception cref="T:System.ArgumentException">ストリームが書き込みをサポートしていないか、既に閉じています。</exception>
256       <exception cref="T:System.ArgumentNullException">
257         <paramref name="output" /> は null なので、</exception>
258     </member>
259     <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
260       <summary>指定したストリームと文字エンコーディングに基づいて、<see cref="T:System.IO.BinaryWriter" /> クラスの新しいインスタンスを初期化します。</summary>
261       <param name="output">出力ストリーム。</param>
262       <param name="encoding">使用する文字エンコーディング。</param>
263       <exception cref="T:System.ArgumentException">ストリームが書き込みをサポートしていないか、既に閉じています。</exception>
264       <exception cref="T:System.ArgumentNullException">
265         <paramref name="output" /> または <paramref name="encoding" /> が null です。</exception>
266     </member>
267     <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
268       <summary>指定したストリームと文字エンコーディングに基づいて <see cref="T:System.IO.BinaryWriter" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
269       <param name="output">出力ストリーム。</param>
270       <param name="encoding">使用する文字エンコーディング。</param>
271       <param name="leaveOpen">
272         <see cref="T:System.IO.BinaryWriter" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
273       <exception cref="T:System.ArgumentException">ストリームが書き込みをサポートしていないか、既に閉じています。</exception>
274       <exception cref="T:System.ArgumentNullException">
275         <paramref name="output" /> または <paramref name="encoding" /> が null です。</exception>
276     </member>
277     <member name="P:System.IO.BinaryWriter.BaseStream">
278       <summary>
279         <see cref="T:System.IO.BinaryWriter" /> の基になるストリームを取得します。</summary>
280       <returns>BinaryWriter に関連付けられた、基になるストリーム。</returns>
281       <filterpriority>1</filterpriority>
282     </member>
283     <member name="M:System.IO.BinaryWriter.Dispose">
284       <summary>
285         <see cref="T:System.IO.BinaryWriter" /> クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。</summary>
286     </member>
287     <member name="M:System.IO.BinaryWriter.Dispose(System.Boolean)">
288       <summary>
289         <see cref="T:System.IO.BinaryWriter" /> によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。</summary>
290       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
291     </member>
292     <member name="M:System.IO.BinaryWriter.Flush">
293       <summary>現在のライターのすべてのバッファーをクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
294       <filterpriority>1</filterpriority>
295     </member>
296     <member name="F:System.IO.BinaryWriter.Null">
297       <summary>バッキング ストアを持たない <see cref="T:System.IO.BinaryWriter" /> を指定します。</summary>
298       <filterpriority>1</filterpriority>
299     </member>
300     <member name="F:System.IO.BinaryWriter.OutStream">
301       <summary>基になるストリームを保持します。</summary>
302     </member>
303     <member name="M:System.IO.BinaryWriter.Seek(System.Int32,System.IO.SeekOrigin)">
304       <summary>現在のストリーム内の位置を設定します。</summary>
305       <returns>現在のストリームの位置。</returns>
306       <param name="offset">
307         <paramref name="origin" /> からのバイト オフセット。</param>
308       <param name="origin">新しい位置を取得するための参照ポイントを示す <see cref="T:System.IO.SeekOrigin" /> フィールド。</param>
309       <exception cref="T:System.IO.IOException">ファイル ポインターが無効な位置に移動しました。</exception>
310       <exception cref="T:System.ArgumentException">
311         <see cref="T:System.IO.SeekOrigin" /> 値が無効です。</exception>
312       <filterpriority>1</filterpriority>
313     </member>
314     <member name="M:System.IO.BinaryWriter.Write(System.Boolean)">
315       <summary>現在のストリームに 1 バイト Boolean 値を書き込みます。値 0 は false を表し、値 1 は true を表します。</summary>
316       <param name="value">書き込む Boolean 値 (0 または 1)。</param>
317       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
318       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
319       <filterpriority>1</filterpriority>
320     </member>
321     <member name="M:System.IO.BinaryWriter.Write(System.Byte)">
322       <summary>現在のストリームに符号なしバイトを書き込み、ストリームの位置を 1 バイトだけ進めます。</summary>
323       <param name="value">書き込む符号なしバイト。</param>
324       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
325       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
326       <filterpriority>1</filterpriority>
327     </member>
328     <member name="M:System.IO.BinaryWriter.Write(System.Byte[])">
329       <summary>基になるストリームにバイト配列を書き込みます。</summary>
330       <param name="buffer">書き込むデータが格納されているバイト配列。</param>
331       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
332       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
333       <exception cref="T:System.ArgumentNullException">
334         <paramref name="buffer" /> は null なので、</exception>
335       <filterpriority>1</filterpriority>
336     </member>
337     <member name="M:System.IO.BinaryWriter.Write(System.Byte[],System.Int32,System.Int32)">
338       <summary>現在のストリームにバイト配列の特定の領域を書き込みます。</summary>
339       <param name="buffer">書き込むデータが格納されているバイト配列。</param>
340       <param name="index">
341         <paramref name="buffer" /> 内の書き込み開始点。</param>
342       <param name="count">書き込むバイト数。</param>
343       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
344       <exception cref="T:System.ArgumentNullException">
345         <paramref name="buffer" /> は null なので、</exception>
346       <exception cref="T:System.ArgumentOutOfRangeException">
347         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
348       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
349       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
350       <filterpriority>1</filterpriority>
351     </member>
352     <member name="M:System.IO.BinaryWriter.Write(System.Char)">
353       <summary>現在のストリームに Unicode 文字を書き込み、使用した Encoding とストリームに書き込んだ特定の文字に従ってストリームの現在位置を進めます。</summary>
354       <param name="ch">書き込む非サロゲート Unicode 文字。</param>
355       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
356       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
357       <exception cref="T:System.ArgumentException">
358         <paramref name="ch" /> は、単一のサロゲート文字です。</exception>
359       <filterpriority>1</filterpriority>
360     </member>
361     <member name="M:System.IO.BinaryWriter.Write(System.Char[])">
362       <summary>現在のストリームに文字配列を書き込み、使用した Encoding とストリームに書き込んだ特定の文字に従ってストリームの現在位置を進めます。</summary>
363       <param name="chars">書き込むデータを格納する文字配列。</param>
364       <exception cref="T:System.ArgumentNullException">
365         <paramref name="chars" /> は null なので、</exception>
366       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
367       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
368       <filterpriority>1</filterpriority>
369     </member>
370     <member name="M:System.IO.BinaryWriter.Write(System.Char[],System.Int32,System.Int32)">
371       <summary>現在のストリームに文字配列の特定の領域を書き込み、使用した Encoding とストリームに書き込んだ特定の文字に従ってストリームの現在位置を進めます。</summary>
372       <param name="chars">書き込むデータを格納する文字配列。</param>
373       <param name="index">
374         <paramref name="chars" /> 内の書き込み開始点。</param>
375       <param name="count">書き込む文字数。</param>
376       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
377       <exception cref="T:System.ArgumentNullException">
378         <paramref name="chars" /> は null なので、</exception>
379       <exception cref="T:System.ArgumentOutOfRangeException">
380         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
381       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
382       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
383       <filterpriority>1</filterpriority>
384     </member>
385     <member name="M:System.IO.BinaryWriter.Write(System.Decimal)">
386       <summary>現在のストリームに 10 進数値を書き込み、ストリームの位置を 16 バイトだけ進めます。</summary>
387       <param name="value">書き込む 10 進値。</param>
388       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
389       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
390       <filterpriority>1</filterpriority>
391     </member>
392     <member name="M:System.IO.BinaryWriter.Write(System.Double)">
393       <summary>現在のストリームに 8 バイト浮動小数点値を書き込み、ストリームの位置を 8 バイトだけ進めます。</summary>
394       <param name="value">書き込む 8 バイト浮動小数点値。</param>
395       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
396       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
397       <filterpriority>1</filterpriority>
398     </member>
399     <member name="M:System.IO.BinaryWriter.Write(System.Int16)">
400       <summary>現在のストリームに 2 バイト符号付き整数を書き込み、ストリームの位置を 2 バイトだけ進めます。</summary>
401       <param name="value">書き込む 2 バイト符号付き整数。</param>
402       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
403       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
404       <filterpriority>1</filterpriority>
405     </member>
406     <member name="M:System.IO.BinaryWriter.Write(System.Int32)">
407       <summary>現在のストリームに 4 バイト符号付き整数を書き込み、ストリームの位置を 4 バイトだけ進めます。</summary>
408       <param name="value">書き込む 4 バイト符号付き整数。</param>
409       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
410       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
411       <filterpriority>1</filterpriority>
412     </member>
413     <member name="M:System.IO.BinaryWriter.Write(System.Int64)">
414       <summary>現在のストリームに 8 バイト符号付き整数を書き込み、ストリームの位置を 8 バイトだけ進めます。</summary>
415       <param name="value">書き込む 8 バイト符号付き整数。</param>
416       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
417       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
418       <filterpriority>1</filterpriority>
419     </member>
420     <member name="M:System.IO.BinaryWriter.Write(System.SByte)">
421       <summary>現在のストリームに符号付きバイトを書き込み、ストリームの位置を 1 バイトだけ進めます。</summary>
422       <param name="value">書き込む符号付きバイト。</param>
423       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
424       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
425       <filterpriority>1</filterpriority>
426     </member>
427     <member name="M:System.IO.BinaryWriter.Write(System.Single)">
428       <summary>現在のストリームに 4 バイト浮動小数点値を書き込み、ストリームの位置を 4 バイトだけ進めます。</summary>
429       <param name="value">書き込む 4 バイト浮動小数点値。</param>
430       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
431       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
432       <filterpriority>1</filterpriority>
433     </member>
434     <member name="M:System.IO.BinaryWriter.Write(System.String)">
435       <summary>文字長プリフィックスを持つ文字列を、<see cref="T:System.IO.BinaryWriter" /> の現在のエンコーディングでこのストリームに書き込み、使用したエンコーディングとストリームに書き込んだ特定の文字に従ってストリームの現在位置を進めます。</summary>
436       <param name="value">書き込む値。</param>
437       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
438       <exception cref="T:System.ArgumentNullException">
439         <paramref name="value" /> は null なので、</exception>
440       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
441       <filterpriority>1</filterpriority>
442     </member>
443     <member name="M:System.IO.BinaryWriter.Write(System.UInt16)">
444       <summary>現在のストリームに 2 バイト符号なし整数を書き込み、ストリームの位置を 2 バイトだけ進めます。</summary>
445       <param name="value">書き込む 2 バイト符号なし整数。</param>
446       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
447       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
448       <filterpriority>1</filterpriority>
449     </member>
450     <member name="M:System.IO.BinaryWriter.Write(System.UInt32)">
451       <summary>現在のストリームに 4 バイト符号なし整数を書き込み、ストリームの位置を 4 バイトだけ進めます。</summary>
452       <param name="value">書き込む 4 バイト符号なし整数。</param>
453       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
454       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
455       <filterpriority>1</filterpriority>
456     </member>
457     <member name="M:System.IO.BinaryWriter.Write(System.UInt64)">
458       <summary>現在のストリームに 8 バイト符号なし整数を書き込み、ストリームの位置を 8 バイトだけ進めます。</summary>
459       <param name="value">書き込む 8 バイト符号なし整数。</param>
460       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
461       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
462       <filterpriority>1</filterpriority>
463     </member>
464     <member name="M:System.IO.BinaryWriter.Write7BitEncodedInt(System.Int32)">
465       <summary>32 ビット整数を圧縮形式で書き込みます。</summary>
466       <param name="value">書き込む 32 ビット整数。</param>
467       <exception cref="T:System.IO.EndOfStreamException">ストリームの末尾に到達しました。</exception>
468       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
469       <exception cref="T:System.IO.IOException">ストリームが閉じられました。</exception>
470     </member>
471     <member name="T:System.IO.EndOfStreamException">
472       <summary>ストリームの末尾を越えて読み込もうとしたときにスローされる例外。</summary>
473       <filterpriority>2</filterpriority>
474     </member>
475     <member name="M:System.IO.EndOfStreamException.#ctor">
476       <summary>メッセージ文字列がシステムによって提供されたメッセージに設定され、HRESULT が COR_E_ENDOFSTREAM に設定された <see cref="T:System.IO.EndOfStreamException" /> クラスの新しいインスタンスを初期化します。</summary>
477     </member>
478     <member name="M:System.IO.EndOfStreamException.#ctor(System.String)">
479       <summary>メッセージ文字列を <paramref name="message" /> に設定し、HRESULT を COR_E_ENDOFSTREAM に設定して、<see cref="T:System.IO.EndOfStreamException" /> クラスの新しいインスタンスを初期化します。</summary>
480       <param name="message">エラーを説明する文字列。<paramref name="message" /> の内容は、ユーザーが理解できる内容にします。このコンストラクターの呼び出し元では、この文字列が現在のシステムのカルチャに合わせてローカライズ済みであることを確認しておく必要があります。</param>
481     </member>
482     <member name="M:System.IO.EndOfStreamException.#ctor(System.String,System.Exception)">
483       <summary>指定したエラー メッセージと、この例外の原因である内部例外への参照を使用して、<see cref="T:System.IO.EndOfStreamException" /> クラスの新しいインスタンスを初期化します。</summary>
484       <param name="message">エラーを説明する文字列。<paramref name="message" /> の内容は、ユーザーが理解できる内容にします。このコンストラクターの呼び出し元では、この文字列が現在のシステムのカルチャに合わせてローカライズ済みであることを確認しておく必要があります。</param>
485       <param name="innerException">現在の例外の原因である例外。<paramref name="innerException" /> パラメーターが null でない場合は、内部例外を処理する catch ブロックで現在の例外が発生します。</param>
486     </member>
487     <member name="T:System.IO.InvalidDataException">
488       <summary>データ ストリームが無効な形式である場合にスローされる例外。</summary>
489     </member>
490     <member name="M:System.IO.InvalidDataException.#ctor">
491       <summary>
492         <see cref="T:System.IO.InvalidDataException" /> クラスの新しいインスタンスを初期化します。</summary>
493     </member>
494     <member name="M:System.IO.InvalidDataException.#ctor(System.String)">
495       <summary>指定したエラー メッセージを使用して、<see cref="T:System.IO.InvalidDataException" /> クラスの新しいインスタンスを初期化します。</summary>
496       <param name="message">例外の原因を説明するエラー メッセージ。</param>
497     </member>
498     <member name="M:System.IO.InvalidDataException.#ctor(System.String,System.Exception)">
499       <summary>この例外の原因である内部例外への参照を指定して、<see cref="T:System.IO.InvalidDataException" /> クラスの新しいインスタンスを初期化します。</summary>
500       <param name="message">例外の原因を説明するエラー メッセージ。</param>
501       <param name="innerException">現在の例外の原因である例外。<paramref name="innerException" /> パラメーターが null でない場合は、内部例外を処理する catch ブロックで現在の例外が発生します。</param>
502     </member>
503     <member name="T:System.IO.MemoryStream">
504       <summary>バッキング ストアとしてメモリを使用するストリームを作成します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、 Reference Sourceです。</summary>
505       <filterpriority>2</filterpriority>
506     </member>
507     <member name="M:System.IO.MemoryStream.#ctor">
508       <summary>
509         <see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを、0 に初期化される拡張可能な容量を使用して 初期化します。</summary>
510     </member>
511     <member name="M:System.IO.MemoryStream.#ctor(System.Byte[])">
512       <summary>指定したバイト配列に基づいて、サイズを変更できない <see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを初期化します。</summary>
513       <param name="buffer">現在のストリームを作成する符号なしバイトの配列。</param>
514       <exception cref="T:System.ArgumentNullException">
515         <paramref name="buffer" /> は null です。</exception>
516     </member>
517     <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Boolean)">
518       <summary>
519         <see cref="P:System.IO.MemoryStream.CanWrite" /> プロパティを指定どおりに設定し、指定したバイト配列に基づいて、サイズを変更できない <see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを初期化します。</summary>
520       <param name="buffer">このストリームの作成元の符号なしバイトの配列。</param>
521       <param name="writable">ストリームが書き込みをサポートするかどうかを決定する <see cref="P:System.IO.MemoryStream.CanWrite" /> プロパティの設定。</param>
522       <exception cref="T:System.ArgumentNullException">
523         <paramref name="buffer" /> は null です。</exception>
524     </member>
525     <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32)">
526       <summary>バイト配列の指定した領域 (インデックス) に基づいて、サイズを変更できない <see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを初期化します。</summary>
527       <param name="buffer">このストリームの作成元の符号なしバイトの配列。</param>
528       <param name="index">ストリームが開始する位置の <paramref name="buffer" /> のインデックス。</param>
529       <param name="count">バイト単位のストリーム長。</param>
530       <exception cref="T:System.ArgumentNullException">
531         <paramref name="buffer" /> は null です。</exception>
532       <exception cref="T:System.ArgumentOutOfRangeException">
533         <paramref name="index" /> または <paramref name="count" /> が 0 未満です。</exception>
534       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
535     </member>
536     <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)">
537       <summary>
538         <see cref="P:System.IO.MemoryStream.CanWrite" /> プロパティを指定どおりに設定し、バイト配列の指定した領域に基づいて、サイズを変更できない <see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを初期化します。</summary>
539       <param name="buffer">このストリームの作成元の符号なしバイトの配列。</param>
540       <param name="index">ストリームが開始する位置の <paramref name="buffer" /> のインデックス。</param>
541       <param name="count">バイト単位のストリーム長。</param>
542       <param name="writable">ストリームが書き込みをサポートするかどうかを決定する <see cref="P:System.IO.MemoryStream.CanWrite" /> プロパティの設定。</param>
543       <exception cref="T:System.ArgumentNullException">
544         <paramref name="buffer" /> は null です。</exception>
545       <exception cref="T:System.ArgumentOutOfRangeException">
546         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
547       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
548     </member>
549     <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean,System.Boolean)">
550       <summary>
551         <see cref="P:System.IO.MemoryStream.CanWrite" /> プロパティを指定どおりに設定し、<see cref="M:System.IO.MemoryStream.GetBuffer" /> を呼び出す機能を指定どおりに設定して、バイト配列の指定した領域に基づき、<see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを初期化します。</summary>
552       <param name="buffer">このストリームの作成元の符号なしバイトの配列。</param>
553       <param name="index">ストリームが開始する位置の <paramref name="buffer" /> のインデックス。</param>
554       <param name="count">バイト単位のストリーム長。</param>
555       <param name="writable">ストリームが書き込みをサポートするかどうかを決定する <see cref="P:System.IO.MemoryStream.CanWrite" /> プロパティの設定。</param>
556       <param name="publiclyVisible">ストリームの作成元の符号なしバイト配列を返す <see cref="M:System.IO.MemoryStream.GetBuffer" /> を有効にする場合は true。それ以外の場合は false。</param>
557       <exception cref="T:System.ArgumentNullException">
558         <paramref name="buffer" /> は null です。</exception>
559       <exception cref="T:System.ArgumentOutOfRangeException">
560         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
561       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
562     </member>
563     <member name="M:System.IO.MemoryStream.#ctor(System.Int32)">
564       <summary>
565         <see cref="T:System.IO.MemoryStream" /> クラスの新しいインスタンスを、指定に従って初期化される拡張可能な容量を使用して初期化します。</summary>
566       <param name="capacity">バイト単位の内部配列の初期サイズ。</param>
567       <exception cref="T:System.ArgumentOutOfRangeException">
568         <paramref name="capacity" /> が負の値です。</exception>
569     </member>
570     <member name="P:System.IO.MemoryStream.CanRead">
571       <summary>現在のストリームが読み取りをサポートしているかどうかを示す値を取得します。</summary>
572       <returns>ストリームが開いている場合は true。</returns>
573       <filterpriority>2</filterpriority>
574     </member>
575     <member name="P:System.IO.MemoryStream.CanSeek">
576       <summary>現在のストリームがシークをサポートしているかどうかを示す値を取得します。</summary>
577       <returns>ストリームが開いている場合は true。</returns>
578       <filterpriority>2</filterpriority>
579     </member>
580     <member name="P:System.IO.MemoryStream.CanWrite">
581       <summary>現在のストリームが書き込みをサポートしているかどうかを示す値を取得します。</summary>
582       <returns>ストリームが書き込みをサポートしている場合は true。それ以外の場合は false。</returns>
583       <filterpriority>2</filterpriority>
584     </member>
585     <member name="P:System.IO.MemoryStream.Capacity">
586       <summary>ストリームに割り当てられたバイト数を取得または設定します。</summary>
587       <returns>ストリームに対してバッファーが使用できる部分の長さ。</returns>
588       <exception cref="T:System.ArgumentOutOfRangeException">容量が負の値または現在のストリーム長より小さい値に設定されています。</exception>
589       <exception cref="T:System.ObjectDisposedException">現在のストリームが閉じています。</exception>
590       <exception cref="T:System.NotSupportedException">容量を変更できないストリームに対して set が呼び出されました。</exception>
591       <filterpriority>2</filterpriority>
592     </member>
593     <member name="M:System.IO.MemoryStream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
594       <summary>指定されたバッファー サイズを使用して、現在のストリームからすべてのバイトを非同期に読み取り、指定されたバッファー サイズとキャンセル トークンを使用して、別のストリームに書き込みます。</summary>
595       <returns>非同期のコピー操作を表すタスク。</returns>
596       <param name="destination">現在のストリームの内容のコピー先のストリーム。</param>
597       <param name="bufferSize">バッファーのサイズ (バイト数)。これは、0 より大きい値である必要があります。</param>
598       <param name="cancellationToken">キャンセル要求を監視するためのトークン。</param>
599       <exception cref="T:System.ArgumentNullException">
600         <paramref name="destination" /> は null です。</exception>
601       <exception cref="T:System.ArgumentOutOfRangeException">
602         <paramref name="buffersize" /> が負の値またはゼロです。</exception>
603       <exception cref="T:System.ObjectDisposedException">現在のストリームまたはコピー先ストリームは破棄されます。</exception>
604       <exception cref="T:System.NotSupportedException">現在のストリームが読み取りをサポートしていないか、コピー先のストリームが書き込みをサポートしていません。</exception>
605     </member>
606     <member name="M:System.IO.MemoryStream.Dispose(System.Boolean)">
607       <summary>
608         <see cref="T:System.IO.MemoryStream" /> クラスによって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。</summary>
609       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
610     </member>
611     <member name="M:System.IO.MemoryStream.Flush">
612       <summary>アクションが実行されないように、<see cref="M:System.IO.Stream.Flush" /> メソッドをオーバーライドします。</summary>
613       <filterpriority>2</filterpriority>
614     </member>
615     <member name="M:System.IO.MemoryStream.FlushAsync(System.Threading.CancellationToken)">
616       <summary>このストリームのすべてのバッファーを非同期的にクリアし、キャンセル要求を監視します。</summary>
617       <returns>非同期のフラッシュ操作を表すタスク。</returns>
618       <param name="cancellationToken">キャンセル要求を監視するためのトークン。</param>
619       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
620     </member>
621     <member name="P:System.IO.MemoryStream.Length">
622       <summary>バイト単位のストリーム長を取得します。</summary>
623       <returns>バイト単位のストリーム長。</returns>
624       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
625       <filterpriority>2</filterpriority>
626     </member>
627     <member name="P:System.IO.MemoryStream.Position">
628       <summary>ストリームの現在位置を取得または設定します。</summary>
629       <returns>ストリーム内の現在位置。</returns>
630       <exception cref="T:System.ArgumentOutOfRangeException">位置が負の値または <see cref="F:System.Int32.MaxValue" /> より大きい値に設定されています。</exception>
631       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられました。</exception>
632       <filterpriority>2</filterpriority>
633     </member>
634     <member name="M:System.IO.MemoryStream.Read(System.Byte[],System.Int32,System.Int32)">
635       <summary>現在のストリームからバイトのブロックを読み取り、データをバッファーに書き込みます。</summary>
636       <returns>バッファーに書き込まれた合計バイト数。要求しただけのバイト数を読み取ることができなかった場合、この値は要求したバイト数より小さくなります。また、データを読み取る前にストリームの末尾に到達した場合は 0 になります。</returns>
637       <param name="buffer">このメソッドが戻るとき、指定したバイト配列の <paramref name="offset" /> から (<paramref name="offset" /> + <paramref name="count" /> - 1) までの値が、現在のストリームから読み取られた文字に置き換えられています。</param>
638       <param name="offset">現在のストリームからのデータの格納を開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
639       <param name="count">読み取る最大バイト数。</param>
640       <exception cref="T:System.ArgumentNullException">
641         <paramref name="buffer" /> は null です。</exception>
642       <exception cref="T:System.ArgumentOutOfRangeException">
643         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
644       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="offset" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
645       <exception cref="T:System.ObjectDisposedException">現在のストリーム インスタンスが閉じています。</exception>
646       <filterpriority>2</filterpriority>
647     </member>
648     <member name="M:System.IO.MemoryStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
649       <summary>現在のストリームから非同期的にバイト シーケンスを非同期に読み取り、読み取ったバイト数だけストリーム内の位置を進め、キャンセル要求を監視します。</summary>
650       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、ストリームの末尾に到達した場合は 0 になることがあります。</returns>
651       <param name="buffer">データを書き込むバッファー。</param>
652       <param name="offset">ストリームからのデータの書き込み開始位置を示す <paramref name="buffer" /> 内のバイト オフセット。</param>
653       <param name="count">読み取る最大バイト数。</param>
654       <param name="cancellationToken">キャンセル要求を監視するためのトークン。既定値は <see cref="P:System.Threading.CancellationToken.None" /> です。</param>
655       <exception cref="T:System.ArgumentNullException">
656         <paramref name="buffer" /> は null です。</exception>
657       <exception cref="T:System.ArgumentOutOfRangeException">
658         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
659       <exception cref="T:System.ArgumentException">
660         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
661       <exception cref="T:System.NotSupportedException">ストリームは読み取りをサポートしません。</exception>
662       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
663       <exception cref="T:System.InvalidOperationException">ストリームは現在、前の読み取り操作で使用中です。</exception>
664     </member>
665     <member name="M:System.IO.MemoryStream.ReadByte">
666       <summary>現在のストリームからバイトを読み取ります。</summary>
667       <returns>
668         <see cref="T:System.Int32" /> にキャストしたバイト。ストリームの末尾に達した場合は -1。</returns>
669       <exception cref="T:System.ObjectDisposedException">現在のストリーム インスタンスが閉じています。</exception>
670       <filterpriority>2</filterpriority>
671     </member>
672     <member name="M:System.IO.MemoryStream.Seek(System.Int64,System.IO.SeekOrigin)">
673       <summary>現在のストリーム内の位置を指定した値に設定します。</summary>
674       <returns>初期参照ポイントとオフセットを組み合わせて計算するストリーム内の新しい位置。</returns>
675       <param name="offset">ストリームの新しい位置。これは <paramref name="loc" /> パラメーターに対する相対値であり、正または負の値にできます。</param>
676       <param name="loc">シーク参照ポイントとして機能する <see cref="T:System.IO.SeekOrigin" /> 型の値。</param>
677       <exception cref="T:System.IO.IOException">ストリームの先頭より前をシークしようとしました。</exception>
678       <exception cref="T:System.ArgumentOutOfRangeException">
679         <paramref name="offset" /> が <see cref="F:System.Int32.MaxValue" /> より大きくなっています。</exception>
680       <exception cref="T:System.ArgumentException">無効な <see cref="T:System.IO.SeekOrigin" /> があります。または<paramref name="offset" /> によって算術オーバーフローが発生しました。</exception>
681       <exception cref="T:System.ObjectDisposedException">現在のストリーム インスタンスが閉じています。</exception>
682       <filterpriority>2</filterpriority>
683     </member>
684     <member name="M:System.IO.MemoryStream.SetLength(System.Int64)">
685       <summary>現在のストリーム長を指定した値に設定します。</summary>
686       <param name="value">長さを設定する値。</param>
687       <exception cref="T:System.NotSupportedException">現在のストリームのサイズが変更できません。<paramref name="value" /> が現在の容量を超えています。または 現在のストリームが書き込みをサポートしません。</exception>
688       <exception cref="T:System.ArgumentOutOfRangeException">
689         <paramref name="value" /> が負または <see cref="T:System.IO.MemoryStream" /> の最大長より大きな値です。最大長は、(<see cref="F:System.Int32.MaxValue" /> - origin) で計算され、origin は、ストリームが開始する位置を示す基になるバッファーのインデックスです。</exception>
690       <filterpriority>2</filterpriority>
691     </member>
692     <member name="M:System.IO.MemoryStream.ToArray">
693       <summary>
694         <see cref="P:System.IO.MemoryStream.Position" /> プロパティには関係なく、ストリームの内容をバイト配列に書き込みます。</summary>
695       <returns>新しいバイト配列。</returns>
696       <filterpriority>2</filterpriority>
697     </member>
698     <member name="M:System.IO.MemoryStream.TryGetBuffer(System.ArraySegment{System.Byte}@)">
699       <summary>このストリームの作成元の符号なしバイトの配列を返します。戻り値は、変換が成功したかどうかを示します。</summary>
700       <returns>変換が成功した場合は true。それ以外の場合は false。</returns>
701       <param name="buffer">このストリームの作成元のバイト配列セグメント。</param>
702     </member>
703     <member name="M:System.IO.MemoryStream.Write(System.Byte[],System.Int32,System.Int32)">
704       <summary>バッファーから読み取ったデータを使用して、現在のストリームにバイトのブロックを書き込みます。</summary>
705       <param name="buffer">データの書き込み元となるバッファー。</param>
706       <param name="offset">現在のストリームへのバイトのコピーを開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
707       <param name="count">書き込む最大バイト数。</param>
708       <exception cref="T:System.ArgumentNullException">
709         <paramref name="buffer" /> は null です。</exception>
710       <exception cref="T:System.NotSupportedException">ストリームは書き込みをサポートしません。詳細については、<see cref="P:System.IO.Stream.CanWrite" /> のトピックを参照してください。または 現在の位置が、ストリームの末尾に向かって <paramref name="count" /> バイトよりも近い位置にあり、容量を変更できません。</exception>
711       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="offset" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
712       <exception cref="T:System.ArgumentOutOfRangeException">
713         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
714       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
715       <exception cref="T:System.ObjectDisposedException">現在のストリーム インスタンスが閉じています。</exception>
716       <filterpriority>2</filterpriority>
717     </member>
718     <member name="M:System.IO.MemoryStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
719       <summary>現在のストリームにバイト シーケンスを非同期に書き込み、書き込んだバイト数だけストリーム内の現在位置を進め、キャンセル要求を監視します。</summary>
720       <returns>非同期の書き込み操作を表すタスク。</returns>
721       <param name="buffer">データの書き込み元となるバッファー。</param>
722       <param name="offset">ストリームへのバイトのコピーを開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
723       <param name="count">書き込む最大バイト数。</param>
724       <param name="cancellationToken">キャンセル要求を監視するためのトークン。既定値は <see cref="P:System.Threading.CancellationToken.None" /> です。</param>
725       <exception cref="T:System.ArgumentNullException">
726         <paramref name="buffer" /> は null です。</exception>
727       <exception cref="T:System.ArgumentOutOfRangeException">
728         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
729       <exception cref="T:System.ArgumentException">
730         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
731       <exception cref="T:System.NotSupportedException">ストリームは書き込みをサポートしません。</exception>
732       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
733       <exception cref="T:System.InvalidOperationException">ストリームは現在、前の書き込み操作で使用中です。</exception>
734     </member>
735     <member name="M:System.IO.MemoryStream.WriteByte(System.Byte)">
736       <summary>現在のストリーム内の現在位置に 1 バイトを書き込みます。</summary>
737       <param name="value">書き込むバイト。</param>
738       <exception cref="T:System.NotSupportedException">ストリームは書き込みをサポートしません。詳細については、<see cref="P:System.IO.Stream.CanWrite" /> のトピックを参照してください。または 現在の位置がストリームの末尾になっており、容量を変更できません。</exception>
739       <exception cref="T:System.ObjectDisposedException">現在のストリームが閉じています。</exception>
740       <filterpriority>2</filterpriority>
741     </member>
742     <member name="M:System.IO.MemoryStream.WriteTo(System.IO.Stream)">
743       <summary>メモリ ストリームの内容全体を別のストリームに書き込みます。</summary>
744       <param name="stream">このメモリ ストリームが書き込まれるストリーム。</param>
745       <exception cref="T:System.ArgumentNullException">
746         <paramref name="stream" /> は null です。</exception>
747       <exception cref="T:System.ObjectDisposedException">現在のストリームまたは対象のストリームは閉じています。</exception>
748       <filterpriority>2</filterpriority>
749     </member>
750     <member name="T:System.IO.SeekOrigin">
751       <summary>シークに使用するストリームの場所を指定します。</summary>
752       <filterpriority>2</filterpriority>
753     </member>
754     <member name="F:System.IO.SeekOrigin.Begin">
755       <summary>ストリームの先頭を指定します。</summary>
756     </member>
757     <member name="F:System.IO.SeekOrigin.Current">
758       <summary>ストリーム内の現在位置を指定します。</summary>
759     </member>
760     <member name="F:System.IO.SeekOrigin.End">
761       <summary>ストリームの末尾を指定します。</summary>
762     </member>
763     <member name="T:System.IO.Stream">
764       <summary>バイト シーケンスのジェネリック ビューを提供します。これは抽象クラスです。この種類の .NET Framework ソース コードを参照して、次を参照してください。、 Reference Sourceです。</summary>
765       <filterpriority>2</filterpriority>
766     </member>
767     <member name="M:System.IO.Stream.#ctor">
768       <summary>
769         <see cref="T:System.IO.Stream" /> クラスの新しいインスタンスを初期化します。</summary>
770     </member>
771     <member name="P:System.IO.Stream.CanRead">
772       <summary>派生クラスでオーバーライドされた場合は、現在のストリームが読み取りをサポートするかどうかを示す値を取得します。</summary>
773       <returns>ストリームが読み込みをサポートしている場合は true。それ以外の場合は false。</returns>
774       <filterpriority>1</filterpriority>
775     </member>
776     <member name="P:System.IO.Stream.CanSeek">
777       <summary>派生クラスでオーバーライドされた場合は、現在のストリームがシークをサポートするかどうかを示す値を取得します。</summary>
778       <returns>ストリームがシークをサポートしている場合は true。それ以外の場合は false。</returns>
779       <filterpriority>1</filterpriority>
780     </member>
781     <member name="P:System.IO.Stream.CanTimeout">
782       <summary>現在のストリームがタイムアウトできるかどうかを決定する値を取得します。</summary>
783       <returns>現在のストリームがタイムアウトできるかどうかを決定する値。</returns>
784       <filterpriority>2</filterpriority>
785     </member>
786     <member name="P:System.IO.Stream.CanWrite">
787       <summary>派生クラスでオーバーライドされた場合は、現在のストリームが書き込みをサポートするかどうかを示す値を取得します。</summary>
788       <returns>ストリームが書き込みをサポートしている場合は true。それ以外の場合は false。</returns>
789       <filterpriority>1</filterpriority>
790     </member>
791     <member name="M:System.IO.Stream.CopyTo(System.IO.Stream)">
792       <summary>現在のストリームからバイトを読み取り、別のストリームに書き込みます。</summary>
793       <param name="destination">現在のストリームの内容のコピー先のストリーム。</param>
794       <exception cref="T:System.ArgumentNullException">
795         <paramref name="destination" /> は null です。</exception>
796       <exception cref="T:System.NotSupportedException">現在のストリームは読み取りをサポートしていません。または<paramref name="destination" /> は、書き込みをサポートしません。</exception>
797       <exception cref="T:System.ObjectDisposedException">
798         <paramref name="destination" /> メソッドが呼び出される前に、現在のストリームまたは <see cref="M:System.IO.Stream.CopyTo(System.IO.Stream)" /> が閉じられました。</exception>
799       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
800     </member>
801     <member name="M:System.IO.Stream.CopyTo(System.IO.Stream,System.Int32)">
802       <summary>指定されたバッファー サイズを使用して、現在のストリームからバイトを読み取り、別のストリームに書き込みます。</summary>
803       <param name="destination">現在のストリームの内容のコピー先のストリーム。</param>
804       <param name="bufferSize">バッファーのサイズ。これは、0 より大きい値である必要があります。既定のサイズは 81920 です。</param>
805       <exception cref="T:System.ArgumentNullException">
806         <paramref name="destination" /> は null です。</exception>
807       <exception cref="T:System.ArgumentOutOfRangeException">
808         <paramref name="bufferSize" /> が負の値またはゼロです。</exception>
809       <exception cref="T:System.NotSupportedException">現在のストリームは読み取りをサポートしていません。または<paramref name="destination" /> は、書き込みをサポートしません。</exception>
810       <exception cref="T:System.ObjectDisposedException">
811         <paramref name="destination" /> メソッドが呼び出される前に、現在のストリームまたは <see cref="M:System.IO.Stream.CopyTo(System.IO.Stream)" /> が閉じられました。</exception>
812       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
813     </member>
814     <member name="M:System.IO.Stream.CopyToAsync(System.IO.Stream)">
815       <summary>現在のストリームからすべてのバイトを非同期に読み取り、別のストリームに書き込みます。</summary>
816       <returns>非同期のコピー操作を表すタスク。</returns>
817       <param name="destination">現在のストリームの内容のコピー先のストリーム。</param>
818       <exception cref="T:System.ArgumentNullException">
819         <paramref name="destination" /> は null です。</exception>
820       <exception cref="T:System.ObjectDisposedException">現在のストリームまたはコピー先ストリームは破棄されます。</exception>
821       <exception cref="T:System.NotSupportedException">現在のストリームが読み取りをサポートしていないか、コピー先のストリームが書き込みをサポートしていません。</exception>
822     </member>
823     <member name="M:System.IO.Stream.CopyToAsync(System.IO.Stream,System.Int32)">
824       <summary>指定されたバッファー サイズを使用して、現在のストリームからバイトを非同期に読み取り、別のストリームに書き込みます。</summary>
825       <returns>非同期のコピー操作を表すタスク。</returns>
826       <param name="destination">現在のストリームの内容のコピー先のストリーム。</param>
827       <param name="bufferSize">バッファーのサイズ (バイト数)。これは、0 より大きい値である必要があります。既定のサイズは 81920 です。</param>
828       <exception cref="T:System.ArgumentNullException">
829         <paramref name="destination" /> は null です。</exception>
830       <exception cref="T:System.ArgumentOutOfRangeException">
831         <paramref name="buffersize" /> が負の値またはゼロです。</exception>
832       <exception cref="T:System.ObjectDisposedException">現在のストリームまたはコピー先ストリームは破棄されます。</exception>
833       <exception cref="T:System.NotSupportedException">現在のストリームが読み取りをサポートしていないか、コピー先のストリームが書き込みをサポートしていません。</exception>
834     </member>
835     <member name="M:System.IO.Stream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
836       <summary>指定されたバッファー サイズを使用して、現在のストリームからバイトを非同期に読み取り、指定されたバッファー サイズとキャンセル トークンを使用して、別のストリームに書き込みます。</summary>
837       <returns>非同期のコピー操作を表すタスク。</returns>
838       <param name="destination">現在のストリームの内容のコピー先のストリーム。</param>
839       <param name="bufferSize">バッファーのサイズ (バイト数)。これは、0 より大きい値である必要があります。既定のサイズは 81920 です。</param>
840       <param name="cancellationToken">キャンセル要求を監視するためのトークン。既定値は <see cref="P:System.Threading.CancellationToken.None" /> です。</param>
841       <exception cref="T:System.ArgumentNullException">
842         <paramref name="destination" /> は null です。</exception>
843       <exception cref="T:System.ArgumentOutOfRangeException">
844         <paramref name="buffersize" /> が負の値またはゼロです。</exception>
845       <exception cref="T:System.ObjectDisposedException">現在のストリームまたはコピー先ストリームは破棄されます。</exception>
846       <exception cref="T:System.NotSupportedException">現在のストリームが読み取りをサポートしていないか、コピー先のストリームが書き込みをサポートしていません。</exception>
847     </member>
848     <member name="M:System.IO.Stream.Dispose">
849       <summary>
850         <see cref="T:System.IO.Stream" /> によって使用されているすべてのリソースを解放します。</summary>
851     </member>
852     <member name="M:System.IO.Stream.Dispose(System.Boolean)">
853       <summary>
854         <see cref="T:System.IO.Stream" /> で使用されているアンマネージ リソースを解放し、オプションでマネージ リソースを解放します。</summary>
855       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
856     </member>
857     <member name="M:System.IO.Stream.Flush">
858       <summary>派生クラスによってオーバーライドされた場合は、ストリームに対応するすべてのバッファーをクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
859       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
860       <filterpriority>2</filterpriority>
861     </member>
862     <member name="M:System.IO.Stream.FlushAsync">
863       <summary>ストリームに対応するすべてのバッファーを非同期にクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
864       <returns>非同期のフラッシュ操作を表すタスク。</returns>
865       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
866     </member>
867     <member name="M:System.IO.Stream.FlushAsync(System.Threading.CancellationToken)">
868       <summary>ストリームに対応するすべてのバッファーを非同期にクリアし、バッファー内のデータを基になるデバイスに書き込み、キャンセル要求を監視します。</summary>
869       <returns>非同期のフラッシュ操作を表すタスク。</returns>
870       <param name="cancellationToken">キャンセル要求を監視するためのトークン。既定値は <see cref="P:System.Threading.CancellationToken.None" /> です。</param>
871       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
872     </member>
873     <member name="P:System.IO.Stream.Length">
874       <summary>派生クラスでオーバーライドされた場合は、ストリームの長さをバイト単位で取得します。</summary>
875       <returns>ストリーム長 (バイト単位) を表す long 値。</returns>
876       <exception cref="T:System.NotSupportedException">Stream から派生したクラスがシークをサポートしていません。</exception>
877       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
878       <filterpriority>1</filterpriority>
879     </member>
880     <member name="F:System.IO.Stream.Null">
881       <summary>バッキング ストアを持たない Stream。</summary>
882       <filterpriority>1</filterpriority>
883     </member>
884     <member name="P:System.IO.Stream.Position">
885       <summary>派生クラスでオーバーライドされた場合は、現在のストリーム内の位置を取得または設定します。</summary>
886       <returns>ストリーム内の現在位置。</returns>
887       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
888       <exception cref="T:System.NotSupportedException">ストリームがシークをサポートしていません。</exception>
889       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
890       <filterpriority>1</filterpriority>
891     </member>
892     <member name="M:System.IO.Stream.Read(System.Byte[],System.Int32,System.Int32)">
893       <summary>派生クラスによってオーバーライドされた場合は、現在のストリームからバイト シーケンスを読み取り、読み取ったバイト数の分だけストリームの位置を進めます。</summary>
894       <returns>バッファーに読み取られた合計バイト数。要求しただけのバイト数を読み取ることができなかった場合、この値は要求したバイト数より小さくなります。ストリームの末尾に到達した場合は 0 (ゼロ) になることがあります。</returns>
895       <param name="buffer">バイト配列。このメソッドが戻るとき、指定したバイト配列の <paramref name="offset" /> から (<paramref name="offset" /> + <paramref name="count" /> -1) までの値が、現在のソースから読み取られたバイトに置き換えられます。</param>
896       <param name="offset">現在のストリームから読み取ったデータの格納を開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
897       <param name="count">現在のストリームから読み取る最大バイト数。</param>
898       <exception cref="T:System.ArgumentException">
899         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
900       <exception cref="T:System.ArgumentNullException">
901         <paramref name="buffer" /> は null です。</exception>
902       <exception cref="T:System.ArgumentOutOfRangeException">
903         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
904       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
905       <exception cref="T:System.NotSupportedException">ストリームは読み取りをサポートしません。</exception>
906       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
907       <filterpriority>1</filterpriority>
908     </member>
909     <member name="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)">
910       <summary>現在のストリームからバイト シーケンスを非同期に読み取り、読み取ったバイト数だけストリーム内の位置を進めます。</summary>
911       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、ストリームの末尾に到達した場合は 0 になることがあります。</returns>
912       <param name="buffer">データを書き込むバッファー。</param>
913       <param name="offset">ストリームからのデータの書き込み開始位置を示す <paramref name="buffer" /> 内のバイト オフセット。</param>
914       <param name="count">読み取る最大バイト数。</param>
915       <exception cref="T:System.ArgumentNullException">
916         <paramref name="buffer" /> は null です。</exception>
917       <exception cref="T:System.ArgumentOutOfRangeException">
918         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
919       <exception cref="T:System.ArgumentException">
920         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
921       <exception cref="T:System.NotSupportedException">ストリームは読み取りをサポートしません。</exception>
922       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
923       <exception cref="T:System.InvalidOperationException">ストリームは現在、前の読み取り操作で使用中です。</exception>
924     </member>
925     <member name="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
926       <summary>現在のストリームから非同期的にバイト シーケンスを非同期に読み取り、読み取ったバイト数だけストリーム内の位置を進め、キャンセル要求を監視します。</summary>
927       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、ストリームの末尾に到達した場合は 0 になることがあります。</returns>
928       <param name="buffer">データを書き込むバッファー。</param>
929       <param name="offset">ストリームからのデータの書き込み開始位置を示す <paramref name="buffer" /> 内のバイト オフセット。</param>
930       <param name="count">読み取る最大バイト数。</param>
931       <param name="cancellationToken">キャンセル要求を監視するためのトークン。既定値は <see cref="P:System.Threading.CancellationToken.None" /> です。</param>
932       <exception cref="T:System.ArgumentNullException">
933         <paramref name="buffer" /> は null です。</exception>
934       <exception cref="T:System.ArgumentOutOfRangeException">
935         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
936       <exception cref="T:System.ArgumentException">
937         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
938       <exception cref="T:System.NotSupportedException">ストリームは読み取りをサポートしません。</exception>
939       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
940       <exception cref="T:System.InvalidOperationException">ストリームは現在、前の読み取り操作で使用中です。</exception>
941     </member>
942     <member name="M:System.IO.Stream.ReadByte">
943       <summary>ストリームから 1 バイトを読み取り、ストリーム内の位置を 1 バイト進めます。ストリームの末尾の場合は -1 を返します。</summary>
944       <returns>Int32 にキャストされた符号なしバイト。ストリームの末尾の場合は -1。</returns>
945       <exception cref="T:System.NotSupportedException">ストリームは読み取りをサポートしません。</exception>
946       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
947       <filterpriority>2</filterpriority>
948     </member>
949     <member name="P:System.IO.Stream.ReadTimeout">
950       <summary>ストリームがタイムアウト前に読み取りを試行する期間を決定する値 (ミリ秒単位) を取得または設定します。</summary>
951       <returns>ストリームがタイムアウト前に読み取りを試行する期間を決定する値 (ミリ秒単位)。</returns>
952       <exception cref="T:System.InvalidOperationException">
953         <see cref="P:System.IO.Stream.ReadTimeout" /> メソッドは、常に <see cref="T:System.InvalidOperationException" /> をスローします。</exception>
954       <filterpriority>2</filterpriority>
955     </member>
956     <member name="M:System.IO.Stream.Seek(System.Int64,System.IO.SeekOrigin)">
957       <summary>派生クラスでオーバーライドされた場合は、現在のストリーム内の位置を設定します。</summary>
958       <returns>現在のストリーム内の新しい位置。</returns>
959       <param name="offset">
960         <paramref name="origin" /> パラメーターからの相対バイト オフセット。</param>
961       <param name="origin">新しい位置を取得するために使用する参照ポイントを示す <see cref="T:System.IO.SeekOrigin" /> 型の値。</param>
962       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
963       <exception cref="T:System.NotSupportedException">ストリームがシークをサポートしていません。たとえば、ストリームがパイプまたはコンソール出力によって生成された可能性があります。</exception>
964       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
965       <filterpriority>1</filterpriority>
966     </member>
967     <member name="M:System.IO.Stream.SetLength(System.Int64)">
968       <summary>派生クラスでオーバーライドされた場合は、現在のストリームの長さを設定します。</summary>
969       <param name="value">現在のストリームの希望の長さ (バイト数)。</param>
970       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
971       <exception cref="T:System.NotSupportedException">ストリームが書き込みとシークの両方をサポートしていません。たとえば、ストリームがパイプまたはコンソール出力によって生成された可能性があります。</exception>
972       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
973       <filterpriority>2</filterpriority>
974     </member>
975     <member name="M:System.IO.Stream.Write(System.Byte[],System.Int32,System.Int32)">
976       <summary>派生クラスによってオーバーライドされた場合は、現在のストリームにバイト シーケンスを書き込み、書き込んだバイト数の分だけストリームの現在位置を進めます。</summary>
977       <param name="buffer">バイト配列。このメソッドは、<paramref name="buffer" /> から現在のストリームに、<paramref name="count" /> で指定されたバイト数だけコピーします。</param>
978       <param name="offset">現在のストリームへのバイトのコピーを開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
979       <param name="count">現在のストリームに書き込むバイト数。</param>
980       <exception cref="T:System.ArgumentException">合計 <paramref name="offset" /> と <paramref name="count" /> がバッファーの長さより大きい。</exception>
981       <exception cref="T:System.ArgumentNullException">
982         <paramref name="buffer" />nullです。</exception>
983       <exception cref="T:System.ArgumentOutOfRangeException">
984         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
985       <exception cref="T:System.IO.IOException">指定したファイルが見つからないなど、I/O エラーが発生しました。</exception>
986       <exception cref="T:System.NotSupportedException">ストリームは書き込みをサポートしません。</exception>
987       <exception cref="T:System.ObjectDisposedException">
988         <see cref="M:System.IO.Stream.Write(System.Byte[],System.Int32,System.Int32)" /> ストリームが閉じられた後が呼び出されました。</exception>
989       <filterpriority>1</filterpriority>
990     </member>
991     <member name="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)">
992       <summary>現在のストリームにバイト シーケンスを非同期に書き込み、書き込んだバイト数だけストリーム内の現在位置を進めます。</summary>
993       <returns>非同期の書き込み操作を表すタスク。</returns>
994       <param name="buffer">データの書き込み元となるバッファー。</param>
995       <param name="offset">ストリームへのバイトのコピーを開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
996       <param name="count">書き込む最大バイト数。</param>
997       <exception cref="T:System.ArgumentNullException">
998         <paramref name="buffer" /> は null です。</exception>
999       <exception cref="T:System.ArgumentOutOfRangeException">
1000         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
1001       <exception cref="T:System.ArgumentException">
1002         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1003       <exception cref="T:System.NotSupportedException">ストリームは書き込みをサポートしません。</exception>
1004       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1005       <exception cref="T:System.InvalidOperationException">ストリームは現在、前の書き込み操作で使用中です。</exception>
1006     </member>
1007     <member name="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
1008       <summary>現在のストリームにバイト シーケンスを非同期に書き込み、書き込んだバイト数だけストリーム内の現在位置を進め、キャンセル要求を監視します。</summary>
1009       <returns>非同期の書き込み操作を表すタスク。</returns>
1010       <param name="buffer">データの書き込み元となるバッファー。</param>
1011       <param name="offset">ストリームへのバイトのコピーを開始する位置を示す <paramref name="buffer" /> 内のバイト オフセット。インデックス番号は 0 から始まります。</param>
1012       <param name="count">書き込む最大バイト数。</param>
1013       <param name="cancellationToken">キャンセル要求を監視するためのトークン。既定値は <see cref="P:System.Threading.CancellationToken.None" /> です。</param>
1014       <exception cref="T:System.ArgumentNullException">
1015         <paramref name="buffer" /> は null です。</exception>
1016       <exception cref="T:System.ArgumentOutOfRangeException">
1017         <paramref name="offset" /> または <paramref name="count" /> が負の値です。</exception>
1018       <exception cref="T:System.ArgumentException">
1019         <paramref name="offset" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1020       <exception cref="T:System.NotSupportedException">ストリームは書き込みをサポートしません。</exception>
1021       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1022       <exception cref="T:System.InvalidOperationException">ストリームは現在、前の書き込み操作で使用中です。</exception>
1023     </member>
1024     <member name="M:System.IO.Stream.WriteByte(System.Byte)">
1025       <summary>ストリームの現在位置にバイトを書き込み、ストリームの位置を 1 バイトだけ進めます。</summary>
1026       <param name="value">ストリームに書き込むバイト。</param>
1027       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1028       <exception cref="T:System.NotSupportedException">ストリームが書き込みをサポートしていないか、既に閉じています。</exception>
1029       <exception cref="T:System.ObjectDisposedException">ストリームが閉じられた後でメソッドが呼び出されました。</exception>
1030       <filterpriority>2</filterpriority>
1031     </member>
1032     <member name="P:System.IO.Stream.WriteTimeout">
1033       <summary>ストリームがタイムアウト前に書き込みを試行する期間を決定する値 (ミリ秒単位) を取得または設定します。</summary>
1034       <returns>ストリームがタイムアウト前に書き込みを試行する期間を決定する値 (ミリ秒単位)。</returns>
1035       <exception cref="T:System.InvalidOperationException">
1036         <see cref="P:System.IO.Stream.WriteTimeout" /> メソッドは、常に <see cref="T:System.InvalidOperationException" /> をスローします。</exception>
1037       <filterpriority>2</filterpriority>
1038     </member>
1039     <member name="T:System.IO.StreamReader">
1040       <summary>特定のエンコーディングのバイト ストリームから文字を読み込む <see cref="T:System.IO.TextReader" /> を実装します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、 Reference Sourceです。</summary>
1041       <filterpriority>1</filterpriority>
1042     </member>
1043     <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream)">
1044       <summary>指定したストリーム用の <see cref="T:System.IO.StreamReader" /> クラスの新しいインスタンスを初期化します。</summary>
1045       <param name="stream">読み込まれるストリーム。</param>
1046       <exception cref="T:System.ArgumentException">
1047         <paramref name="stream" /> が読み取りをサポートしていません。</exception>
1048       <exception cref="T:System.ArgumentNullException">
1049         <paramref name="stream" /> は null です。</exception>
1050     </member>
1051     <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Boolean)">
1052       <summary>バイト順マーク検出オプションを設定して、指定したストリーム用の <see cref="T:System.IO.StreamReader" /> クラスの新しいインスタンスを初期化します。</summary>
1053       <param name="stream">読み込まれるストリーム。</param>
1054       <param name="detectEncodingFromByteOrderMarks">ファイルの先頭にあるバイト順序マークを検索するかどうかを示します。</param>
1055       <exception cref="T:System.ArgumentException">
1056         <paramref name="stream" /> が読み取りをサポートしていません。</exception>
1057       <exception cref="T:System.ArgumentNullException">
1058         <paramref name="stream" /> は null です。</exception>
1059     </member>
1060     <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding)">
1061       <summary>文字エンコーディングを設定して、指定したストリーム用の <see cref="T:System.IO.StreamReader" /> クラスの新しいインスタンスを初期化します。</summary>
1062       <param name="stream">読み込まれるストリーム。</param>
1063       <param name="encoding">使用する文字エンコーディング。</param>
1064       <exception cref="T:System.ArgumentException">
1065         <paramref name="stream" /> が読み取りをサポートしていません。</exception>
1066       <exception cref="T:System.ArgumentNullException">
1067         <paramref name="stream" /> または <paramref name="encoding" /> が null です。</exception>
1068     </member>
1069     <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
1070       <summary>文字エンコーディングとバイト順マーク検出オプションを設定して、指定したストリーム用の <see cref="T:System.IO.StreamReader" /> クラスの新しいインスタンスを初期化します。</summary>
1071       <param name="stream">読み込まれるストリーム。</param>
1072       <param name="encoding">使用する文字エンコーディング。</param>
1073       <param name="detectEncodingFromByteOrderMarks">ファイルの先頭にあるバイト順序マークを検索するかどうかを示します。</param>
1074       <exception cref="T:System.ArgumentException">
1075         <paramref name="stream" /> が読み取りをサポートしていません。</exception>
1076       <exception cref="T:System.ArgumentNullException">
1077         <paramref name="stream" /> または <paramref name="encoding" /> が null です。</exception>
1078     </member>
1079     <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
1080       <summary>文字エンコーディング、バイト順マーク検出オプション、およびバッファー サイズを設定して、指定したストリーム用の <see cref="T:System.IO.StreamReader" /> クラスの新しいインスタンスを初期化します。</summary>
1081       <param name="stream">読み込まれるストリーム。</param>
1082       <param name="encoding">使用する文字エンコーディング。</param>
1083       <param name="detectEncodingFromByteOrderMarks">ファイルの先頭にあるバイト順序マークを検索するかどうかを示します。</param>
1084       <param name="bufferSize">最小バッファー サイズ。</param>
1085       <exception cref="T:System.ArgumentException">ストリームは読み取りをサポートしません。</exception>
1086       <exception cref="T:System.ArgumentNullException">
1087         <paramref name="stream" /> または <paramref name="encoding" /> が null です。</exception>
1088       <exception cref="T:System.ArgumentOutOfRangeException">
1089         <paramref name="bufferSize" /> が 0 以下です。</exception>
1090     </member>
1091     <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)">
1092       <summary>指定した文字エンコーディング、バイト順マーク検出オプション、およびバッファー サイズに基づいて、指定したストリーム用の <see cref="T:System.IO.StreamReader" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
1093       <param name="stream">読み取るストリーム。</param>
1094       <param name="encoding">使用する文字エンコーディング。</param>
1095       <param name="detectEncodingFromByteOrderMarks">ファイルの先頭にあるバイト順序マークを検索する場合は true。それ以外の場合は false。</param>
1096       <param name="bufferSize">最小バッファー サイズ。</param>
1097       <param name="leaveOpen">
1098         <see cref="T:System.IO.StreamReader" /> オブジェクトを破棄した後にストリームを開いたままにする場合は true、それ以外の場合は false。</param>
1099     </member>
1100     <member name="P:System.IO.StreamReader.BaseStream">
1101       <summary>基になるストリームを返します。</summary>
1102       <returns>基になるストリーム。</returns>
1103       <filterpriority>2</filterpriority>
1104     </member>
1105     <member name="P:System.IO.StreamReader.CurrentEncoding">
1106       <summary>現在の <see cref="T:System.IO.StreamReader" /> オブジェクトが使用している現在の文字エンコーディングを取得します。</summary>
1107       <returns>現在のリーダーが使用している現在の文字エンコーディング。<see cref="T:System.IO.StreamReader" /> の <see cref="Overload:System.IO.StreamReader.Read" /> メソッドを最初に呼び出した後、現在の文字エンコーディングを示す値が異なる場合があります。これは、<see cref="Overload:System.IO.StreamReader.Read" /> メソッドの最初の呼び出しまでエンコードの自動検出が実行されないためです。</returns>
1108       <filterpriority>2</filterpriority>
1109     </member>
1110     <member name="M:System.IO.StreamReader.DiscardBufferedData">
1111       <summary>内部バッファーをクリアします。</summary>
1112       <filterpriority>2</filterpriority>
1113     </member>
1114     <member name="M:System.IO.StreamReader.Dispose(System.Boolean)">
1115       <summary>基になるストリームを閉じ、<see cref="T:System.IO.StreamReader" /> によって使用されているアンマネージ リソースを解放します。任意でマネージ リソースも解放します。</summary>
1116       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
1117     </member>
1118     <member name="P:System.IO.StreamReader.EndOfStream">
1119       <summary>現在のストリームの位置がストリームの末尾かどうかを示す値を取得します。</summary>
1120       <returns>現在のストリームの位置がストリームの末尾の場合は true。それ以外の場合は false。</returns>
1121       <exception cref="T:System.ObjectDisposedException">基になるストリームは破棄されています。</exception>
1122       <filterpriority>1</filterpriority>
1123     </member>
1124     <member name="F:System.IO.StreamReader.Null">
1125       <summary>空のストリームの <see cref="T:System.IO.StreamReader" /> オブジェクト。</summary>
1126       <filterpriority>1</filterpriority>
1127     </member>
1128     <member name="M:System.IO.StreamReader.Peek">
1129       <summary>読み取り可能な次の文字を返しますが、その文字は使用されません。</summary>
1130       <returns>読み取り対象の次の文字を表す整数。読み取り対象の文字が存在しない場合またはストリームがシークをサポートしていない場合は -1。</returns>
1131       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1132       <filterpriority>1</filterpriority>
1133     </member>
1134     <member name="M:System.IO.StreamReader.Read">
1135       <summary>入力ストリームから次の文字を読み込み、1 文字分だけ文字位置を進めます。</summary>
1136       <returns>入力ストリームの次の文字を <see cref="T:System.Int32" /> オブジェクトで表した値。使用できる文字がない場合は -1。</returns>
1137       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1138       <filterpriority>1</filterpriority>
1139     </member>
1140     <member name="M:System.IO.StreamReader.Read(System.Char[],System.Int32,System.Int32)">
1141       <summary>指定したインデックスを開始位置として、現在のストリームから、指定された最大文字数をバッファー内に読み取ります。</summary>
1142       <returns>読み込まれた文字数。ストリームの末尾でデータが読み込まれなかった場合は 0。この数値は、ストリーム内に使用できるデータがあるかどうかによって異なりますが、<paramref name="count" /> パラメーター以下の数値になります。</returns>
1143       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index + count - 1" />) までの値が、現在のソースから読み取られた文字に置き換えられています。</param>
1144       <param name="index">書き込みの開始位置を示す <paramref name="buffer" /> のインデックス。</param>
1145       <param name="count">読み取り対象の最大文字数。</param>
1146       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
1147       <exception cref="T:System.ArgumentNullException">
1148         <paramref name="buffer" /> は null です。</exception>
1149       <exception cref="T:System.ArgumentOutOfRangeException">
1150         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1151       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。たとえば、ストリームがクローズされています。</exception>
1152       <filterpriority>1</filterpriority>
1153     </member>
1154     <member name="M:System.IO.StreamReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
1155       <summary>指定した最大文字数を現在のストリームから非同期的に読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1156       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、ストリームの末尾に到達した場合は 0 になることがあります。</returns>
1157       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1158       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1159       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに書き込む前にストリームの末尾に到達した場合は現在のメソッドが返ります。</param>
1160       <exception cref="T:System.ArgumentNullException">
1161         <paramref name="buffer" /> は null です。</exception>
1162       <exception cref="T:System.ArgumentOutOfRangeException">
1163         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1164       <exception cref="T:System.ArgumentException">
1165         <paramref name="index" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1166       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1167       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1168     </member>
1169     <member name="M:System.IO.StreamReader.ReadBlock(System.Char[],System.Int32,System.Int32)">
1170       <summary>指定した最大文字数を現在のストリームから読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1171       <returns>読み取られた文字数。この数値は、すべての入力文字が読み取られたかどうかによって異なりますが、<paramref name="count" /> 以下の数値になります。</returns>
1172       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index + count - 1" />) までの値が、現在のソースから読み取られた文字に置き換えられています。</param>
1173       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1174       <param name="count">読み取り対象の最大文字数。</param>
1175       <exception cref="T:System.ArgumentNullException">
1176         <paramref name="buffer" /> は null です。</exception>
1177       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
1178       <exception cref="T:System.ArgumentOutOfRangeException">
1179         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1180       <exception cref="T:System.ObjectDisposedException">
1181         <see cref="T:System.IO.StreamReader" /> が閉じています。</exception>
1182       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1183     </member>
1184     <member name="M:System.IO.StreamReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
1185       <summary>指定した最大文字数を現在のストリームから非同期的に読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1186       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、ストリームの末尾に到達した場合は 0 になることがあります。</returns>
1187       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1188       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1189       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに書き込む前にストリームの末尾に到達した場合、メソッドは制御を返します。</param>
1190       <exception cref="T:System.ArgumentNullException">
1191         <paramref name="buffer" /> は null です。</exception>
1192       <exception cref="T:System.ArgumentOutOfRangeException">
1193         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1194       <exception cref="T:System.ArgumentException">
1195         <paramref name="index" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1196       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1197       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1198     </member>
1199     <member name="M:System.IO.StreamReader.ReadLine">
1200       <summary>現在のストリームから 1 行分の文字を読み取り、そのデータを文字列として返します。</summary>
1201       <returns>入力ストリームからの次の行。入力ストリームの末尾に到達した場合は null。</returns>
1202       <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
1203       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1204       <filterpriority>1</filterpriority>
1205     </member>
1206     <member name="M:System.IO.StreamReader.ReadLineAsync">
1207       <summary>現在のストリームから非同期的に 1 行分の文字を読み取り、そのデータを文字列として返します。</summary>
1208       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、ストリームの次の行が含まれます。または、すべての文字が読み取られた場合は null です。</returns>
1209       <exception cref="T:System.ArgumentOutOfRangeException">次の行の文字数が、<see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1210       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1211       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1212     </member>
1213     <member name="M:System.IO.StreamReader.ReadToEnd">
1214       <summary>すべての文字の現在位置から末尾までを読み込みます。</summary>
1215       <returns>ストリームの現在位置から末尾までのストリームの残り部分 (文字列)。現在の位置がストリームの末尾である場合は、空の文字列 ("") が返されます。</returns>
1216       <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
1217       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1218       <filterpriority>1</filterpriority>
1219     </member>
1220     <member name="M:System.IO.StreamReader.ReadToEndAsync">
1221       <summary>現在位置からストリームの末尾まですべての文字を非同期的に読み取り、1 つの文字列として返します。</summary>
1222       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、現在位置からストリームの末尾までの文字から成る文字列が含まれます。</returns>
1223       <exception cref="T:System.ArgumentOutOfRangeException">文字数が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1224       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1225       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1226     </member>
1227     <member name="T:System.IO.StreamWriter">
1228       <summary>文字を特定のエンコーディングでストリームに書き込むための <see cref="T:System.IO.TextWriter" /> を実装しています。この種類の .NET Framework ソース コードを参照して、次を参照してください。、参照ソースです。</summary>
1229       <filterpriority>1</filterpriority>
1230     </member>
1231     <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream)">
1232       <summary>UTF-8 エンコーディングと既定のバッファー サイズを使用して、指定したストリーム用の <see cref="T:System.IO.StreamWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1233       <param name="stream">書き込まれるストリーム。 </param>
1234       <exception cref="T:System.ArgumentException">
1235         <paramref name="stream" /> が書き込み可能ではありません。 </exception>
1236       <exception cref="T:System.ArgumentNullException">
1237         <paramref name="stream" /> は null です。</exception>
1238     </member>
1239     <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
1240       <summary>指定したエンコーディングと既定のバッファー サイズを使用して、指定したストリーム用の <see cref="T:System.IO.StreamWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1241       <param name="stream">書き込まれるストリーム。</param>
1242       <param name="encoding">使用する文字エンコーディング。 </param>
1243       <exception cref="T:System.ArgumentNullException">
1244         <paramref name="stream" /> または <paramref name="encoding" /> が null です。 </exception>
1245       <exception cref="T:System.ArgumentException">
1246         <paramref name="stream" /> が書き込み可能ではありません。</exception>
1247     </member>
1248     <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32)">
1249       <summary>指定したエンコーディングとバッファー サイズを使用して、指定したストリーム用の <see cref="T:System.IO.StreamWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1250       <param name="stream">書き込まれるストリーム。</param>
1251       <param name="encoding">使用する文字エンコーディング。</param>
1252       <param name="bufferSize">バイト単位のバッファー サイズ。 </param>
1253       <exception cref="T:System.ArgumentNullException">
1254         <paramref name="stream" /> または <paramref name="encoding" /> が null です。 </exception>
1255       <exception cref="T:System.ArgumentOutOfRangeException">
1256         <paramref name="bufferSize" /> が負の値です。 </exception>
1257       <exception cref="T:System.ArgumentException">
1258         <paramref name="stream" /> が書き込み可能ではありません。</exception>
1259     </member>
1260     <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)">
1261       <summary>指定した円コーディングとバッファー サイズを使用して、指定したストリーム用の <see cref="T:System.IO.StreamWriter" /> クラスの新しいインスタンスを初期化し、必要に応じて、ストリームを開いたままにします。</summary>
1262       <param name="stream">書き込まれるストリーム。</param>
1263       <param name="encoding">使用する文字エンコーディング。</param>
1264       <param name="bufferSize">バイト単位のバッファー サイズ。</param>
1265       <param name="leaveOpen">true to leave the stream open after the <see cref="T:System.IO.StreamWriter" /> object is disposed; otherwise, false.</param>
1266       <exception cref="T:System.ArgumentNullException">
1267         <paramref name="stream" /> または <paramref name="encoding" /> が null です。 </exception>
1268       <exception cref="T:System.ArgumentOutOfRangeException">
1269         <paramref name="bufferSize" /> が負の値です。 </exception>
1270       <exception cref="T:System.ArgumentException">
1271         <paramref name="stream" /> が書き込み可能ではありません。</exception>
1272     </member>
1273     <member name="P:System.IO.StreamWriter.AutoFlush">
1274       <summary>
1275         <see cref="M:System.IO.StreamWriter.Write(System.Char)" /> が呼び出されるたびに、<see cref="T:System.IO.StreamWriter" /> によって基になるストリームに対するバッファーをフラッシュするかどうかを示す値を取得または設定します。</summary>
1276       <returns>
1277         <see cref="T:System.IO.StreamWriter" /> に強制的にバッファーをフラッシュさせる場合は true。それ以外の場合は false。</returns>
1278       <filterpriority>1</filterpriority>
1279     </member>
1280     <member name="P:System.IO.StreamWriter.BaseStream">
1281       <summary>バッキング ストアと連結する、基になるストリームを取得します。</summary>
1282       <returns>この StreamWriter が書き込むストリーム。</returns>
1283       <filterpriority>2</filterpriority>
1284     </member>
1285     <member name="M:System.IO.StreamWriter.Dispose(System.Boolean)">
1286       <summary>
1287         <see cref="T:System.IO.StreamWriter" /> によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。</summary>
1288       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
1289       <exception cref="T:System.Text.EncoderFallbackException">現在のエンコードは、Unicode サロゲート ペアの片方の表示をサポートしていません。</exception>
1290     </member>
1291     <member name="P:System.IO.StreamWriter.Encoding">
1292       <summary>出力の書き込みに使用する <see cref="T:System.Text.Encoding" /> を取得します。</summary>
1293       <returns>現在のインスタンスのコンストラクターで指定した <see cref="T:System.Text.Encoding" />。エンコーディングを指定しなかった場合は、<see cref="T:System.Text.UTF8Encoding" />。</returns>
1294       <filterpriority>2</filterpriority>
1295     </member>
1296     <member name="M:System.IO.StreamWriter.Flush">
1297       <summary>現在のライターで使用したすべてのバッファーをクリアし、バッファー内のすべてのデータを基になるストリームに書き込みます。</summary>
1298       <exception cref="T:System.ObjectDisposedException">現在のライターがクローズされています。</exception>
1299       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1300       <exception cref="T:System.Text.EncoderFallbackException">現在のエンコードは、Unicode サロゲート ペアの片方の表示をサポートしていません。</exception>
1301       <filterpriority>1</filterpriority>
1302     </member>
1303     <member name="M:System.IO.StreamWriter.FlushAsync">
1304       <summary>このストリームのすべてのバッファーを非同期にクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
1305       <returns>非同期のフラッシュ操作を表すタスク。</returns>
1306       <exception cref="T:System.ObjectDisposedException">ストリームは破棄されています。</exception>
1307     </member>
1308     <member name="F:System.IO.StreamWriter.Null">
1309       <summary>バッキング ストアを持たない書き込み専用の StreamWriter を提供します。</summary>
1310       <filterpriority>1</filterpriority>
1311     </member>
1312     <member name="M:System.IO.StreamWriter.Write(System.Char)">
1313       <summary>ストリームに文字を書き込みます。</summary>
1314       <param name="value">ストリームに書き込む文字。</param>
1315       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。 </exception>
1316       <exception cref="T:System.ObjectDisposedException">
1317         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、現在のライターが閉じられています。 </exception>
1318       <exception cref="T:System.NotSupportedException">
1319         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、<see cref="T:System.IO.StreamWriter" /> がストリームの末尾にあるため、基になる固定サイズのストリームにバッファーの内容を書き込むことができません。</exception>
1320       <filterpriority>1</filterpriority>
1321     </member>
1322     <member name="M:System.IO.StreamWriter.Write(System.Char[])">
1323       <summary>ストリームに文字配列を書き込みます。</summary>
1324       <param name="buffer">書き込むデータを格納する文字配列。<paramref name="buffer" /> が null の場合は、何も書き込まれません。</param>
1325       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。 </exception>
1326       <exception cref="T:System.ObjectDisposedException">
1327         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、現在のライターが閉じられています。 </exception>
1328       <exception cref="T:System.NotSupportedException">
1329         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、<see cref="T:System.IO.StreamWriter" /> がストリームの末尾にあるため、基になる固定サイズのストリームにバッファーの内容を書き込むことができません。</exception>
1330       <filterpriority>1</filterpriority>
1331     </member>
1332     <member name="M:System.IO.StreamWriter.Write(System.Char[],System.Int32,System.Int32)">
1333       <summary>ストリームに文字配列の一部を書き込みます。</summary>
1334       <param name="buffer">書き込むデータを格納する文字配列。</param>
1335       <param name="index">データの読み取りを開始する、バッファー内の文字位置。</param>
1336       <param name="count">書き込む文字の最大数。 </param>
1337       <exception cref="T:System.ArgumentNullException">
1338         <paramref name="buffer" /> は null です。</exception>
1339       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。 </exception>
1340       <exception cref="T:System.ArgumentOutOfRangeException">
1341         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1342       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。 </exception>
1343       <exception cref="T:System.ObjectDisposedException">
1344         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、現在のライターが閉じられています。 </exception>
1345       <exception cref="T:System.NotSupportedException">
1346         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、<see cref="T:System.IO.StreamWriter" /> がストリームの末尾にあるため、基になる固定サイズのストリームにバッファーの内容を書き込むことができません。</exception>
1347       <filterpriority>1</filterpriority>
1348     </member>
1349     <member name="M:System.IO.StreamWriter.Write(System.String)">
1350       <summary>ストリームに文字列を書き込みます。</summary>
1351       <param name="value">ストリームに書き込む文字列。<paramref name="value" /> が null の場合は、何も書き込まれません。</param>
1352       <exception cref="T:System.ObjectDisposedException">
1353         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、現在のライターが閉じられています。 </exception>
1354       <exception cref="T:System.NotSupportedException">
1355         <see cref="P:System.IO.StreamWriter.AutoFlush" /> が true または <see cref="T:System.IO.StreamWriter" /> バッファーがいっぱいで、<see cref="T:System.IO.StreamWriter" /> がストリームの末尾にあるため、基になる固定サイズのストリームにバッファーの内容を書き込むことができません。</exception>
1356       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1357       <filterpriority>1</filterpriority>
1358     </member>
1359     <member name="M:System.IO.StreamWriter.WriteAsync(System.Char)">
1360       <summary>文字を非同期でストリームに書き込みます。</summary>
1361       <returns>非同期の書き込み操作を表すタスク。</returns>
1362       <param name="value">ストリームに書き込む文字。</param>
1363       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1364       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1365     </member>
1366     <member name="M:System.IO.StreamWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
1367       <summary>文字の部分配列をストリームに非同期で書き込みます。</summary>
1368       <returns>非同期の書き込み操作を表すタスク。</returns>
1369       <param name="buffer">書き込むデータを格納する文字配列。</param>
1370       <param name="index">データの読み取りを開始する、バッファー内の文字位置。</param>
1371       <param name="count">書き込む文字の最大数。</param>
1372       <exception cref="T:System.ArgumentNullException">
1373         <paramref name="buffer" /> は null です。</exception>
1374       <exception cref="T:System.ArgumentException">
1375         <paramref name="index" /> に <paramref name="count" /> を加算した値が、バッファーの長さを超えています。</exception>
1376       <exception cref="T:System.ArgumentOutOfRangeException">
1377         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1378       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1379       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1380     </member>
1381     <member name="M:System.IO.StreamWriter.WriteAsync(System.String)">
1382       <summary>文字列をストリームに非同期で書き込みます。</summary>
1383       <returns>非同期の書き込み操作を表すタスク。</returns>
1384       <param name="value">ストリームに書き込む文字列。<paramref name="value" /> が null の場合は、何も書き込まれません。</param>
1385       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1386       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1387     </member>
1388     <member name="M:System.IO.StreamWriter.WriteLineAsync">
1389       <summary>行終端記号をストリームに非同期で書き込みます。</summary>
1390       <returns>非同期の書き込み操作を表すタスク。</returns>
1391       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1392       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1393     </member>
1394     <member name="M:System.IO.StreamWriter.WriteLineAsync(System.Char)">
1395       <summary>非同期でストリームに文字を書き込み、続けて行終端記号を書き込みます。</summary>
1396       <returns>非同期の書き込み操作を表すタスク。</returns>
1397       <param name="value">ストリームに書き込む文字。</param>
1398       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1399       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1400     </member>
1401     <member name="M:System.IO.StreamWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
1402       <summary>文字の部分配列をストリームに非同期で書き込み、続けて行終端記号を書き込みます。</summary>
1403       <returns>非同期の書き込み操作を表すタスク。</returns>
1404       <param name="buffer">データの書き込み元の文字配列。</param>
1405       <param name="index">データの読み取りを開始する、バッファー内の文字位置。</param>
1406       <param name="count">書き込む文字の最大数。</param>
1407       <exception cref="T:System.ArgumentNullException">
1408         <paramref name="buffer" /> は null です。</exception>
1409       <exception cref="T:System.ArgumentException">
1410         <paramref name="index" /> に <paramref name="count" /> を加算した値が、バッファーの長さを超えています。</exception>
1411       <exception cref="T:System.ArgumentOutOfRangeException">
1412         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1413       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1414       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1415     </member>
1416     <member name="M:System.IO.StreamWriter.WriteLineAsync(System.String)">
1417       <summary>文字列を非同期でストリームに書き込み、続けて行終端記号を書き込みます。</summary>
1418       <returns>非同期の書き込み操作を表すタスク。</returns>
1419       <param name="value">書き込む文字列。値が null の場合は、行終端記号だけが書き込まれます。</param>
1420       <exception cref="T:System.ObjectDisposedException">ストリーム ライターは破棄されます。</exception>
1421       <exception cref="T:System.InvalidOperationException">ストリーム ライターは現在、前の書き込み操作で使用中です。</exception>
1422     </member>
1423     <member name="T:System.IO.StringReader">
1424       <summary>文字列から読み取る <see cref="T:System.IO.TextReader" /> を実装します。</summary>
1425       <filterpriority>2</filterpriority>
1426     </member>
1427     <member name="M:System.IO.StringReader.#ctor(System.String)">
1428       <summary>指定した文字列から読み取る <see cref="T:System.IO.StringReader" /> クラスの新しいインスタンスを初期化します。</summary>
1429       <param name="s">
1430         <see cref="T:System.IO.StringReader" /> を初期化する目的の文字列。</param>
1431       <exception cref="T:System.ArgumentNullException">
1432         <paramref name="s" /> パラメーターが null です。</exception>
1433     </member>
1434     <member name="M:System.IO.StringReader.Dispose(System.Boolean)">
1435       <summary>
1436         <see cref="T:System.IO.StringReader" /> によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。</summary>
1437       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
1438     </member>
1439     <member name="M:System.IO.StringReader.Peek">
1440       <summary>読み取り可能な次の文字を返しますが、その文字は使用されません。</summary>
1441       <returns>読み取り対象の次の文字を表す整数。使用できる文字がないか、ストリームがシークをサポートしていない場合は -1。</returns>
1442       <exception cref="T:System.ObjectDisposedException">現在のリーダーが閉じています。</exception>
1443       <filterpriority>2</filterpriority>
1444     </member>
1445     <member name="M:System.IO.StringReader.Read">
1446       <summary>入力文字列から次の文字を読み取り、1 文字分だけ文字位置を進めます。</summary>
1447       <returns>基になる文字列の次の文字。または使用できる文字がない場合は -1。</returns>
1448       <exception cref="T:System.ObjectDisposedException">現在のリーダーが閉じています。</exception>
1449       <filterpriority>2</filterpriority>
1450     </member>
1451     <member name="M:System.IO.StringReader.Read(System.Char[],System.Int32,System.Int32)">
1452       <summary>入力文字列から文字のブロックを読み取り、<paramref name="count" /> だけ文字位置を進めます。</summary>
1453       <returns>バッファーに読み取られた合計文字数。要求しただけの文字数を読み取ることができなかった場合、この値は要求した文字数より小さくなります。基になる文字列の末尾に到達した場合は 0 になることがあります。</returns>
1454       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1455       <param name="index">バッファー内の開始インデックス。</param>
1456       <param name="count">読み取る文字の数。</param>
1457       <exception cref="T:System.ArgumentNullException">
1458         <paramref name="buffer" /> は null なので、</exception>
1459       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
1460       <exception cref="T:System.ArgumentOutOfRangeException">
1461         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1462       <exception cref="T:System.ObjectDisposedException">現在のリーダーが閉じています。</exception>
1463       <filterpriority>2</filterpriority>
1464     </member>
1465     <member name="M:System.IO.StringReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
1466       <summary>指定した最大文字数を現在の文字列から非同期的に読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1467       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、文字列の末尾に到達した場合は 0 になることがあります。</returns>
1468       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1469       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1470       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに書き込む前に文字列の末尾に到達した場合、メソッドは制御を返します。</param>
1471       <exception cref="T:System.ArgumentNullException">
1472         <paramref name="buffer" /> は null なので、</exception>
1473       <exception cref="T:System.ArgumentOutOfRangeException">
1474         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1475       <exception cref="T:System.ArgumentException">
1476         <paramref name="index" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1477       <exception cref="T:System.ObjectDisposedException">文字列リーダーは破棄されています。</exception>
1478       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1479     </member>
1480     <member name="M:System.IO.StringReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
1481       <summary>指定した最大文字数を現在の文字列から非同期的に読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1482       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、文字列の末尾に到達した場合は 0 になることがあります。</returns>
1483       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1484       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1485       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに書き込む前に文字列の末尾に到達した場合、メソッドは制御を返します。</param>
1486       <exception cref="T:System.ArgumentNullException">
1487         <paramref name="buffer" /> は null なので、</exception>
1488       <exception cref="T:System.ArgumentOutOfRangeException">
1489         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1490       <exception cref="T:System.ArgumentException">
1491         <paramref name="index" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1492       <exception cref="T:System.ObjectDisposedException">文字列リーダーは破棄されています。</exception>
1493       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1494     </member>
1495     <member name="M:System.IO.StringReader.ReadLine">
1496       <summary>現在の文字列から 1 行分の文字を読み取り、そのデータを文字列として返します。</summary>
1497       <returns>現在の文字列の次の行。文字列の末尾に到達した場合は null。</returns>
1498       <exception cref="T:System.ObjectDisposedException">現在のリーダーが閉じています。</exception>
1499       <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
1500       <filterpriority>2</filterpriority>
1501     </member>
1502     <member name="M:System.IO.StringReader.ReadLineAsync">
1503       <summary>現在の文字列から非同期的に 1 行分の文字を読み取り、そのデータを文字列として返します。</summary>
1504       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、文字列リーダーの次の行が含まれます。または、すべての文字が読み取られた場合は null です。</returns>
1505       <exception cref="T:System.ArgumentOutOfRangeException">次の行の文字数が、<see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1506       <exception cref="T:System.ObjectDisposedException">文字列リーダーは破棄されています。</exception>
1507       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1508     </member>
1509     <member name="M:System.IO.StringReader.ReadToEnd">
1510       <summary>現在位置から文字列の末尾まですべての文字を読み取り、1 つの文字列として返します。</summary>
1511       <returns>基になる文字列の現在位置から末尾までの内容。</returns>
1512       <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
1513       <exception cref="T:System.ObjectDisposedException">現在のリーダーが閉じています。</exception>
1514       <filterpriority>2</filterpriority>
1515     </member>
1516     <member name="M:System.IO.StringReader.ReadToEndAsync">
1517       <summary>現在位置から文字列の末尾まですべての文字を非同期的に読み取り、1 つの文字列として返します。</summary>
1518       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、現在位置から文字列の末尾までの文字から成る文字列が含まれます。</returns>
1519       <exception cref="T:System.ArgumentOutOfRangeException">文字数が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1520       <exception cref="T:System.ObjectDisposedException">文字列リーダーは破棄されています。</exception>
1521       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1522     </member>
1523     <member name="T:System.IO.StringWriter">
1524       <summary>文字列に情報を書き込む <see cref="T:System.IO.TextWriter" /> を実装します。情報は、基になる <see cref="T:System.Text.StringBuilder" /> に格納されます。</summary>
1525       <filterpriority>2</filterpriority>
1526     </member>
1527     <member name="M:System.IO.StringWriter.#ctor">
1528       <summary>
1529         <see cref="T:System.IO.StringWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1530     </member>
1531     <member name="M:System.IO.StringWriter.#ctor(System.IFormatProvider)">
1532       <summary>指定した書式コントロールで <see cref="T:System.IO.StringWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1533       <param name="formatProvider">書式を制御する <see cref="T:System.IFormatProvider" /> オブジェクト。</param>
1534     </member>
1535     <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder)">
1536       <summary>指定した <see cref="T:System.Text.StringBuilder" /> への書き込みを行う <see cref="T:System.IO.StringWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1537       <param name="sb">書き込む StringBuilder。</param>
1538       <exception cref="T:System.ArgumentNullException">
1539         <paramref name="sb" /> は null なので、</exception>
1540     </member>
1541     <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder,System.IFormatProvider)">
1542       <summary>指定した <see cref="T:System.Text.StringBuilder" /> に書き込みを行い、指定した書式プロバイダーを持つ <see cref="T:System.IO.StringWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1543       <param name="sb">書き込む StringBuilder。</param>
1544       <param name="formatProvider">書式を制御する <see cref="T:System.IFormatProvider" /> オブジェクト。</param>
1545       <exception cref="T:System.ArgumentNullException">
1546         <paramref name="sb" /> は null なので、</exception>
1547     </member>
1548     <member name="M:System.IO.StringWriter.Dispose(System.Boolean)">
1549       <summary>
1550         <see cref="T:System.IO.StringWriter" /> によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。</summary>
1551       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
1552     </member>
1553     <member name="P:System.IO.StringWriter.Encoding">
1554       <summary>出力の書き込みに使用する <see cref="T:System.Text.Encoding" /> を取得します。</summary>
1555       <returns>出力の書き込み時に適用する Encoding。</returns>
1556       <filterpriority>1</filterpriority>
1557     </member>
1558     <member name="M:System.IO.StringWriter.FlushAsync">
1559       <summary>現在のライターのすべてのバッファーを非同期にクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
1560       <returns>非同期のフラッシュ操作を表すタスク。</returns>
1561     </member>
1562     <member name="M:System.IO.StringWriter.GetStringBuilder">
1563       <summary>基になる <see cref="T:System.Text.StringBuilder" /> を返します。</summary>
1564       <returns>基になる StringBuilder。</returns>
1565       <filterpriority>2</filterpriority>
1566     </member>
1567     <member name="M:System.IO.StringWriter.ToString">
1568       <summary>現在の StringWriter に書き込まれた文字を格納している文字列を返します。</summary>
1569       <returns>現在の StringWriter に書き込まれた文字を格納している文字列。</returns>
1570       <filterpriority>2</filterpriority>
1571     </member>
1572     <member name="M:System.IO.StringWriter.Write(System.Char)">
1573       <summary>文字列に文字を書き込みます。</summary>
1574       <param name="value">書き込む文字。</param>
1575       <exception cref="T:System.ObjectDisposedException">ライターが閉じられました。</exception>
1576       <filterpriority>2</filterpriority>
1577     </member>
1578     <member name="M:System.IO.StringWriter.Write(System.Char[],System.Int32,System.Int32)">
1579       <summary>文字配列の一部を文字列に書き込みます。</summary>
1580       <param name="buffer">データの書き込み元の文字配列。</param>
1581       <param name="index">データの読み取りを開始する、バッファー内の位置。</param>
1582       <param name="count">書き込む文字の最大数。</param>
1583       <exception cref="T:System.ArgumentNullException">
1584         <paramref name="buffer" /> は null なので、</exception>
1585       <exception cref="T:System.ArgumentOutOfRangeException">
1586         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1587       <exception cref="T:System.ArgumentException">(<paramref name="index" /> + <paramref name="count" />)&gt; <paramref name="buffer" />。Length.</exception>
1588       <exception cref="T:System.ObjectDisposedException">ライターが閉じられました。</exception>
1589       <filterpriority>2</filterpriority>
1590     </member>
1591     <member name="M:System.IO.StringWriter.Write(System.String)">
1592       <summary>現在の文字列に文字列を書き込みます。</summary>
1593       <param name="value">書き込む文字列。</param>
1594       <exception cref="T:System.ObjectDisposedException">ライターが閉じられました。</exception>
1595       <filterpriority>2</filterpriority>
1596     </member>
1597     <member name="M:System.IO.StringWriter.WriteAsync(System.Char)">
1598       <summary>文字列に文字を非同期的に書き込みます。</summary>
1599       <returns>非同期の書き込み操作を表すタスク。</returns>
1600       <param name="value">文字列に書き込む文字。</param>
1601       <exception cref="T:System.ObjectDisposedException">文字列ライターは破棄されます。</exception>
1602       <exception cref="T:System.InvalidOperationException">文字列ライターは現在、前の書き込み操作で使用中です。</exception>
1603     </member>
1604     <member name="M:System.IO.StringWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
1605       <summary>文字の部分配列を文字列に非同期で書き込みます。</summary>
1606       <returns>非同期の書き込み操作を表すタスク。</returns>
1607       <param name="buffer">データの書き込み元の文字配列。</param>
1608       <param name="index">データの読み取りを開始する、バッファー内の位置。</param>
1609       <param name="count">書き込む文字の最大数。</param>
1610       <exception cref="T:System.ArgumentNullException">
1611         <paramref name="buffer" /> は null なので、</exception>
1612       <exception cref="T:System.ArgumentException">
1613         <paramref name="index" /> に <paramref name="count" /> を加算した値が、バッファーの長さを超えています。</exception>
1614       <exception cref="T:System.ArgumentOutOfRangeException">
1615         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1616       <exception cref="T:System.ObjectDisposedException">文字列ライターは破棄されます。</exception>
1617       <exception cref="T:System.InvalidOperationException">文字列ライターは現在、前の書き込み操作で使用中です。</exception>
1618     </member>
1619     <member name="M:System.IO.StringWriter.WriteAsync(System.String)">
1620       <summary>現在の文字列に文字列を非同期的に書き込みます。</summary>
1621       <returns>非同期の書き込み操作を表すタスク。</returns>
1622       <param name="value">書き込む文字列。<paramref name="value" /> が null の場合は、何もテキスト ストリームに書き込みません。</param>
1623       <exception cref="T:System.ObjectDisposedException">文字列ライターは破棄されます。</exception>
1624       <exception cref="T:System.InvalidOperationException">文字列ライターは現在、前の書き込み操作で使用中です。</exception>
1625     </member>
1626     <member name="M:System.IO.StringWriter.WriteLineAsync(System.Char)">
1627       <summary>非同期で文字列に文字を書き込み、続けて行終端記号を書き込みます。</summary>
1628       <returns>非同期の書き込み操作を表すタスク。</returns>
1629       <param name="value">文字列に書き込む文字。</param>
1630       <exception cref="T:System.ObjectDisposedException">文字列ライターは破棄されます。</exception>
1631       <exception cref="T:System.InvalidOperationException">文字列ライターは現在、前の書き込み操作で使用中です。</exception>
1632     </member>
1633     <member name="M:System.IO.StringWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
1634       <summary>文字の部分配列を文字列に非同期で書き込み、続けて行終端記号を書き込みます。</summary>
1635       <returns>非同期の書き込み操作を表すタスク。</returns>
1636       <param name="buffer">データの書き込み元の文字配列。</param>
1637       <param name="index">データの読み取りを開始する、バッファー内の位置。</param>
1638       <param name="count">書き込む文字の最大数。</param>
1639       <exception cref="T:System.ArgumentNullException">
1640         <paramref name="buffer" /> は null なので、</exception>
1641       <exception cref="T:System.ArgumentException">
1642         <paramref name="index" /> に <paramref name="count" /> を加算した値が、バッファーの長さを超えています。</exception>
1643       <exception cref="T:System.ArgumentOutOfRangeException">
1644         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1645       <exception cref="T:System.ObjectDisposedException">文字列ライターは破棄されます。</exception>
1646       <exception cref="T:System.InvalidOperationException">文字列ライターは現在、前の書き込み操作で使用中です。</exception>
1647     </member>
1648     <member name="M:System.IO.StringWriter.WriteLineAsync(System.String)">
1649       <summary>現在の文字列に非同期で文字列を書き込み、続けて行終端記号を書き込みます。</summary>
1650       <returns>非同期の書き込み操作を表すタスク。</returns>
1651       <param name="value">書き込む文字列。値が null の場合は、行終端記号だけが書き込まれます。</param>
1652       <exception cref="T:System.ObjectDisposedException">文字列ライターは破棄されます。</exception>
1653       <exception cref="T:System.InvalidOperationException">文字列ライターは現在、前の書き込み操作で使用中です。</exception>
1654     </member>
1655     <member name="T:System.IO.TextReader">
1656       <summary>一連の文字を読み取ることができるリーダーを表します。</summary>
1657       <filterpriority>2</filterpriority>
1658     </member>
1659     <member name="M:System.IO.TextReader.#ctor">
1660       <summary>
1661         <see cref="T:System.IO.TextReader" /> クラスの新しいインスタンスを初期化します。</summary>
1662     </member>
1663     <member name="M:System.IO.TextReader.Dispose">
1664       <summary>この <see cref="T:System.IO.TextReader" /> オブジェクトによって使用されているすべてのリソースを解放します。</summary>
1665     </member>
1666     <member name="M:System.IO.TextReader.Dispose(System.Boolean)">
1667       <summary>
1668         <see cref="T:System.IO.TextReader" /> で使用されているアンマネージ リソースを解放し、オプションでマネージ リソースを解放します。</summary>
1669       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
1670     </member>
1671     <member name="F:System.IO.TextReader.Null">
1672       <summary>読み取り対象のデータを TextReader に提供しません。</summary>
1673       <filterpriority>1</filterpriority>
1674     </member>
1675     <member name="M:System.IO.TextReader.Peek">
1676       <summary>リーダーや文字の読み取り元の状態を変更せずに、次の文字を読み取ります。リーダーから実際に文字を読み取らずに次の文字を返します。</summary>
1677       <returns>読み取り対象の次の文字を表す整数。使用できる文字がないか、リーダーがシークをサポートしていない場合は -1。</returns>
1678       <exception cref="T:System.ObjectDisposedException">
1679         <see cref="T:System.IO.TextReader" /> が閉じています。</exception>
1680       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1681       <filterpriority>1</filterpriority>
1682     </member>
1683     <member name="M:System.IO.TextReader.Read">
1684       <summary>テキスト リーダーから次の文字を読み取り、1 文字分だけ文字位置を進めます。</summary>
1685       <returns>テキスト リーダーからの次の文字。それ以上読み取り可能な文字がない場合は -1。既定の実装では、-1 が返されます。</returns>
1686       <exception cref="T:System.ObjectDisposedException">
1687         <see cref="T:System.IO.TextReader" /> が閉じています。</exception>
1688       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1689       <filterpriority>1</filterpriority>
1690     </member>
1691     <member name="M:System.IO.TextReader.Read(System.Char[],System.Int32,System.Int32)">
1692       <summary>指定した最大文字数を現在のリーダーから読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1693       <returns>読み取られた文字数。この数値は、リーダー内に使用できるデータがあるかどうかによって異なりますが、<paramref name="count" /> 以下の数値になります。読み取り対象の文字がない場合にこのメソッドを呼び出すと、0 (ゼロ) が返されます。</returns>
1694       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1695       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1696       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに読み取る前にリーダーの末尾に到達した場合、メソッドは制御を返します。</param>
1697       <exception cref="T:System.ArgumentNullException">
1698         <paramref name="buffer" /> は null です。</exception>
1699       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。 </exception>
1700       <exception cref="T:System.ArgumentOutOfRangeException">
1701         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1702       <exception cref="T:System.ObjectDisposedException">
1703         <see cref="T:System.IO.TextReader" /> が閉じています。</exception>
1704       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1705       <filterpriority>1</filterpriority>
1706     </member>
1707     <member name="M:System.IO.TextReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
1708       <summary>指定した最大文字数を現在のテキスト リーダーから非同期に読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1709       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、テキストの末尾に到達した場合は 0 になることがあります。</returns>
1710       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1711       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1712       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに読み取る前にテキストの末尾に到達した場合は、現在のメソッドが返ります。</param>
1713       <exception cref="T:System.ArgumentNullException">
1714         <paramref name="buffer" /> は null です。</exception>
1715       <exception cref="T:System.ArgumentOutOfRangeException">
1716         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1717       <exception cref="T:System.ArgumentException">
1718         <paramref name="index" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1719       <exception cref="T:System.ObjectDisposedException">テキスト リーダーは破棄されています。</exception>
1720       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1721     </member>
1722     <member name="M:System.IO.TextReader.ReadBlock(System.Char[],System.Int32,System.Int32)">
1723       <summary>指定した最大文字数を現在のテキスト リーダーから読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1724       <returns>読み取られた文字数。この数値は、すべての入力文字が読み取られたかどうかによって異なりますが、<paramref name="count" /> 以下の数値になります。</returns>
1725       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> -1) までの値が、現在のソースから読み取られた文字に置き換えられています。</param>
1726       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1727       <param name="count">読み取り対象の最大文字数。</param>
1728       <exception cref="T:System.ArgumentNullException">
1729         <paramref name="buffer" /> は null です。</exception>
1730       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。 </exception>
1731       <exception cref="T:System.ArgumentOutOfRangeException">
1732         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1733       <exception cref="T:System.ObjectDisposedException">
1734         <see cref="T:System.IO.TextReader" /> が閉じています。</exception>
1735       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1736       <filterpriority>2</filterpriority>
1737     </member>
1738     <member name="M:System.IO.TextReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
1739       <summary>指定した最大文字数を現在のテキスト リーダーから非同期に読み取り、バッファーの指定したインデックス位置にそのデータを書き込みます。</summary>
1740       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、バッファーに読み込まれるバイトの合計数が含まれます。現在使用できるバイト数が要求した数より小さい場合、結果の値は要求したバイト数より小さくなることがあります。また、テキストの末尾に到達した場合は 0 になることがあります。</returns>
1741       <param name="buffer">このメソッドが戻るとき、指定した文字配列の <paramref name="index" /> から (<paramref name="index" /> + <paramref name="count" /> - 1) までの値が、現在のソースから読み取られた文字に置き換えられます。</param>
1742       <param name="index">書き込みを開始する <paramref name="buffer" /> 内の位置。</param>
1743       <param name="count">読み取り対象の最大文字数。指定された文字数をバッファーに読み取る前にテキストの末尾に到達した場合は、現在のメソッドが返ります。</param>
1744       <exception cref="T:System.ArgumentNullException">
1745         <paramref name="buffer" /> は null です。</exception>
1746       <exception cref="T:System.ArgumentOutOfRangeException">
1747         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1748       <exception cref="T:System.ArgumentException">
1749         <paramref name="index" /> と <paramref name="count" /> の合計値が、バッファー長より大きい値です。</exception>
1750       <exception cref="T:System.ObjectDisposedException">テキスト リーダーは破棄されています。</exception>
1751       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1752     </member>
1753     <member name="M:System.IO.TextReader.ReadLine">
1754       <summary>テキスト リーダーから 1 行分の文字を読み取り、そのデータを文字列として返します。</summary>
1755       <returns>リーダーの次の行。またはすべての文字が読み取られた場合は null。</returns>
1756       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1757       <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
1758       <exception cref="T:System.ObjectDisposedException">
1759         <see cref="T:System.IO.TextReader" /> が閉じています。</exception>
1760       <exception cref="T:System.ArgumentOutOfRangeException">次の行の文字数が、<see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1761       <filterpriority>1</filterpriority>
1762     </member>
1763     <member name="M:System.IO.TextReader.ReadLineAsync">
1764       <summary>1 行分の文字を非同期的に読み取り、そのデータを文字列として返します。</summary>
1765       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、テキスト リーダーの次の行が含まれます。または、すべての文字が読み取られた場合は null です。</returns>
1766       <exception cref="T:System.ArgumentOutOfRangeException">次の行の文字数が、<see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1767       <exception cref="T:System.ObjectDisposedException">テキスト リーダーは破棄されています。</exception>
1768       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1769     </member>
1770     <member name="M:System.IO.TextReader.ReadToEnd">
1771       <summary>テキスト リーダーの現在位置から末尾まですべての文字を読み取り、1 つの文字列として返します。</summary>
1772       <returns>テキスト リーダーの現在位置から末尾までのすべての文字を含む文字列。</returns>
1773       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1774       <exception cref="T:System.ObjectDisposedException">
1775         <see cref="T:System.IO.TextReader" /> が閉じています。</exception>
1776       <exception cref="T:System.OutOfMemoryException">返される文字列用のバッファーを割り当てるためにはメモリが不足しています。</exception>
1777       <exception cref="T:System.ArgumentOutOfRangeException">次の行の文字数が、<see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1778       <filterpriority>1</filterpriority>
1779     </member>
1780     <member name="M:System.IO.TextReader.ReadToEndAsync">
1781       <summary>テキスト リーダーの現在位置から末尾まですべての文字を非同期的に読み取り、1 つの文字列として返します。</summary>
1782       <returns>非同期の読み取り操作を表すタスク。<paramref name="TResult" /> パラメーターの値には、現在位置からテキスト リーダーの末尾までの文字から成る文字列が含まれます。</returns>
1783       <exception cref="T:System.ArgumentOutOfRangeException">文字数が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1784       <exception cref="T:System.ObjectDisposedException">テキスト リーダーは破棄されています。</exception>
1785       <exception cref="T:System.InvalidOperationException">リーダーは現在、前の読み取り操作で使用中です。</exception>
1786     </member>
1787     <member name="T:System.IO.TextWriter">
1788       <summary>一連の文字を書き込むことができるライターを表します。このクラスは抽象クラスです。</summary>
1789       <filterpriority>2</filterpriority>
1790     </member>
1791     <member name="M:System.IO.TextWriter.#ctor">
1792       <summary>
1793         <see cref="T:System.IO.TextWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1794     </member>
1795     <member name="M:System.IO.TextWriter.#ctor(System.IFormatProvider)">
1796       <summary>指定した書式プロバイダーで <see cref="T:System.IO.TextWriter" /> クラスの新しいインスタンスを初期化します。</summary>
1797       <param name="formatProvider">書式を制御する <see cref="T:System.IFormatProvider" /> オブジェクト。</param>
1798     </member>
1799     <member name="F:System.IO.TextWriter.CoreNewLine">
1800       <summary>この TextWriter で使用する改行文字を格納します。</summary>
1801     </member>
1802     <member name="M:System.IO.TextWriter.Dispose">
1803       <summary>この <see cref="T:System.IO.TextWriter" /> オブジェクトによって使用されているすべてのリソースを解放します。</summary>
1804     </member>
1805     <member name="M:System.IO.TextWriter.Dispose(System.Boolean)">
1806       <summary>
1807         <see cref="T:System.IO.TextWriter" /> で使用されているアンマネージ リソースを解放し、オプションでマネージ リソースを解放します。</summary>
1808       <param name="disposing">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>
1809     </member>
1810     <member name="P:System.IO.TextWriter.Encoding">
1811       <summary>派生クラスによってオーバーライドされると、出力を書き込む文字エンコーディングを返します。</summary>
1812       <returns>出力の書き込み時に適用する文字エンコーディング。</returns>
1813       <filterpriority>1</filterpriority>
1814     </member>
1815     <member name="M:System.IO.TextWriter.Flush">
1816       <summary>現在のライターのすべてのバッファーをクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
1817       <filterpriority>1</filterpriority>
1818     </member>
1819     <member name="M:System.IO.TextWriter.FlushAsync">
1820       <summary>現在のライターのすべてのバッファーを非同期にクリアし、バッファー内のデータを基になるデバイスに書き込みます。</summary>
1821       <returns>非同期のフラッシュ操作を表すタスク。</returns>
1822       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
1823       <exception cref="T:System.InvalidOperationException">ライターは現在、前の書き込み操作で使用中です。</exception>
1824     </member>
1825     <member name="P:System.IO.TextWriter.FormatProvider">
1826       <summary>書式を制御するオブジェクトを取得します。</summary>
1827       <returns>特定のカルチャ設定の <see cref="T:System.IFormatProvider" /> オブジェクト、または他のカルチャ設定が指定されていない場合は現在のカルチャ設定の書式。</returns>
1828       <filterpriority>2</filterpriority>
1829     </member>
1830     <member name="P:System.IO.TextWriter.NewLine">
1831       <summary>現在の TextWriter で使用される行終端文字列を取得または設定します。</summary>
1832       <returns>現在の TextWriter で使用する行終端文字列。</returns>
1833       <filterpriority>2</filterpriority>
1834     </member>
1835     <member name="F:System.IO.TextWriter.Null">
1836       <summary>バッキング ストアを持たない書き込み専用の TextWriter を提供します。</summary>
1837       <filterpriority>1</filterpriority>
1838     </member>
1839     <member name="M:System.IO.TextWriter.Write(System.Boolean)">
1840       <summary>Boolean 値のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1841       <param name="value">書き込む Boolean 値。</param>
1842       <exception cref="T:System.ObjectDisposedException">
1843         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1844       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1845       <filterpriority>1</filterpriority>
1846     </member>
1847     <member name="M:System.IO.TextWriter.Write(System.Char)">
1848       <summary>文字をテキスト文字列またはストリームに書き込みます。</summary>
1849       <param name="value">テキスト ストリームに書き込む文字。</param>
1850       <exception cref="T:System.ObjectDisposedException">
1851         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1852       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1853       <filterpriority>1</filterpriority>
1854     </member>
1855     <member name="M:System.IO.TextWriter.Write(System.Char[])">
1856       <summary>文字配列をテキスト文字列またはストリームに書き込みます。</summary>
1857       <param name="buffer">テキスト ストリームに書き込む文字配列。</param>
1858       <exception cref="T:System.ObjectDisposedException">
1859         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1860       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1861       <filterpriority>1</filterpriority>
1862     </member>
1863     <member name="M:System.IO.TextWriter.Write(System.Char[],System.Int32,System.Int32)">
1864       <summary>文字の部分配列をテキスト文字列またはストリームに書き込みます。</summary>
1865       <param name="buffer">データの書き込み元の文字配列。</param>
1866       <param name="index">データの取得を開始する、バッファー内の文字位置。</param>
1867       <param name="count">書き込む文字数。</param>
1868       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
1869       <exception cref="T:System.ArgumentNullException">
1870         <paramref name="buffer" /> パラメーターが null です。</exception>
1871       <exception cref="T:System.ArgumentOutOfRangeException">
1872         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
1873       <exception cref="T:System.ObjectDisposedException">
1874         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1875       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1876       <filterpriority>1</filterpriority>
1877     </member>
1878     <member name="M:System.IO.TextWriter.Write(System.Decimal)">
1879       <summary>10 進値のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1880       <param name="value">書き込む 10 進値。</param>
1881       <exception cref="T:System.ObjectDisposedException">
1882         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1883       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1884       <filterpriority>1</filterpriority>
1885     </member>
1886     <member name="M:System.IO.TextWriter.Write(System.Double)">
1887       <summary>8 バイト浮動小数点値のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1888       <param name="value">書き込む 8 バイト浮動小数点値。</param>
1889       <exception cref="T:System.ObjectDisposedException">
1890         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1891       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1892       <filterpriority>1</filterpriority>
1893     </member>
1894     <member name="M:System.IO.TextWriter.Write(System.Int32)">
1895       <summary>4 バイト符号付き整数のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1896       <param name="value">書き込む 4 バイト符号付き整数。</param>
1897       <exception cref="T:System.ObjectDisposedException">
1898         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1899       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1900       <filterpriority>1</filterpriority>
1901     </member>
1902     <member name="M:System.IO.TextWriter.Write(System.Int64)">
1903       <summary>8 バイト符号付き整数のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1904       <param name="value">書き込む 8 バイト符号付き整数。</param>
1905       <exception cref="T:System.ObjectDisposedException">
1906         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1907       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1908       <filterpriority>1</filterpriority>
1909     </member>
1910     <member name="M:System.IO.TextWriter.Write(System.Object)">
1911       <summary>オブジェクトで ToString メソッドを呼び出して、そのオブジェクトのテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1912       <param name="value">書き込むオブジェクト。</param>
1913       <exception cref="T:System.ObjectDisposedException">
1914         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1915       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1916       <filterpriority>1</filterpriority>
1917     </member>
1918     <member name="M:System.IO.TextWriter.Write(System.Single)">
1919       <summary>4 バイト浮動小数点値のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1920       <param name="value">書き込む 4 バイト浮動小数点値。</param>
1921       <exception cref="T:System.ObjectDisposedException">
1922         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1923       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1924       <filterpriority>1</filterpriority>
1925     </member>
1926     <member name="M:System.IO.TextWriter.Write(System.String)">
1927       <summary>文字列をテキスト文字列またはストリームに書き込みます。</summary>
1928       <param name="value">書き込む文字列。</param>
1929       <exception cref="T:System.ObjectDisposedException">
1930         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1931       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1932       <filterpriority>1</filterpriority>
1933     </member>
1934     <member name="M:System.IO.TextWriter.Write(System.String,System.Object)">
1935       <summary>
1936         <see cref="M:System.String.Format(System.String,System.Object)" /> メソッドと同じセマンティクスを使用して、書式設定された文字列をテキスト文字列またはストリームに書き込みます。</summary>
1937       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
1938       <param name="arg0">書式設定および書き込みをするオブジェクト。</param>
1939       <exception cref="T:System.ArgumentNullException">
1940         <paramref name="format" /> は null です。</exception>
1941       <exception cref="T:System.ObjectDisposedException">
1942         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1943       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1944       <exception cref="T:System.FormatException">
1945         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式指定項目のインデックスが、0 (ゼロ) より小さいか、書式設定されるオブジェクトの数 (このメソッド オーバーロードでは 1) 以上です。</exception>
1946       <filterpriority>1</filterpriority>
1947     </member>
1948     <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object)">
1949       <summary>
1950         <see cref="M:System.String.Format(System.String,System.Object,System.Object)" /> メソッドと同じセマンティクスを使用して、書式設定された文字列をテキスト文字列またはストリームに書き込みます。</summary>
1951       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
1952       <param name="arg0">書式設定および書き込みをする最初のオブジェクト。</param>
1953       <param name="arg1">書式設定および書き込みをする 2 番目のオブジェクト。</param>
1954       <exception cref="T:System.ArgumentNullException">
1955         <paramref name="format" /> は null です。</exception>
1956       <exception cref="T:System.ObjectDisposedException">
1957         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1958       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1959       <exception cref="T:System.FormatException">
1960         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式指定項目のインデックスが、0 (ゼロ) より小さいか、書式設定されるオブジェクトの数 (このメソッド オーバーロードでは 2) 以上です。</exception>
1961       <filterpriority>1</filterpriority>
1962     </member>
1963     <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object,System.Object)">
1964       <summary>
1965         <see cref="M:System.String.Format(System.String,System.Object,System.Object,System.Object)" /> メソッドと同じセマンティクスを使用して、書式設定された文字列をテキスト文字列またはストリームに書き込みます。</summary>
1966       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
1967       <param name="arg0">書式設定および書き込みをする最初のオブジェクト。</param>
1968       <param name="arg1">書式設定および書き込みをする 2 番目のオブジェクト。</param>
1969       <param name="arg2">書式設定および書き込みをする 3 番目のオブジェクト。</param>
1970       <exception cref="T:System.ArgumentNullException">
1971         <paramref name="format" /> は null です。</exception>
1972       <exception cref="T:System.ObjectDisposedException">
1973         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1974       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1975       <exception cref="T:System.FormatException">
1976         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式指定項目のインデックスが、0 (ゼロ) より小さいか、書式設定されるオブジェクトの数 (このメソッド オーバーロードでは 3) 以上です。</exception>
1977       <filterpriority>1</filterpriority>
1978     </member>
1979     <member name="M:System.IO.TextWriter.Write(System.String,System.Object[])">
1980       <summary>
1981         <see cref="M:System.String.Format(System.String,System.Object[])" /> メソッドと同じセマンティクスを使用して、書式設定された文字列をテキスト文字列またはストリームに書き込みます。</summary>
1982       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
1983       <param name="arg">書式設定および書き込みをする 0 個以上のオブジェクトを含むオブジェクト配列。</param>
1984       <exception cref="T:System.ArgumentNullException">
1985         <paramref name="format" /> または <paramref name="arg" /> が null です。</exception>
1986       <exception cref="T:System.ObjectDisposedException">
1987         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1988       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1989       <exception cref="T:System.FormatException">
1990         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式項目のインデックスが 0 より小さいか、<paramref name="arg" /> 配列の長さ以上です。</exception>
1991       <filterpriority>1</filterpriority>
1992     </member>
1993     <member name="M:System.IO.TextWriter.Write(System.UInt32)">
1994       <summary>4 バイト符号なし整数のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
1995       <param name="value">書き込む 4 バイト符号なし整数。</param>
1996       <exception cref="T:System.ObjectDisposedException">
1997         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
1998       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
1999       <filterpriority>1</filterpriority>
2000     </member>
2001     <member name="M:System.IO.TextWriter.Write(System.UInt64)">
2002       <summary>8 バイト符号なし整数のテキスト形式をテキスト文字列またはストリームに書き込みます。</summary>
2003       <param name="value">書き込む 8 バイト符号なし整数。</param>
2004       <exception cref="T:System.ObjectDisposedException">
2005         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2006       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2007       <filterpriority>1</filterpriority>
2008     </member>
2009     <member name="M:System.IO.TextWriter.WriteAsync(System.Char)">
2010       <summary>文字をテキスト文字列またはストリームに非同期的に書き込みます。</summary>
2011       <returns>非同期の書き込み操作を表すタスク。</returns>
2012       <param name="value">テキスト ストリームに書き込む文字。</param>
2013       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2014       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2015     </member>
2016     <member name="M:System.IO.TextWriter.WriteAsync(System.Char[])">
2017       <summary>文字配列をテキスト文字列またはストリームに非同期的に書き込みます。</summary>
2018       <returns>非同期の書き込み操作を表すタスク。</returns>
2019       <param name="buffer">テキスト ストリームに書き込む文字配列。<paramref name="buffer" /> が null の場合は、何も書き込まれません。</param>
2020       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2021       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2022     </member>
2023     <member name="M:System.IO.TextWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
2024       <summary>文字の部分配列をテキスト文字列またはストリームに非同期的に書き込みます。</summary>
2025       <returns>非同期の書き込み操作を表すタスク。</returns>
2026       <param name="buffer">データの書き込み元の文字配列。</param>
2027       <param name="index">データの取得を開始する、バッファー内の文字位置。</param>
2028       <param name="count">書き込む文字数。</param>
2029       <exception cref="T:System.ArgumentNullException">
2030         <paramref name="buffer" /> は null です。</exception>
2031       <exception cref="T:System.ArgumentException">
2032         <paramref name="index" /> に <paramref name="count" /> を加算した値が、バッファーの長さを超えています。</exception>
2033       <exception cref="T:System.ArgumentOutOfRangeException">
2034         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
2035       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2036       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2037     </member>
2038     <member name="M:System.IO.TextWriter.WriteAsync(System.String)">
2039       <summary>文字列をテキスト文字列またはストリームに非同期的に書き込みます。</summary>
2040       <returns>非同期の書き込み操作を表すタスク。</returns>
2041       <param name="value">書き込む文字列。<paramref name="value" /> が null の場合は、何もテキスト ストリームに書き込みません。</param>
2042       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2043       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2044     </member>
2045     <member name="M:System.IO.TextWriter.WriteLine">
2046       <summary>行終端記号をテキスト文字列またはストリームに書き込みます。</summary>
2047       <exception cref="T:System.ObjectDisposedException">
2048         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2049       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2050       <filterpriority>1</filterpriority>
2051     </member>
2052     <member name="M:System.IO.TextWriter.WriteLine(System.Boolean)">
2053       <summary>Boolean 値のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2054       <param name="value">書き込む Boolean 値。</param>
2055       <exception cref="T:System.ObjectDisposedException">
2056         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2057       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2058       <filterpriority>1</filterpriority>
2059     </member>
2060     <member name="M:System.IO.TextWriter.WriteLine(System.Char)">
2061       <summary>文字をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2062       <param name="value">テキスト ストリームに書き込む文字。</param>
2063       <exception cref="T:System.ObjectDisposedException">
2064         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2065       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2066       <filterpriority>1</filterpriority>
2067     </member>
2068     <member name="M:System.IO.TextWriter.WriteLine(System.Char[])">
2069       <summary>文字の配列をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2070       <param name="buffer">データの読み取り元の文字配列。</param>
2071       <exception cref="T:System.ObjectDisposedException">
2072         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2073       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2074       <filterpriority>1</filterpriority>
2075     </member>
2076     <member name="M:System.IO.TextWriter.WriteLine(System.Char[],System.Int32,System.Int32)">
2077       <summary>文字の部分配列をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2078       <param name="buffer">データの読み取り元の文字配列。</param>
2079       <param name="index">データの読み込みを開始する、<paramref name="buffer" /> 内の文字の位置。</param>
2080       <param name="count">書き込む文字の最大数。</param>
2081       <exception cref="T:System.ArgumentException">バッファー長から <paramref name="index" /> を差し引いた値が <paramref name="count" /> より小さい値です。</exception>
2082       <exception cref="T:System.ArgumentNullException">
2083         <paramref name="buffer" /> パラメーターが null です。</exception>
2084       <exception cref="T:System.ArgumentOutOfRangeException">
2085         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
2086       <exception cref="T:System.ObjectDisposedException">
2087         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2088       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2089       <filterpriority>1</filterpriority>
2090     </member>
2091     <member name="M:System.IO.TextWriter.WriteLine(System.Decimal)">
2092       <summary>10 進値のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2093       <param name="value">書き込む 10 進値。</param>
2094       <exception cref="T:System.ObjectDisposedException">
2095         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2096       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2097       <filterpriority>1</filterpriority>
2098     </member>
2099     <member name="M:System.IO.TextWriter.WriteLine(System.Double)">
2100       <summary>8 バイト浮動小数点値のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2101       <param name="value">書き込む 8 バイト浮動小数点値。</param>
2102       <exception cref="T:System.ObjectDisposedException">
2103         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2104       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2105       <filterpriority>1</filterpriority>
2106     </member>
2107     <member name="M:System.IO.TextWriter.WriteLine(System.Int32)">
2108       <summary>4 バイト符号付き整数のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2109       <param name="value">書き込む 4 バイト符号付き整数。</param>
2110       <exception cref="T:System.ObjectDisposedException">
2111         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2112       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2113       <filterpriority>1</filterpriority>
2114     </member>
2115     <member name="M:System.IO.TextWriter.WriteLine(System.Int64)">
2116       <summary>8 バイト符号付き整数のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2117       <param name="value">書き込む 8 バイト符号付き整数。</param>
2118       <exception cref="T:System.ObjectDisposedException">
2119         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2120       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2121       <filterpriority>1</filterpriority>
2122     </member>
2123     <member name="M:System.IO.TextWriter.WriteLine(System.Object)">
2124       <summary>オブジェクトで ToString メソッドを呼び出して、そのオブジェクトのテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2125       <param name="value">書き込むオブジェクト。<paramref name="value" /> が null の場合は、行終端記号だけを書き込みます。</param>
2126       <exception cref="T:System.ObjectDisposedException">
2127         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2128       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2129       <filterpriority>1</filterpriority>
2130     </member>
2131     <member name="M:System.IO.TextWriter.WriteLine(System.Single)">
2132       <summary>4 バイト浮動小数点値のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2133       <param name="value">書き込む 4 バイト浮動小数点値。</param>
2134       <exception cref="T:System.ObjectDisposedException">
2135         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2136       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2137       <filterpriority>1</filterpriority>
2138     </member>
2139     <member name="M:System.IO.TextWriter.WriteLine(System.String)">
2140       <summary>文字列をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2141       <param name="value">書き込む文字列。<paramref name="value" /> が null の場合は、行終端記号だけを書き込みます。</param>
2142       <exception cref="T:System.ObjectDisposedException">
2143         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2144       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2145       <filterpriority>1</filterpriority>
2146     </member>
2147     <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object)">
2148       <summary>
2149         <see cref="M:System.String.Format(System.String,System.Object)" /> メソッドと同じセマンティクスを使用して、書式設定された文字列と改行をテキスト文字列またはストリームに書き込みます。</summary>
2150       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
2151       <param name="arg0">書式設定および書き込みをするオブジェクト。</param>
2152       <exception cref="T:System.ArgumentNullException">
2153         <paramref name="format" /> は null です。</exception>
2154       <exception cref="T:System.ObjectDisposedException">
2155         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2156       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2157       <exception cref="T:System.FormatException">
2158         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式指定項目のインデックスが、0 (ゼロ) より小さいか、書式設定されるオブジェクトの数 (このメソッド オーバーロードでは 1) 以上です。</exception>
2159       <filterpriority>1</filterpriority>
2160     </member>
2161     <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object)">
2162       <summary>
2163         <see cref="M:System.String.Format(System.String,System.Object,System.Object)" /> メソッドと同じセマンティクスを使用して、書式設定された文字列と改行をテキスト文字列またはストリームに書き込みます。</summary>
2164       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
2165       <param name="arg0">書式設定および書き込みをする最初のオブジェクト。</param>
2166       <param name="arg1">書式設定および書き込みをする 2 番目のオブジェクト。</param>
2167       <exception cref="T:System.ArgumentNullException">
2168         <paramref name="format" /> は null です。</exception>
2169       <exception cref="T:System.ObjectDisposedException">
2170         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2171       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2172       <exception cref="T:System.FormatException">
2173         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式指定項目のインデックスが、0 (ゼロ) より小さいか、書式設定されるオブジェクトの数 (このメソッド オーバーロードでは 2) 以上です。</exception>
2174       <filterpriority>1</filterpriority>
2175     </member>
2176     <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object,System.Object)">
2177       <summary>
2178         <see cref="M:System.String.Format(System.String,System.Object)" /> と同じセマンティクスを使用して、書式設定された文字列と改行を書き込みます。</summary>
2179       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
2180       <param name="arg0">書式設定および書き込みをする最初のオブジェクト。</param>
2181       <param name="arg1">書式設定および書き込みをする 2 番目のオブジェクト。</param>
2182       <param name="arg2">書式設定および書き込みをする 3 番目のオブジェクト。</param>
2183       <exception cref="T:System.ArgumentNullException">
2184         <paramref name="format" /> は null です。</exception>
2185       <exception cref="T:System.ObjectDisposedException">
2186         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2187       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2188       <exception cref="T:System.FormatException">
2189         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式指定項目のインデックスが、0 (ゼロ) より小さいか、書式設定されるオブジェクトの数 (このメソッド オーバーロードでは 3) 以上です。</exception>
2190       <filterpriority>1</filterpriority>
2191     </member>
2192     <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object[])">
2193       <summary>
2194         <see cref="M:System.String.Format(System.String,System.Object)" /> と同じセマンティクスを使用して、書式設定された文字列と改行を書き込みます。</summary>
2195       <param name="format">複合書式指定文字列 (「解説」を参照)。</param>
2196       <param name="arg">書式設定および書き込みをする 0 個以上のオブジェクトを含むオブジェクト配列。</param>
2197       <exception cref="T:System.ArgumentNullException">文字列またはオブジェクトが null として渡されました。</exception>
2198       <exception cref="T:System.ObjectDisposedException">
2199         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2200       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2201       <exception cref="T:System.FormatException">
2202         <paramref name="format" /> は有効な復号書式指定文字列ではありません。または 書式項目のインデックスが 0 より小さいか、<paramref name="arg" /> 配列の長さ以上です。</exception>
2203       <filterpriority>1</filterpriority>
2204     </member>
2205     <member name="M:System.IO.TextWriter.WriteLine(System.UInt32)">
2206       <summary>4 バイト符号なし整数のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2207       <param name="value">書き込む 4 バイト符号なし整数。</param>
2208       <exception cref="T:System.ObjectDisposedException">
2209         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2210       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2211       <filterpriority>1</filterpriority>
2212     </member>
2213     <member name="M:System.IO.TextWriter.WriteLine(System.UInt64)">
2214       <summary>8 バイト符号なし整数のテキスト形式をテキスト文字列またはストリームに書き込み、続けて行終端記号を書き込みます。</summary>
2215       <param name="value">書き込む 8 バイト符号なし整数。</param>
2216       <exception cref="T:System.ObjectDisposedException">
2217         <see cref="T:System.IO.TextWriter" /> が閉じています。</exception>
2218       <exception cref="T:System.IO.IOException">I/O エラーが発生しました。</exception>
2219       <filterpriority>1</filterpriority>
2220     </member>
2221     <member name="M:System.IO.TextWriter.WriteLineAsync">
2222       <summary>行終端記号をテキスト文字列またはストリームに非同期的に書き込みます。</summary>
2223       <returns>非同期の書き込み操作を表すタスク。</returns>
2224       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2225       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2226     </member>
2227     <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char)">
2228       <summary>文字をテキスト文字列またはストリームに非同期的に書き込み、続けて行終端記号を書き込みます。</summary>
2229       <returns>非同期の書き込み操作を表すタスク。</returns>
2230       <param name="value">テキスト ストリームに書き込む文字。</param>
2231       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2232       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2233     </member>
2234     <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char[])">
2235       <summary>文字の配列をテキスト文字列またはストリームに非同期的に書き込み、続けて行終端記号を書き込みます。</summary>
2236       <returns>非同期の書き込み操作を表すタスク。</returns>
2237       <param name="buffer">テキスト ストリームに書き込む文字配列。文字配列が null の場合は、行終端記号だけが書き込まれます。</param>
2238       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2239       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2240     </member>
2241     <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
2242       <summary>文字の部分配列をテキスト文字列またはストリームに非同期的に書き込み、続けて行終端記号を書き込みます。</summary>
2243       <returns>非同期の書き込み操作を表すタスク。</returns>
2244       <param name="buffer">データの書き込み元の文字配列。</param>
2245       <param name="index">データの取得を開始する、バッファー内の文字位置。</param>
2246       <param name="count">書き込む文字数。</param>
2247       <exception cref="T:System.ArgumentNullException">
2248         <paramref name="buffer" /> は null です。</exception>
2249       <exception cref="T:System.ArgumentException">
2250         <paramref name="index" /> に <paramref name="count" /> を加算した値が、バッファーの長さを超えています。</exception>
2251       <exception cref="T:System.ArgumentOutOfRangeException">
2252         <paramref name="index" /> または <paramref name="count" /> が負の値です。</exception>
2253       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2254       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2255     </member>
2256     <member name="M:System.IO.TextWriter.WriteLineAsync(System.String)">
2257       <summary>文字列をテキスト文字列またはストリームに非同期的に書き込み、続けて行終端記号を書き込みます。</summary>
2258       <returns>非同期の書き込み操作を表すタスク。</returns>
2259       <param name="value">書き込む文字列。値が null の場合は、行終端記号だけが書き込まれます。</param>
2260       <exception cref="T:System.ObjectDisposedException">テキスト ライターは破棄されます。</exception>
2261       <exception cref="T:System.InvalidOperationException">テキスト ライターは現在、前の書き込み操作で使用中です。</exception>
2262     </member>
2263   </members>
2264 </doc>