BufferedStream.Write Method
Assembly: mscorlib (in mscorlib.dll)
| Exception type | Condition |
|---|---|
| Length of array minus offset is less than count. |
|
| array is a null reference (Nothing in Visual Basic). |
|
| offset or count is negative. |
|
| The stream is closed or a null reference (Nothing in Visual Basic). |
|
| 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.
This code example is part of a larger example provided for the BufferedStream class.
// Send the data using the BufferedStream. Console.WriteLine("Sending data using BufferedStream."); startTime = DateTime.Now; for(int i = 0; i < numberOfLoops; i++) { bufStream.Write(dataToSend, 0, dataToSend.Length); } bufStream.Flush(); bufferedTime = (DateTime.Now - startTime).TotalSeconds; Console.WriteLine("{0} bytes sent in {1} seconds.\n", numberOfLoops * dataToSend.Length, bufferedTime.ToString("F1"));
// Send the data using the BufferedStream.
Console.WriteLine("Sending data using BufferedStream.");
startTime = DateTime.get_Now();
for(int i=0;i < numberOfLoops;i++) {
bufStream.Write(dataToSend, 0, dataToSend.length);
}
bufStream.Flush();
bufferedTime =
((DateTime.get_Now()).Subtract(startTime)).get_TotalSeconds();
Console.WriteLine("{0} bytes sent in {1} seconds.\n",
System.Convert.ToString (numberOfLoops * dataToSend.length),
((System.Double)bufferedTime).ToString("F1"));
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.