Class PartialDownloadExtensionBase
Extensions for partial section download.
Inheritance
System.Object
PartialDownloadExtensionBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public static class PartialDownloadExtensionBase
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 |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<System.IO.Stream>> | Response containing the partial section stream content. |