Click or drag to resize
MimeKit

TnefReaderReadAttributeRawValue Method

Read the raw attribute value data from the underlying TNEF stream.

Namespace: MimeKit.Tnef
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public int ReadAttributeRawValue(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer  Byte
The buffer to read data into.
offset  Int32
The offset into the buffer to start reading data.
count  Int32
The number of bytes to read.

Return Value

Int32
The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not available, or zero (0) if the end of the value has been reached.
Exceptions
ExceptionCondition
ArgumentNullExceptionbuffer is null.
ArgumentOutOfRangeException

offset is less than zero or greater than the length of buffer.

-or-

The buffer is not large enough to contain count bytes starting at the specified offset.

ObjectDisposedException The stream has been disposed.
IOException An I/O error occurred.
Remarks
Reads the raw attribute value data from the underlying TNEF stream.
See Also