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.
Dim MyFileStream As FileStream Dim FileSize As Long MyFileStream = New FileStream("sometext.txt", FileMode.Open) FileSize = MyFileStream.Length Dim Buffer(CInt(FileSize)) As Byte MyFileStream.Read(Buffer, 0, CInt(FileSize)) MyFileStream.Close() Response.Write("<b>File Contents: </b>") Response.BinaryWrite(Buffer)
.NET Framework
Available since 1.1
Available since 1.1
Show: