2 writes to writer
System (2)
net\System\Net\mail\MimeMultiPart.cs (2)
149context.writer = new MimeWriter(context.outputStream, ContentType.Boundary); 185this.writer = writer;
6 references to writer
System (6)
net\System\Net\mail\MimeMultiPart.cs (6)
86((MimeWriter)context.writer).EndClose(result); 114IAsyncResult sendResult = part.BeginSend(context.writer, mimePartSentCallback, allowUnicode, context); 121IAsyncResult closeResult = ((MimeWriter)context.writer).BeginClose(new AsyncCallback(MimeWriterCloseCallback), context); 148context.outputStream = context.writer.EndGetContentStream(result); 154IAsyncResult sendResult = part.BeginSend(context.writer, mimePartSentCallback, allowUnicode, context); 161IAsyncResult closeResult = ((MimeWriter)context.writer).BeginClose(new AsyncCallback(MimeWriterCloseCallback),context);