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