Azure.Storage.Files.DataLake.Models.DataLakeFileUploadOptions
Optional parameters for uploading to a Data Lake file.
namespace Azure.Storage.Files.DataLake.Models
{
public class DataLakeFileAppendOptions
{
public string LeaseId { get; set; }
public DataLakeLeaseAction? LeaseAction { get; set; }
public TimeSpan? LeaseDuration { get; set; }
public string ProposedLeaseId { get; set; }
public IProgress<long> ProgressHandler { get; set; }
public byte[] ContentHash { get; set; }
public UploadTransferValidationOptions TransferValidation { get; set; }
public bool? Flush { get; set; }
public DataLakeFileAppendOptions();
}
}