File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -165,10 +165,10 @@ public SmtpServerOptionsBuilder CommandWaitTimeout(TimeSpan value)
165165 /// <param name="smtpGreetingFunc">
166166 /// A delegate that returns the greeting message to send to the client,
167167 /// based on the <see cref="ISessionContext"/> (e.g., client IP, TLS state).
168- /// Example: <c>ctx => $"220 {sessionContext.ServerOptions.ServerName} ESMTP ready"</c>
168+ /// Example: <c>sessionContext => $"220 {sessionContext.ServerOptions.ServerName} ESMTP ready"</c>
169169 /// </param>
170170 /// <returns>An OptionsBuilder to continue building on.</returns>
171- public SmtpServerOptionsBuilder CustomGreetingMessage ( Func < ISessionContext , string > smtpGreetingFunc )
171+ public SmtpServerOptionsBuilder CustomSmtpGreeting ( Func < ISessionContext , string > smtpGreetingFunc )
172172 {
173173 _setters . Add ( options => options . CustomSmtpGreeting = smtpGreetingFunc ) ;
174174
You can’t perform that action at this time.
0 commit comments