6 instantiations of LineInfo
System (6)
net\System\Net\mail\SmtpReplyReaderFactory.cs (6)
98
return new
LineInfo
();
296
return new
LineInfo
();
351
lines.Add(new
LineInfo
(statusCode, builder.ToString(0, builder.Length - 2))); // return everything except CRLF
361
lines.Add(new
LineInfo
(statusCode, builder.ToString(0, builder.Length - 2))); // return everything except CRLF
484
lines.Add(new
LineInfo
(parent.statusCode, builder.ToString(0, builder.Length - 2))); // return everything except CRLF
496
lines.Add(new
LineInfo
(parent.statusCode, builder.ToString(0, builder.Length - 2))); // return everything except CRLF
42 references to LineInfo
System (42)
net\System\Net\mail\SmtpCommands.cs (16)
32
LineInfo
info = reader.EndReadLine(result);
48
LineInfo
info = (
LineInfo
)commandResult;
62
LineInfo
info = conn.Reader.CurrentReader.EndReadLine(result);
97
LineInfo
info = reader.ReadLine();
124
LineInfo
[] lines = conn.Reader.CurrentReader.EndReadLines(readLinesResult);
133
internal static
LineInfo
[] EndSend(IAsyncResult result)
138
return (
LineInfo
[])commandResult;
149
LineInfo
[] lines = conn.Reader.CurrentReader.EndReadLines(result);
178
internal static
LineInfo
[] Send(SmtpConnection conn)
200
static
LineInfo
CheckResponse(
LineInfo
[] lines)
210
internal static
LineInfo
EndSend(IAsyncResult result)
229
internal static
LineInfo
Send(SmtpConnection conn, string type, string message)
235
internal static
LineInfo
Send(SmtpConnection conn, string message)
366
static string[] CheckResponse(
LineInfo
[] lines)
net\System\Net\mail\smtpconnection.cs (7)
354
LineInfo
info = responseReader.GetNextReplyReader().ReadLine();
725
LineInfo
info = reader.EndReadLine(result);
756
LineInfo
info = thisPtr.connection.Reader.CurrentReader.EndReadLine(result);
993
LineInfo
info = AuthCommand.EndSend(result);
1029
LineInfo
info = AuthCommand.EndSend(result);
1074
LineInfo
info = AuthCommand.EndSend(result);
1097
LineInfo
info = AuthCommand.EndSend(result);
net\System\Net\mail\SmtpReplyReader.cs (4)
34
internal
LineInfo
[] EndReadLines(IAsyncResult result)
39
internal
LineInfo
EndReadLine(IAsyncResult result)
44
internal
LineInfo
[] ReadLines()
49
internal
LineInfo
ReadLine()
net\System\Net\mail\SmtpReplyReaderFactory.cs (15)
87
internal
LineInfo
[] EndReadLines(IAsyncResult result)
92
internal
LineInfo
EndReadLine(IAsyncResult result)
94
LineInfo
[] info = ReadLinesAsyncResult.End(result);
290
internal
LineInfo
ReadLine(SmtpReplyReader caller)
292
LineInfo
[] info = ReadLines(caller,true);
299
internal
LineInfo
[] ReadLines(SmtpReplyReader caller)
305
internal
LineInfo
[] ReadLines(SmtpReplyReader caller, bool oneLine)
309
return new
LineInfo
[0];
355
return (
LineInfo
[])lines.ToArray(typeof(
LineInfo
));
363
return (
LineInfo
[])lines.ToArray(typeof(
LineInfo
));
412
internal static
LineInfo
[] End(IAsyncResult result)
416
return (
LineInfo
[])thisPtr.lines.ToArray(typeof(
LineInfo
));