TnefWriter.WriteAttributeRawValue method
The WriteAttributeRawValue method reads a raw value from the byte parameter and writes it to the output stream owned by this TnefWriter object.
Namespace: Microsoft.Exchange.Data.ContentTypes.Tnef
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub WriteAttributeRawValue ( _
buffer As Byte(), _
offset As Integer, _
count As Integer _
)
'Usage
Dim instance As TnefWriter
Dim buffer As Byte()
Dim offset As Integer
Dim count As Integer
instance.WriteAttributeRawValue(buffer, _
offset, count)
public void WriteAttributeRawValue(
byte[] buffer,
int offset,
int count
)
Parameters
buffer
Type: []A byte array containing data to write to the stream that this TnefWriter owns.
offset
Type: System.Int32An integer indicating where in buffer to begin reading data.
count
Type: System.Int32An integer indicating the number of bytes to write from buffer into the stream that this TnefWriter owns.