Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rfinochi committed Jul 23, 2019
1 parent e0ab0c2 commit 4e6986a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion readme.md
Expand Up @@ -52,11 +52,13 @@ await pop3Client.ConnectAsync( "SERVER", "USERNAME", "PASSWORD", true );

Retrieve message list:

```
```c#
var messages = await pop3Client.ListAsync( );
```

Retrieve messages:

```c#
foreach ( Pop3Message message in messages )
{
await pop3Client.RetrieveAsync( message );
Expand Down

0 comments on commit 4e6986a

Please sign in to comment.