ImageGear .NET v25.1 - Updated
Write Method (ImGearWebStream)




ImageGear.Core Assembly > ImageGear.Formats Namespace > ImGearWebStream Class : Write Method
The array to which bytes are written.
The byte offset in array at which to begin writing.
The maximum number of bytes to write.
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.
Syntax
'Declaration
 
Public Overrides Sub Write( _
   ByVal buffer() As Byte, _
   ByVal offset As Integer, _
   ByVal count As Integer _
) 
'Usage
 
Dim instance As ImGearWebStream
Dim buffer() As Byte
Dim offset As Integer
Dim count As Integer
 
instance.Write(buffer, offset, count)
public override void Write( 
   byte[] buffer,
   int offset,
   int count
)
public: void Write( 
   byte[]* buffer,
   int offset,
   int count
) override 
public:
void Write( 
   array<byte>^ buffer,
   int offset,
   int count
) override 

Parameters

buffer
The array to which bytes are written.
offset
The byte offset in array at which to begin writing.
count
The maximum number of bytes to write.
See Also

Reference

ImGearWebStream Class
ImGearWebStream Members