本文整理汇总了C#中BlobServiceClient.LeaseBlobAcquireAsync方法的典型用法代码示例。如果您正苦于以下问题:C# BlobServiceClient.LeaseBlobAcquireAsync方法的具体用法?C# BlobServiceClient.LeaseBlobAcquireAsync怎么用?C# BlobServiceClient.LeaseBlobAcquireAsync使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlobServiceClient
的用法示例。
在下文中一共展示了BlobServiceClient.LeaseBlobAcquireAsync方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LeaseBlobAcquireAsync_AlreadyLeasedBlob_ThrowsAlreadyPresentException
public async void LeaseBlobAcquireAsync_AlreadyLeasedBlob_ThrowsAlreadyPresentException()
{
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
await client.LeaseBlobAcquireAsync(containerName, blobName);
// expects exception
}
示例2: LeaseBlobAcquireAsync_AcquireSpecificLeaseIdForValidBlob_AcquiresLease
public async void LeaseBlobAcquireAsync_AcquireSpecificLeaseIdForValidBlob_AcquiresLease()
{
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
var expectedLeaseId = Guid.NewGuid().ToString();
var response = await client.LeaseBlobAcquireAsync(containerName, blobName, 30, expectedLeaseId);
Assert.AreEqual(expectedLeaseId, response.LeaseId);
_util.AssertBlobIsLeased(containerName, blobName, response.LeaseId);
}
示例3: LeaseBlobAcquireAsync_InvalidBlob_ThrowsBlobNotFoundException
public async void LeaseBlobAcquireAsync_InvalidBlob_ThrowsBlobNotFoundException()
{
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var containerName = GenerateSampleContainerName();
CreateContainer(containerName);
var blobName = GenerateSampleBlobName();
await client.LeaseBlobAcquireAsync(containerName, blobName);
// expects exception
}
示例4: LeaseBlobAcquireAsync_AcquireInfiniteLeaseForValidBlob_AcquiresLease
public async void LeaseBlobAcquireAsync_AcquireInfiniteLeaseForValidBlob_AcquiresLease()
{
const int infiniteLease = -1;
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
var response = await client.LeaseBlobAcquireAsync(containerName, blobName, infiniteLease);
_util.AssertBlobIsLeased(containerName, blobName, response.LeaseId);
}
示例5: LeaseBlobAcquireAsync_AcquireLeaseForValidBlob_AcquiresLease
public async void LeaseBlobAcquireAsync_AcquireLeaseForValidBlob_AcquiresLease()
{
const int leaseDuration = 30;
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var containerName = GenerateSampleContainerName();
var blobName = GenerateSampleBlobName();
CreateContainer(containerName);
CreateBlockBlob(containerName, blobName);
var response = await client.LeaseBlobAcquireAsync(containerName, blobName, leaseDuration);
AssertBlobIsLeased(containerName, blobName, response.LeaseId);
}