Class PartialDownloadExtensionBase
Extensions for partial section download.
Inheritance
System.Object
PartialDownloadExtensionBase
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public static class PartialDownloadExtensionBase : object
Methods
DownloadContentAsync(Section, Int32, Int32)
Download partial section content.
Declaration
public static async Task<DeserializedHttpResponse<Stream>> DownloadContentAsync(this Section section, int startByte, int endByte)
Parameters
Type | Name | Description |
---|---|---|
Section | section | The section for which the content is downloaded. |
System.Int32 | startByte | The start byte from which to read content. |
System.Int32 | endByte | The end byte to which to read content. |
Returns
Type | Description |
---|---|
Task<DeserializedHttpResponse<Stream>> | Response containing the partial section stream content. |