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 FilterPart method is called before a part boundary is written.
Namespace: Microsoft.Exchange.Data.Mime
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Overridable Function FilterPart ( _
part As MimePart, _
stream As Stream _
) As Boolean
'Usage
Dim instance As MimeOutputFilter
Dim part As MimePart
Dim stream As Stream
Dim returnValue As Boolean
returnValue = instance.FilterPart(part, _
stream)
public virtual bool FilterPart(
MimePart part,
Stream stream
)
Parameters
part
Type: Microsoft.Exchange.Data.Mime.MimePartThe MimePart to filter.
stream
Type: System.IO.StreamThe Stream to write to.
Return value
Type: System.Boolean
Set the return value to true to suppress the writing of part; set the return value to false to write part.