Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ QuotedPrintableStream() [1/2]

System.Net.Mime.QuotedPrintableStream.QuotedPrintableStream ( Stream stream,
int lineLength )
inlinepackage

Definition at line 133 of file QuotedPrintableStream.cs.

134 : base(stream)
135 {
136 if (lineLength < 0)
137 {
138 throw new ArgumentOutOfRangeException("lineLength");
139 }
140 _lineLength = lineLength;
141 }

References System.Net.Mime.QuotedPrintableStream._lineLength.