4 instantiations of LineInfo
System.Net.Mail (4)
System\Net\Mail\SmtpReplyReaderFactory.cs (4)
343
lines.Add(new
LineInfo
(_statusCode, builder.ToString(0, builder.Length - 2))); // return everything except CRLF
354
lines.Add(new
LineInfo
(_statusCode, builder.ToString(0, builder.Length - 2))); // return everything except CRLF
476
_lines!.Add(new
LineInfo
(_parent._statusCode, _builder.ToString(0, _builder.Length - 2))); // return everything except CRLF
489
_lines!.Add(new
LineInfo
(_parent._statusCode, _builder.ToString(0, _builder.Length - 2))); // return everything except CRLF
39 references to LineInfo
System.Net.Mail (39)
System\Net\Mail\SmtpCommands.cs (16)
36
LineInfo
info = SmtpReplyReader.EndReadLine(result);
54
LineInfo
info = (
LineInfo
)commandResult;
67
LineInfo
info = SmtpReplyReader.EndReadLine(result);
101
LineInfo
info = reader.ReadLine();
128
LineInfo
[] lines = SmtpReplyReader.EndReadLines(readLinesResult);
137
internal static
LineInfo
[] EndSend(IAsyncResult result)
144
return (
LineInfo
[])commandResult;
155
LineInfo
[] lines = SmtpReplyReader.EndReadLines(result);
184
internal static
LineInfo
[] Send(SmtpConnection conn)
205
private static
LineInfo
CheckResponse(
LineInfo
[] lines)
215
internal static
LineInfo
EndSend(IAsyncResult result)
234
internal static
LineInfo
Send(SmtpConnection conn, string type, string message)
240
internal static
LineInfo
Send(SmtpConnection conn, string? message)
355
private static string[] CheckResponse(
LineInfo
[] lines)
System\Net\Mail\SmtpConnection.cs (7)
195
LineInfo
info = _responseReader.GetNextReplyReader().ReadLine();
480
LineInfo
info = SmtpReplyReader.EndReadLine(result);
511
LineInfo
info = SmtpReplyReader.EndReadLine(result);
767
LineInfo
info = AuthCommand.EndSend(result);
798
LineInfo
info = AuthCommand.EndSend(result);
843
LineInfo
info = AuthCommand.EndSend(result);
866
LineInfo
info = AuthCommand.EndSend(result);
System\Net\Mail\SmtpReplyReader.cs (4)
34
internal static
LineInfo
[] EndReadLines(IAsyncResult result)
39
internal static
LineInfo
EndReadLine(IAsyncResult result)
44
internal
LineInfo
[] ReadLines()
49
internal
LineInfo
ReadLine()
System\Net\Mail\SmtpReplyReaderFactory.cs (12)
85
internal static
LineInfo
[] EndReadLines(IAsyncResult result)
90
internal static
LineInfo
EndReadLine(IAsyncResult result)
92
LineInfo
[] info = ReadLinesAsyncResult.End(result);
285
internal
LineInfo
ReadLine(SmtpReplyReader caller)
287
LineInfo
[] info = ReadLines(caller, true);
295
internal
LineInfo
[] ReadLines(SmtpReplyReader caller)
300
internal
LineInfo
[] ReadLines(SmtpReplyReader caller, bool oneLine)
304
return Array.Empty<
LineInfo
>();
312
var lines = new List<
LineInfo
>();
364
private List<
LineInfo
>? _lines;
397
_lines = new List<
LineInfo
>();
402
internal static
LineInfo
[] End(IAsyncResult result)