WebDavSessionAsyncAllowWriteStreamBuffering Property
IT Hit WebDAV Classes Reference
Gets or sets a value that indicates whether to buffer the data sent to server.
Namespace:
ITHit.WebDAV.Client
Assembly:
ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax public bool AllowWriteStreamBuffering { get; set; }
Public Property AllowWriteStreamBuffering As Boolean
Get
Set
public:
virtual property bool AllowWriteStreamBuffering {
bool get () sealed;
void set (bool value) sealed;
}
abstract AllowWriteStreamBuffering : bool with get, set
override AllowWriteStreamBuffering : bool with get, set
Property Value
Type:
BooleanBoolean value indicting if data will be buffered non client side. Default is
true.
Implements
IConnectionSettingsAsyncAllowWriteStreamBufferingExamples
The following example demonstrates how to upload a file from local file system to a WebDAV server.
string license = "<?xml version='1.0' encoding='utf...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolderAsync folder = await session.OpenFolderAsync(new Uri("http://server:8080/Sales"));
IFileAsync file = await folder.CreateFileAsync("products.xlsx");
file.AllowWriteStreamBuffering = false;
file.TimeOut = 36000000;
await file.UploadAsync("C:\\products.xlsx");
See Also