Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The WriteRawContent method writes content from a byte array to the stream that this MimeWriter object owns and does not apply an encoding to the content as it is written.
Namespace: Microsoft.Exchange.Data.Mime
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub WriteRawContent ( _
buffer As Byte(), _
offset As Integer, _
count As Integer _
)
'Usage
Dim instance As MimeWriter
Dim buffer As Byte()
Dim offset As Integer
Dim count As Integer
instance.WriteRawContent(buffer, offset, _
count)
public void WriteRawContent(
byte[] buffer,
int offset,
int count
)
Parameters
buffer
Type: []A byte array containing content to write to the stream that this MimeWriter object owns.
offset
Type: System.Int32An integer indicating where in buffer to begin reading.
count
Type: System.Int32An integer indicating the number of bytes to read from buffer.