InjectableStreamWrite 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: StreamCodersAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax public override void Write(
byte[] buffer,
int offset,
int count
)
Public Overrides Sub Write (
buffer As Byte(),
offset As Integer,
count As Integer
)
public:
virtual void Write(
array<unsigned char>^ buffer,
int offset,
int count
) override
abstract Write :
buffer : byte[] *
offset : int *
count : int -> unit
override Write :
buffer : byte[] *
offset : int *
count : int -> unit
Parameters
- buffer
- Type: SystemByte
An array of bytes.
- offset
- Type: SystemInt32
The zero-based byte offset in the stream.
- count
- Type: SystemInt32
The number of bytes to be written to the current stream.
See Also