private string GetBlobPathWithAuthorization(SearchResult <IndexedContent> expected)
        {
            var expectedFileName = Base64Utils.Decode(expected.Document.Id);
            var sas      = blobClient.GetSAS(expectedFileName);
            var blobPath = expected.Document.BlobPath + sas;

            return(blobPath);
        }