 | AutoResetStream.Write Method |
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.
Namespace:
BionicCode.Utilities.Net.Standard.IO
Assembly:
BionicCode.Utilities.Net.Standard (in BionicCode.Utilities.Net.Standard.dll) Version: 1.0.4
Syntaxpublic override void Write(
byte[] buffer,
int offset,
int count
)
abstract Write :
buffer : byte[] *
offset : int *
count : int -> unit
override Write :
buffer : byte[] *
offset : int *
count : int -> unit
public void Write(
byte[] buffer,
int offset,
int count
)
public override function Write(
buffer : byte[],
offset : int,
count : int
)
function Write(buffer, offset, count);
VIRTUAL METHOD Write(
buffer AS BYTE[],
offset AS LONG,
count AS LONG
) AS VOID
Parameters
- buffer
- Type:System.Byte[]
An array of bytes. This method copies count bytes from buffer to the current stream. - offset
- Type: System.Int32
The zero-based byte offset in buffer at which to begin copying bytes to the current stream. - count
- Type: System.Int32
The number of bytes to be written to the current stream.
Exceptions
See Also