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 () As Byte, _
   ByVal  As Integer, _
   ByVal  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[] ,
   int ,
   int 
)
             
        
            
            public: void Write( 
   byte[]* ,
   int ,
   int 
) override 
             
        
            
            public:
void Write( 
   array<byte>^ ,
   int ,
   int 
) 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