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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="BinaryWriter" FullName="System.IO.BinaryWriter">
<TypeSignature Maintainer="auto" Language="C#" Value="public class BinaryWriter : IDisposable" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi serializable beforefieldinit BinaryWriter extends System.Object implements class System.IDisposable" />
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.IO.BinaryWriter" /> class provides methods that simplify writing primitive data types to a stream. For example, you can use the <see cref="M:System.IO.BinaryWriter.Write(System.Boolean)" /> method to write a Boolean value to the stream as a one-byte value. The class includes write methods that support different data types. </para>
<para>When you create a new instance of the <see cref="T:System.IO.BinaryWriter" /> class, you provide the stream to write to, and optionally specify the type of encoding and whether to leave the stream open after disposing the <see cref="T:System.IO.BinaryWriter" /> object. If you do not specify an encoding type, UTF-8 is used.</para>
<para>A derived class can override the methods of this class to give unique character encodings.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes primitive types in binary to a stream and supports writing strings in a specific encoding.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected BinaryWriter ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue />
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class that writes to a stream.</para>
</summary>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BinaryWriter (System.IO.Stream output);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.IO.Stream output) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue />
<Parameters>
<Parameter Name="output" Type="System.IO.Stream" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the specified stream and using UTF-8 encoding.</para>
</summary>
<param name="output">
<attribution license="cc4" from="Microsoft" modified="false" />The output stream. </param>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BinaryWriter (System.IO.Stream output, System.Text.Encoding encoding);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.IO.Stream output, class System.Text.Encoding encoding) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue />
<Parameters>
<Parameter Name="output" Type="System.IO.Stream" />
<Parameter Name="encoding" Type="System.Text.Encoding" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the specified stream and character encoding.</para>
</summary>
<param name="output">
<attribution license="cc4" from="Microsoft" modified="false" />The output stream. </param>
<param name="encoding">
<attribution license="cc4" from="Microsoft" modified="false" />The character encoding to use. </param>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BinaryWriter (System.IO.Stream output, System.Text.Encoding encoding, bool leaveOpen);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.IO.Stream output, class System.Text.Encoding encoding, bool leaveOpen) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="output" Type="System.IO.Stream" />
<Parameter Name="encoding" Type="System.Text.Encoding" />
<Parameter Name="leaveOpen" Type="System.Boolean" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the specified stream and character encoding, and optionally leaves the stream open.</para>
</summary>
<param name="output">
<attribution license="cc4" from="Microsoft" modified="false" />The output stream.</param>
<param name="encoding">
<attribution license="cc4" from="Microsoft" modified="false" />The character encoding to use.</param>
<param name="leaveOpen">
<attribution license="cc4" from="Microsoft" modified="false" />true to leave the stream open after the <see cref="T:System.IO.BinaryWriter" /> object is disposed; otherwise, false.</param>
</Docs>
</Member>
<Member MemberName="BaseStream">
<MemberSignature Language="C#" Value="public virtual System.IO.Stream BaseStream { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.IO.Stream BaseStream" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.IO.Stream</ReturnType>
</ReturnValue>
<Docs>
<value>To be added: an object of type 'Stream'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the underlying stream of the <see cref="T:System.IO.BinaryWriter" />.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Close">
<MemberSignature Language="C#" Value="public virtual void Close ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Close() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This implementation of Close calls the <see cref="M:System.IO.BinaryWriter.Dispose(System.Boolean)" /> method passing a true value.</para>
<para>Flushing the stream will not flush its underlying encoder unless you explicitly call <see cref="M:System.IO.BinaryWriter.Flush" /> or Close. Setting <see cref="P:System.IO.StreamWriter.AutoFlush" /> to true means that data will be flushed from the buffer to the stream, but the encoder state will not be flushed. This allows the encoder to keep its state (partial characters) so that it can encode the next block of characters correctly. This scenario affects UTF8 and UTF7 where certain characters can only be encoded after the encoder receives the adjacent character or characters.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Closes the current <see cref="T:System.IO.BinaryWriter" /> and the underlying stream.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="public void Dispose ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Dispose() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Releases all resources used by the current instance of the <see cref="T:System.IO.BinaryWriter" /> class.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="protected virtual void Dispose (bool disposing);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void Dispose(bool disposing) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="disposing" Type="System.Boolean" />
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryWriter" /> and optionally releases the managed resources.</para>
</summary>
<param name="disposing">
<attribution license="cc4" from="Microsoft" modified="false" />true to release both managed and unmanaged resources; false to release only unmanaged resources. </param>
</Docs>
</Member>
<Member MemberName="Flush">
<MemberSignature Language="C#" Value="public virtual void Flush ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Flush() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>All derived classes should override Flush to ensure that all buffered data is sent to the stream.</para>
<para>Flushing the stream will not flush its underlying encoder unless you explicitly call Flush or <see cref="M:System.IO.BinaryWriter.Close" />. Setting <see cref="P:System.IO.StreamWriter.AutoFlush" /> to true means that data will be flushed from the buffer to the stream, but the encoder state will not be flushed. This allows the encoder to keep its state (partial characters) so that it can encode the next block of characters correctly. This scenario affects UTF8 and UTF7 where certain characters can only be encoded after the encoder receives the adjacent character or characters.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Null">
<MemberSignature Language="C#" Value="public static readonly System.IO.BinaryWriter Null;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class System.IO.BinaryWriter Null" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.IO.BinaryWriter</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies a <see cref="T:System.IO.BinaryWriter" /> with no backing store.</para>
</summary>
</Docs>
</Member>
<Member MemberName="OutStream">
<MemberSignature Language="C#" Value="protected System.IO.Stream OutStream;" />
<MemberSignature Language="ILAsm" Value=".field family class System.IO.Stream OutStream" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.IO.Stream</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Holds the underlying stream.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Seek">
<MemberSignature Language="C#" Value="public virtual long Seek (int offset, System.IO.SeekOrigin origin);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int64 Seek(int32 offset, valuetype System.IO.SeekOrigin origin) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="offset" Type="System.Int32" />
<Parameter Name="origin" Type="System.IO.SeekOrigin" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Sets the position within the current stream.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The position with the current stream.</para>
</returns>
<param name="offset">
<attribution license="cc4" from="Microsoft" modified="false" />A byte offset relative to <paramref name="origin" />. </param>
<param name="origin">
<attribution license="cc4" from="Microsoft" modified="false" />A field of <see cref="T:System.IO.SeekOrigin" /> indicating the reference point from which the new position is to be obtained. </param>
</Docs>
</Member>
<Member MemberName="System.IDisposable.Dispose">
<MemberSignature Language="C#" Value="void IDisposable.Dispose ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.IO.BinaryWriter" /> instance is cast to an <see cref="T:System.IDisposable" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (bool value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(bool value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Boolean" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The Boolean value to write (0 or 1). </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (byte value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(unsigned int8 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Byte" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Because of data formatting conflicts, using this method with the following encodings is not recommended:</para>
<list type="bullet">
<item>
<para>UTF-7</para>
</item>
<item>
<para>ISO-2022-JP</para>
</item>
<item>
<para>ISCII</para>
</item>
</list>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes an unsigned byte to the current stream and advances the stream position by one byte.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The unsigned byte to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (byte[] buffer);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(unsigned int8[] buffer) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Byte[]" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a byte array to the underlying stream.</para>
</summary>
<param name="buffer">
<attribution license="cc4" from="Microsoft" modified="false" />A byte array containing the data to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (char ch);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(char ch) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ch" Type="System.Char" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Because of data formatting conflicts, using this method with the following encodings is not recommended:</para>
<list type="bullet">
<item>
<para>UTF-7</para>
</item>
<item>
<para>ISO-2022-JP</para>
</item>
<item>
<para>ISCII</para>
</item>
</list>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
<para>Unicode surrogate characters must be written out as pairs together in the same call, not individually. If you require support for surrogate pairs in your application, consider using a character array and the <see cref="M:System.IO.BinaryWriter.Write(System.Char[])" /> method overload.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a Unicode character to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.</para>
</summary>
<param name="ch">
<attribution license="cc4" from="Microsoft" modified="false" />The non-surrogate, Unicode character to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (char[] chars);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(char[] chars) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="chars" Type="System.Char[]" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The following table lists examples of other typical or related I/O tasks.</para>
<list type="table">
<listheader>
<item>
<term>
<para>To do this... </para>
</term>
<description>
<para>See the example in this topic... </para>
</description>
</item>
</listheader>
<item>
<term>
<para>Create a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="060CBE06-2ADF-4337-9E7B-961A5C840208">[<topic://cpconwritingtexttofile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Write to a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="060CBE06-2ADF-4337-9E7B-961A5C840208">[<topic://cpconwritingtexttofile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Read from a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="ED180BAA-DFC6-4C69-A725-46E87EDAFB27">[<topic://cpconreadingtextfromfile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Append text to a file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="74423362-1721-49CB-AA0A-E04005F72A06">[<topic://cpconopeningappendingtologfile>]</a>
</format> </para>
<para>
<see cref="M:System.IO.File.AppendText(System.String)" /> </para>
<para>
<see cref="M:System.IO.FileInfo.AppendText" /> </para>
</description>
</item>
<item>
<term>
<para>Get the size of a file. </para>
</term>
<description>
<para>
<see cref="P:System.IO.FileInfo.Length" /> </para>
</description>
</item>
<item>
<term>
<para>Get the attributes of a file. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.GetAttributes(System.String)" /> </para>
</description>
</item>
<item>
<term>
<para>Set the attributes of a file. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.SetAttributes(System.String,System.IO.FileAttributes)" /> </para>
</description>
</item>
<item>
<term>
<para>Determine if a file exists. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.Exists(System.String)" /> </para>
</description>
</item>
<item>
<term>
<para>Read from a binary file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="E209D949-31E8-44EA-8E38-87F9093F3093">[<topic://cpconReadingWritingToNewlyCreatedDataFile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Write to a binary file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="E209D949-31E8-44EA-8E38-87F9093F3093">[<topic://cpconReadingWritingToNewlyCreatedDataFile>]</a>
</format> </para>
</description>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a character array to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.</para>
</summary>
<param name="chars">
<attribution license="cc4" from="Microsoft" modified="false" />A character array containing the data to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (decimal value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(valuetype System.Decimal value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Decimal" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The following table lists examples of other typical or related I/O tasks.</para>
<list type="table">
<listheader>
<item>
<term>
<para>To do this... </para>
</term>
<description>
<para>See the example in this topic... </para>
</description>
</item>
</listheader>
<item>
<term>
<para>Create a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="060CBE06-2ADF-4337-9E7B-961A5C840208">[<topic://cpconwritingtexttofile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Write to a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="060CBE06-2ADF-4337-9E7B-961A5C840208">[<topic://cpconwritingtexttofile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Read from a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="ED180BAA-DFC6-4C69-A725-46E87EDAFB27">[<topic://cpconreadingtextfromfile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Append text to a file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="74423362-1721-49CB-AA0A-E04005F72A06">[<topic://cpconopeningappendingtologfile>]</a>
</format> </para>
<para>
<see cref="M:System.IO.File.AppendText(System.String)" /> </para>
<para>
<see cref="M:System.IO.FileInfo.AppendText" /> </para>
</description>
</item>
<item>
<term>
<para>Get the size of a file. </para>
</term>
<description>
<para>
<see cref="P:System.IO.FileInfo.Length" /> </para>
</description>
</item>
<item>
<term>
<para>Get the attributes of a file. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.GetAttributes(System.String)" /> </para>
</description>
</item>
<item>
<term>
<para>Set the attributes of a file. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.SetAttributes(System.String,System.IO.FileAttributes)" /> </para>
</description>
</item>
<item>
<term>
<para>Determine if a file exists. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.Exists(System.String)" /> </para>
</description>
</item>
<item>
<term>
<para>Read from a binary file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="E209D949-31E8-44EA-8E38-87F9093F3093">[<topic://cpconReadingWritingToNewlyCreatedDataFile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Write to a binary file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="E209D949-31E8-44EA-8E38-87F9093F3093">[<topic://cpconReadingWritingToNewlyCreatedDataFile>]</a>
</format> </para>
</description>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a decimal value to the current stream and advances the stream position by sixteen bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The decimal value to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (double value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(float64 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Double" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes an eight-byte floating-point value to the current stream and advances the stream position by eight bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The eight-byte floating-point value to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (short value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(int16 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int16" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>The following table lists examples of other typical or related I/O tasks.</para>
<list type="table">
<listheader>
<item>
<term>
<para>To do this... </para>
</term>
<description>
<para>See the example in this topic... </para>
</description>
</item>
</listheader>
<item>
<term>
<para>Create a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="060CBE06-2ADF-4337-9E7B-961A5C840208">[<topic://cpconwritingtexttofile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Write to a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="060CBE06-2ADF-4337-9E7B-961A5C840208">[<topic://cpconwritingtexttofile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Read from a text file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="ED180BAA-DFC6-4C69-A725-46E87EDAFB27">[<topic://cpconreadingtextfromfile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Append text to a file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="74423362-1721-49CB-AA0A-E04005F72A06">[<topic://cpconopeningappendingtologfile>]</a>
</format> </para>
<para>
<see cref="M:System.IO.File.AppendText(System.String)" /> </para>
<para>
<see cref="M:System.IO.FileInfo.AppendText" /> </para>
</description>
</item>
<item>
<term>
<para>Get the size of a file. </para>
</term>
<description>
<para>
<see cref="P:System.IO.FileInfo.Length" /> </para>
</description>
</item>
<item>
<term>
<para>Get the attributes of a file. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.GetAttributes(System.String)" /> </para>
</description>
</item>
<item>
<term>
<para>Set the attributes of a file. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.SetAttributes(System.String,System.IO.FileAttributes)" /> </para>
</description>
</item>
<item>
<term>
<para>Determine if a file exists. </para>
</term>
<description>
<para>
<see cref="M:System.IO.File.Exists(System.String)" /> </para>
</description>
</item>
<item>
<term>
<para>Read from a binary file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="E209D949-31E8-44EA-8E38-87F9093F3093">[<topic://cpconReadingWritingToNewlyCreatedDataFile>]</a>
</format> </para>
</description>
</item>
<item>
<term>
<para>Write to a binary file. </para>
</term>
<description>
<para>
<format type="text/html">
<a href="E209D949-31E8-44EA-8E38-87F9093F3093">[<topic://cpconReadingWritingToNewlyCreatedDataFile>]</a>
</format> </para>
</description>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a two-byte signed integer to the current stream and advances the stream position by two bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The two-byte signed integer to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (int value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(int32 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a four-byte signed integer to the current stream and advances the stream position by four bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The four-byte signed integer to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (long value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(int64 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int64" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes an eight-byte signed integer to the current stream and advances the stream position by eight bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The eight-byte signed integer to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (sbyte value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(int8 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.SByte" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a signed byte to the current stream and advances the stream position by one byte.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The signed byte to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (float value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(float32 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Single" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a four-byte floating-point value to the current stream and advances the stream position by four bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The four-byte floating-point value to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (string value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(string value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.String" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Length-prefixed means that this method first writes the length of the string, in bytes, when encoded with the <see cref="T:System.IO.BinaryWriter" /> instance's current encoding to the stream. This value is written as an unsigned integer. This method then writes that many bytes to the stream.</para>
<para>For example, the string “A” has a length of 1, but when encoded with UTF-16; the length is 2 bytes, so the value written in the prefix is 2, and 3 bytes are written to the stream, including the prefix.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a length-prefixed string to this stream in the current encoding of the <see cref="T:System.IO.BinaryWriter" />, and advances the current position of the stream in accordance with the encoding used and the specific characters being written to the stream.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The value to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (ushort value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(unsigned int16 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.UInt16" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a two-byte unsigned integer to the current stream and advances the stream position by two bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The two-byte unsigned integer to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (uint value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(unsigned int32 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.UInt32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a four-byte unsigned integer to the current stream and advances the stream position by four bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The four-byte unsigned integer to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (ulong value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(unsigned int64 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.UInt64" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>BinaryWriter stores this data type in little endian format.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes an eight-byte unsigned integer to the current stream and advances the stream position by eight bytes.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The eight-byte unsigned integer to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (byte[] buffer, int index, int count);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(unsigned int8[] buffer, int32 index, int32 count) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.Byte[]" />
<Parameter Name="index" Type="System.Int32" />
<Parameter Name="count" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a region of a byte array to the current stream.</para>
</summary>
<param name="buffer">
<attribution license="cc4" from="Microsoft" modified="false" />A byte array containing the data to write. </param>
<param name="index">
<attribution license="cc4" from="Microsoft" modified="false" />The starting point in <paramref name="buffer" /> at which to begin writing. </param>
<param name="count">
<attribution license="cc4" from="Microsoft" modified="false" />The number of bytes to write. </param>
</Docs>
</Member>
<Member MemberName="Write">
<MemberSignature Language="C#" Value="public virtual void Write (char[] chars, int index, int count);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Write(char[] chars, int32 index, int32 count) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="chars" Type="System.Char[]" />
<Parameter Name="index" Type="System.Int32" />
<Parameter Name="count" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a section of a character array to the current stream, and advances the current position of the stream in accordance with the Encoding used and perhaps the specific characters being written to the stream.</para>
</summary>
<param name="chars">
<attribution license="cc4" from="Microsoft" modified="false" />A character array containing the data to write. </param>
<param name="index">
<attribution license="cc4" from="Microsoft" modified="false" />The starting point in <paramref name="chars" /> from which to begin writing. </param>
<param name="count">
<attribution license="cc4" from="Microsoft" modified="false" />The number of characters to write. </param>
</Docs>
</Member>
<Member MemberName="Write7BitEncodedInt">
<MemberSignature Language="C#" Value="protected void Write7BitEncodedInt (int value);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void Write7BitEncodedInt(int32 value) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The integer of the <paramref name="value" /> parameter is written out seven bits at a time, starting with the seven least-significant bits. The high bit of a byte indicates whether there are more bytes to be written after this one.</para>
<para>If <paramref name="value" /> will fit in seven bits, it takes only one byte of space. If <paramref name="value" /> will not fit in seven bits, the high bit is set on the first byte and written out. <paramref name="value" /> is then shifted by seven bits and the next byte is written. This process is repeated until the entire integer has been written.</para>
<para>For a list of common I/O tasks, see <format type="text/html"><a href="bf00c380-706a-4e38-b829-454a480629fc">Common I/O Tasks</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes a 32-bit integer in a compressed format.</para>
</summary>
<param name="value">
<attribution license="cc4" from="Microsoft" modified="false" />The 32-bit integer to be written. </param>
</Docs>
</Member>
</Members>
</Type>
|