5 instantiations of SmtpReplyReaderFactory
System.Net.Mail (5)
System\Net\Mail\SmtpConnection.cs (5)
193
_responseReader = new
SmtpReplyReaderFactory
(_stream!);
246
_responseReader = new
SmtpReplyReaderFactory
(_stream);
471
_connection._responseReader = new
SmtpReplyReaderFactory
(_connection._stream!);
714
_connection._responseReader = new
SmtpReplyReaderFactory
(_connection._stream);
729
thisPtr._connection._responseReader = new
SmtpReplyReaderFactory
(thisPtr._connection._stream);
12 references to SmtpReplyReaderFactory
System.Net.Mail (12)
System\Net\Mail\SmtpConnection.cs (2)
33
private
SmtpReplyReaderFactory
? _responseReader;
56
internal
SmtpReplyReaderFactory
? Reader => _responseReader;
System\Net\Mail\SmtpReplyReader.cs (4)
12
private readonly
SmtpReplyReaderFactory
_reader;
14
internal SmtpReplyReader(
SmtpReplyReaderFactory
reader)
36
return
SmtpReplyReaderFactory
.EndReadLines(result);
41
return
SmtpReplyReaderFactory
.EndReadLine(result);
System\Net\Mail\SmtpReplyReaderFactory.cs (6)
76
_byteBuffer ??= new byte[
SmtpReplyReaderFactory
.DefaultBufferSize];
307
_byteBuffer ??= new byte[
SmtpReplyReaderFactory
.DefaultBufferSize];
365
private readonly
SmtpReplyReaderFactory
_parent;
371
internal ReadLinesAsyncResult(
SmtpReplyReaderFactory
parent, AsyncCallback? callback, object? state) : base(null, state, callback)
376
internal ReadLinesAsyncResult(
SmtpReplyReaderFactory
parent, AsyncCallback? callback, object? state, bool oneLine) : base(null, state, callback)
392
_parent._byteBuffer ??= new byte[
SmtpReplyReaderFactory
.DefaultBufferSize];