5 references to DefaultMaxLineLength
System (5)
net\System\Net\mail\EncodedStreamFactory.cs (2)
52
writeState = new Base64WriteStateInfo(initialBufferSize, header, footer,
DefaultMaxLineLength
, headerTextLength);
56
writeState = new WriteStateInfoBase(initialBufferSize, header, footer,
DefaultMaxLineLength
, headerTextLength);
net\System\Net\mail\QuotedPrintableStream.cs (2)
80
: this(stream, EncodedStreamFactory.
DefaultMaxLineLength
) {
251
writeState.CurrentLineLength + sizeOfEncodedChar + 2 >= EncodedStreamFactory.
DefaultMaxLineLength
)
net\System\Net\mail\WriteStateInfoBase.cs (1)
20
this._maxLineLength = EncodedStreamFactory.
DefaultMaxLineLength
;