 | ImapPeekTextByNumberAsync(MimeTextStructure, CancellationToken) Method |
Namespace: Limilabs.Client.IMAPAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic Task<string> PeekTextByNumberAsync(
MimeTextStructure structure,
CancellationToken cancel = default
)
Public Function PeekTextByNumberAsync (
structure As MimeTextStructure,
Optional cancel As CancellationToken = Nothing
) As Task(Of String)
public:
Task<String^>^ PeekTextByNumberAsync(
MimeTextStructure^ structure,
CancellationToken cancel = CancellationToken()
)
member PeekTextByNumberAsync :
structure : MimeTextStructure *
?cancel : CancellationToken
(* Defaults:
let _cancel = defaultArg cancel new CancellationToken()
*)
-> Task<string> Parameters
- structure MimeTextStructure
- MIME entity to get data for.
- cancel CancellationToken (Optional)
- A cancellation token that can be used to signal the asynchronous operation should be canceled.
Return Value
TaskStringPart's data -or- null if server responds with NIL response.
See Also