ConverterStream.Write Method
The Write method converts and writes count bytes from buffer, starting at offset, into the destination TextWriter that it owns.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Overrides Sub Write ( _
buffer As Byte(), _
offset As Integer, _
count As Integer _
)
'Usage
Dim instance As ConverterStream
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
)
Parameters
- buffer
Type: []
The character array to write data from.
- offset
Type: System.Int32
The starting index in the buffer.
- count
Type: System.Int32
The number of characters to write.