Subversion Repository Public Repository

WilksMergeModule

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

Commits for WilksMergeModule/packages/System.IO.4.3.0/ref/netstandard1.0/ja/System.IO.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Thu 09 Aug, 2018 12:57:17 +0000