HttpResponse.BinaryWrite(Byte[]) Method

Definition

Writes a string of binary characters to the HTTP output stream.

C#
public void BinaryWrite(byte[] buffer);

Parameters

buffer
Byte[]

The bytes to write to the output stream.

Examples

The following example reads a text file into a buffer and writes the buffer to the HTTP output stream.

C#
FileStream MyFileStream;
 long FileSize;

 MyFileStream = new FileStream("sometext.txt", FileMode.Open);
 FileSize = MyFileStream.Length;

 byte[] Buffer = new byte[(int)FileSize];
 MyFileStream.Read(Buffer, 0, (int)FileSize);
 MyFileStream.Close();

 Response.Write("<b>File Contents: </b>");
 Response.BinaryWrite(Buffer);

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1