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