当前位置: 首页>>代码示例>>C#>>正文


C# BlobServiceClient.GetBlockList方法代码示例

本文整理汇总了C#中BlobServiceClient.GetBlockList方法的典型用法代码示例。如果您正苦于以下问题:C# BlobServiceClient.GetBlockList方法的具体用法?C# BlobServiceClient.GetBlockList怎么用?C# BlobServiceClient.GetBlockList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BlobServiceClient的用法示例。


在下文中一共展示了BlobServiceClient.GetBlockList方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetBlockList_CommittedAndUncommittedBlocksExistsRequestAll_GetsAllBlocksCorrectly

        public void GetBlockList_CommittedAndUncommittedBlocksExistsRequestAll_GetsAllBlocksCorrectly()
        {
            const string dataPerBlock = "foo";
            var containerName = _util.GenerateSampleContainerName(_runId);
            var blobName = _util.GenerateSampleBlobName(_runId);
            _util.CreateContainer(containerName);
            var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Committed);
            var uncommittedBlockList = _util.CreateBlockIdList(3, PutBlockListListType.Uncommitted);
            var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
            var uncommittedBlockIds = _util.GetIdsFromBlockIdList(uncommittedBlockList);
            _util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
            _util.PutBlockList(containerName, blobName, blockIds);
            _util.CreateBlockList(containerName, blobName, uncommittedBlockIds, dataPerBlock);
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);

            var response = client.GetBlockList(containerName, blobName, null, GetBlockListListType.All);

            Assert.Greater(response.UncommittedBlocks.Count, 0);
            Assert.Greater(response.CommittedBlocks.Count, 0);
            _util.AssertBlockListsAreEqual(containerName, blobName, response);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:21,代码来源:BlobOperationsTests.cs

示例2: GetBlockList_RequiredArgsOnly_GetsCorrectUncommittedBlocks

        public void GetBlockList_RequiredArgsOnly_GetsCorrectUncommittedBlocks()
        {
            const string dataPerBlock = "foo";
            var containerName = _util.GenerateSampleContainerName(_runId);
            var blobName = _util.GenerateSampleBlobName(_runId);
            _util.CreateContainer(containerName);
            var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Uncommitted);
            var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
            _util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);

            var response = client.GetBlockList(containerName, blobName, null, GetBlockListListType.All);

            Assert.Greater(response.UncommittedBlocks.Count, 0);
            _util.AssertBlockListsAreEqual(containerName, blobName, BlockListingFilter.Uncommitted, response.UncommittedBlocks);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:16,代码来源:BlobOperationsTests.cs

示例3: GetBlockList_BlobWithNoCommittedBlocks_GetsZeroContentLength

        public void GetBlockList_BlobWithNoCommittedBlocks_GetsZeroContentLength()
        {
            var containerName = _util.GenerateSampleContainerName(_runId);
            var blobName = _util.GenerateSampleBlobName(_runId);
            _util.CreateContainer(containerName);
            var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Uncommitted);
            var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
            _util.CreateBlockList(containerName, blobName, blockIds, "foo");
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);

            var response = client.GetBlockList(containerName, blobName, null, GetBlockListListType.All);

            Assert.AreEqual(0, response.BlobContentLength);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:14,代码来源:BlobOperationsTests.cs

示例4: GetBlockList_BlobWithCommittedBlocks_GetsNonZeroContentLength

        public void GetBlockList_BlobWithCommittedBlocks_GetsNonZeroContentLength()
        {
            var containerName = _util.GenerateSampleContainerName(_runId);
            var blobName = _util.GenerateSampleBlobName(_runId);
            _util.CreateContainer(containerName);
            _util.CreateBlockBlob(containerName, blobName, content: "A Committed Block");
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);

            var response = client.GetBlockList(containerName, blobName, null, GetBlockListListType.All);

            Assert.Greater(response.BlobContentLength, 0);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:12,代码来源:BlobOperationsTests.cs

示例5: GetBlockList_BlobWithCommittedBlocks_GetsPopulatedETag

        public void GetBlockList_BlobWithCommittedBlocks_GetsPopulatedETag()
        {
            var containerName = _util.GenerateSampleContainerName(_runId);
            var blobName = _util.GenerateSampleBlobName(_runId);
            _util.CreateContainer(containerName);
            _util.CreateBlockBlob(containerName, blobName, content: "A Committed Block");
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);

            var response = client.GetBlockList(containerName, blobName, null, GetBlockListListType.All);

            Assert.IsNotEmpty(response.ETag);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:12,代码来源:BlobOperationsTests.cs


注:本文中的BlobServiceClient.GetBlockList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。