public static Task AppendTextAsync(this CloudBlob blob, string content, string leaseId, CancellationToken cancellationToken = default(CancellationToken)) { var buffer = content.ToBytes(); return(blob.AppendBytesAsync(buffer, leaseId, cancellationToken)); }