IItemContentGetReadStreamAsync Method (Int64, Int64, IDictionaryString, String, CancellationToken)
IT Hit WebDAV Classes Reference 
            Loads part of the content of the file from WebDAV server.
            
 
    Namespace: 
   ITHit.WebDAV.Client
    Assembly:
   ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
SyntaxTask<Stream> GetReadStreamAsync(
	long startIndex,
	long count,
	IDictionary<string, string> headers = null,
	CancellationToken cancellationToken = null
)
Function GetReadStreamAsync ( 
	startIndex As Long,
	count As Long,
	Optional headers As IDictionary(Of String, String) = Nothing,
	Optional cancellationToken As CancellationToken = Nothing
) As Task(Of Stream)
Task<Stream^>^ GetReadStreamAsync(
	long long startIndex, 
	long long count, 
	IDictionary<String^, String^>^ headers = nullptr, 
	CancellationToken cancellationToken = nullptr
)
abstract GetReadStreamAsync : 
        startIndex : int64 * 
        count : int64 * 
        ?headers : IDictionary<string, string> * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _headers = defaultArg headers null
        let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<Stream> 
Parameters
- startIndex
 - Type: SystemInt64
Start position to retrieve count number of bytes from. - count
 - Type: SystemInt64
Number of bytes to retrieve. - headers (Optional)
 - Type: System.Collections.GenericIDictionaryString, String
Request headers. - cancellationToken (Optional)
 - Type: System.ThreadingCancellationToken
Propagates notification that operations should be canceled. 
Return Value
Type: 
TaskStreamStream to read resource content.
Exceptions
Remarks
            If server supports 
If-Range header and last modification time do not match
            (the file content was modified) the library will throw 
FileContentModifiedException exception.
            
See Also