MimeNode.InsertAfter method
The InsertAfter method inserts a new MimeNode object after a specified MimeNode object in the list of the children of this MimeNode object.
Namespace: Microsoft.Exchange.Data.Mime
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Function InsertAfter ( _
newChild As MimeNode, _
refChild As MimeNode _
) As MimeNode
'Usage
Dim instance As MimeNode
Dim newChild As MimeNode
Dim refChild As MimeNode
Dim returnValue As MimeNode
returnValue = instance.InsertAfter(newChild, _
refChild)
public MimeNode InsertAfter(
MimeNode newChild,
MimeNode refChild
)
Parameters
newChild
Type: Microsoft.Exchange.Data.Mime.MimeNodeThe MimeNode object to insert.
refChild
Type: Microsoft.Exchange.Data.Mime.MimeNodeThe MimeNode object to insert after.
Return value
Type: Microsoft.Exchange.Data.Mime.MimeNode