public void TestBlobAttributesEncryption()
        {
            this.blob.FetchAttributes();
            Assert.IsTrue(this.blob.Properties.IsServerEncrypted);

            CloudBlockBlob testBlob = this.container.GetBlockBlobReference(this.blob.Name);

            testBlob.DownloadText();
            Assert.IsTrue(testBlob.Properties.IsServerEncrypted);
        }