Click or drag to resize
MimeKit

TnefPartAccept Method

Dispatches to the specific visit method for this MIME entity.

Namespace: MimeKit.Tnef
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public override void Accept(
	MimeVisitor visitor
)

Parameters

visitor  MimeVisitor
The visitor.

Implements

IMimeEntityAccept(MimeVisitor)
IMimeEntityAccept(MimeVisitor)
IMimeEntityAccept(MimeVisitor)
Exceptions
ExceptionCondition
ArgumentNullExceptionvisitor is .
ObjectDisposedException The TnefPart has been disposed.
Remarks
This default implementation for TnefPart nodes calls VisitTnefPart(TnefPart). Override this method to call into a more specific method on a derived visitor class of the MimeVisitor class. However, it should still support unknown visitors by calling VisitTnefPart(TnefPart).
See Also