Azure.Storage.Files.DataLake.DataLakeUriBuilder
The DataLakeUriBuilder class provides a convenient way to
modify the contents of a Uri instance to point to
different Azure Data Lake resources like an file system, directory, or file.
namespace Azure.Storage.Files.DataLake
{
public class DataLakeUriBuilder
{
public string Scheme { get; set; }
public string Host { get; set; }
public int Port { get; set; }
public string AccountName { get; set; }
public string FileSystemName { get; set; }
public string DirectoryOrFilePath { get; set; }
public string Snapshot { get; set; }
public DataLakeSasQueryParameters Sas { get; set; }
public string Query { get; set; }
public DataLakeUriBuilder(Uri uri);
public Uri ToUri();
}
}