Click or drag to resize

UploadBuffering Enumeration

IT Hit WebDAV Classes Reference
Specifies if content is buffered in memory before sending to server.

Namespace:  ITHit.MapWebDAVDrive.Core
Assembly:  ITHit.MapWebDAVDrive.Core (in ITHit.MapWebDAVDrive.Core.dll) Version: 1.3.997.0 (1.3.997.0)
Syntax
public enum UploadBuffering
Members
  Member nameValueDescription
Auto0The Map WebDAV Drive will try to detect authentication scheme used by server. The file content will not be buffered in memory if Basic, Digest, Kerberos or Anonymous is detected. The content is buffered if NTLM is detected.
On1The file content will be buffered in memory before upload. Use this option for best compatibility. However buffering significantly reduces maximum file size that can be uploaded to server. The maximum file size will be about 1/2 of physical memory size.
Off2The file content will not be buffered in memory before upload. To use this option with NTLM authentication the server must allow unbuffered NTLM requests.
Remarks
To use unbuffered requests with NTLM authentication, subsequent requests over the same TCP connection must be processed on server side using the authentication information of the initial request.
See Also