HttpResponse.BinaryWrite Method (Byte[])
.NET Framework (current version)
Writes a string of binary characters to the HTTP output stream.
Assembly: System.Web (in System.Web.dll)
Parameters
- buffer
-
Type:
System.Byte[]
The bytes to write to the output stream.
The following example reads a text file into a buffer and writes the buffer to the HTTP output stream.
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);
.NET Framework
Available since 1.1
Available since 1.1
Show: