Пример #1
0
        public async Task TestExists()
        {
            CloudBlockBlob blob = await CreateEmptyBlob("blob");
            AzureBlob azureBlob = new AzureBlob(blob);

            Assert.IsTrue(await azureBlob.Exists());

            blob.Delete();
            Assert.IsFalse(await azureBlob.Exists());
        }