Skip to content

Commit 59654fc

Browse files
authored
Correct IsAuthenticated docs (#1909)
1 parent df02bf9 commit 59654fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MailKit/Net/Pop3/Pop3Client.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ public override int? SslKeyExchangeStrength {
585585
/// <para>To authenticate with the POP3 server, use one of the
586586
/// <a href="Overload_MailKit_Net_Pop3_Pop3Client_Authenticate.htm">Authenticate</a> methods.</para>
587587
/// </remarks>
588-
/// <value><see langword="true" /> if the client is connected; otherwise, <see langword="false" />.</value>
588+
/// <value><see langword="true" /> if the client is authenticated; otherwise, <see langword="false" />.</value>
589589
public override bool IsAuthenticated {
590590
get { return engine.State == Pop3EngineState.Transaction; }
591591
}

MailKit/Net/Smtp/SmtpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ public override int? SslKeyExchangeStrength {
589589
/// <a href="Overload_MailKit_Net_Smtp_SmtpClient_Authenticate.htm">Authenticate</a>
590590
/// methods.</para>
591591
/// </remarks>
592-
/// <value><see langword="true" /> if the client is connected; otherwise, <see langword="false" />.</value>
592+
/// <value><see langword="true" /> if the client is authenticated; otherwise, <see langword="false" />.</value>
593593
public override bool IsAuthenticated {
594594
get { return authenticated; }
595595
}

0 commit comments

Comments
 (0)