When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
Public MustOverride Sub Write ( _ buffer As Byte(), _ offset As Integer, _ count As Integer _ )
Dim instance As Stream Dim buffer As Byte() Dim offset As Integer Dim count As Integer instance.Write(buffer, offset, count)
public abstract void Write( byte[] buffer, int offset, int count )
public: virtual void Write( array<unsigned char>^ buffer, int offset, int count ) abstract
public abstract function Write( buffer : byte[], offset : int, count : int )
The sum of offset and count is greater than the buffer length.
buffer is nullNothingnullptra null reference (Nothing in Visual Basic).
offset or count is negative.
An I/O error occurs.
The stream does not support writing.
Methods were called after the stream was closed.
For an example of creating a file and writing text to a file, see How to: Write Text to a File. For an example of reading text from a file, see How to: Read Text from a File. For an example of reading from and writing to a binary file, see How to: Read and Write to a Newly Created Data File.
Use the CanWrite property to determine whether the current instance supports writing.
If the write operation is successful, the position within the stream advances by the number of bytes written. If an exception occurs, the position within the stream remains unchanged.
The default implementation calls the asynchronous BeginWrite method.
The following example demonstrates how to use the Write method to copy an input stream to an output stream.
Const size As Integer = 4096 Dim bytes(4096) As Byte Dim numBytes As Integer numBytes = input.Read(bytes, 0, size) While numBytes > 0 output.Write(bytes, 0, numBytes) numBytes = input.Read(bytes, 0, size) End While
const int size = 4096; byte[] bytes = new byte[4096]; int numBytes; while((numBytes = input.Read(bytes, 0, size)) > 0) output.Write(bytes, 0, numBytes);
const int size = 4096; array<Byte>^ bytes = gcnew array<Byte>(4096); int numBytes; while ( (numBytes = input->Read( bytes, 0, size )) > 0 ) output->Write( bytes, 0, numBytes );
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune