5 references to DefaultMaxLineLength
System.Net.Mail (5)
System\Net\Mime\EncodedStreamFactory.cs (2)
28
writeState = new Base64WriteStateInfo(InitialBufferSize, header, footer,
DefaultMaxLineLength
, headerTextLength);
32
writeState = new WriteStateInfoBase(InitialBufferSize, header, footer,
DefaultMaxLineLength
, headerTextLength);
System\Net\Mime\QuotedPrintableStream.cs (2)
76
internal QuotedPrintableStream(Stream stream, bool encodeCRLF) : this(stream, EncodedStreamFactory.
DefaultMaxLineLength
)
213
_writeState!.CurrentLineLength + SizeOfEncodedChar + 2 >= EncodedStreamFactory.
DefaultMaxLineLength
)
System\Net\Mime\WriteStateInfoBase.cs (1)
23
_maxLineLength = EncodedStreamFactory.
DefaultMaxLineLength
;