本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}