Click or drag to resize
MimeKit

MimeIteratorPathSpecifier Property

Get the path specifier for the current entity.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public string PathSpecifier { get; }

Property Value

String
The path specifier.
Exceptions
ExceptionCondition
InvalidOperationException Either MoveNext has not been called or MoveNext has moved beyond the end of the message.
Remarks
After an iterator is created or after the Reset method is called, the MoveNext method must be called to advance the iterator to the first entity of the message before reading the value of the PathSpecifier property; otherwise, PathSpecifier throws a InvalidOperationException. PathSpecifier also throws a InvalidOperationException if the last call to MoveNext returned false, which indicates the end of the message.
See Also