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


C# BlobServiceClient.LeaseBlobAcquireAsync方法代码示例

本文整理汇总了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
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:13,代码来源:BlobOperationsTests.cs

示例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);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:14,代码来源:BlobOperationsTests.cs

示例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
        }
开发者ID:renlesterdg,项目名称:BasicAzureStorageSDK,代码行数:11,代码来源:BlobServiceClientTests.cs

示例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);
        }
开发者ID:BrianMcBrayer,项目名称:BasicAzureStorageSDK,代码行数:13,代码来源:BlobOperationsTests.cs

示例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);
        }
开发者ID:renlesterdg,项目名称:BasicAzureStorageSDK,代码行数:13,代码来源:BlobServiceClientTests.cs


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