4 references to DefaultDownloadBufferLength
System.Net.WebClient (4)
System\Net\WebClient.cs (4)
833
byte[] copyBuffer = new byte[contentLength == -1 || contentLength >
DefaultDownloadBufferLength
?
DefaultDownloadBufferLength
: contentLength];
880
byte[] copyBuffer = new byte[contentLength == -1 || contentLength >
DefaultDownloadBufferLength
?
DefaultDownloadBufferLength
: contentLength];