KuduClientVFSExtensions.

VFSDownloadStream(IKuduClient, FilePath) Method

Summary

Downloads remote file to stream.

Syntax

public static Stream VFSDownloadStream(this IKuduClient client, FilePath remotePath)

Examples

 #addin nuget:?package=Cake.Kudu.Client

 string  baseUri     = EnvironmentVariable("KUDU_CLIENT_BASEURI"),
         userName    = EnvironmentVariable("KUDU_CLIENT_USERNAME"),
         password    = EnvironmentVariable("KUDU_CLIENT_PASSWORD");

 IKuduClient kuduClient = KuduClient(
     baseUri,
     userName,
     password);

 FilePath remoteFilePath = "/site/wwwroot/hello.txt";

 Stream resultStream = kuduClient.VFSDownloadStream(remoteFilePath);

 Information("Result length: {0}", resultStream.Length);

Parameters

Name Type Description
client IKuduClient The Kudu client.
remotePath FilePath The remote source path.

Return Value

Type Description
Stream Content as Stream.