本文整理汇总了C#中BlobServiceClient.GetBlobAsync方法的典型用法代码示例。如果您正苦于以下问题:C# BlobServiceClient.GetBlobAsync方法的具体用法?C# BlobServiceClient.GetBlobAsync怎么用?C# BlobServiceClient.GetBlobAsync使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlobServiceClient
的用法示例。
在下文中一共展示了BlobServiceClient.GetBlobAsync方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetBlobAsync_NonExistentBlob_ThrowsBlobDoesNotExistException
public async Task GetBlobAsync_NonExistentBlob_ThrowsBlobDoesNotExistException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.GetBlobAsync(containerName, blobName);
// expects exception
}
示例2: GetBlobAsync_ExistingBlobByValidStartAndEndRange_DownloadBlobRangeOnly
public async void GetBlobAsync_ExistingBlobByValidStartAndEndRange_DownloadBlobRangeOnly()
{
var expectedContent = "Expected blob content";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName, content: expectedContent);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var response = await client.GetBlobAsync(containerName, blobName, range: new BlobRange(2, 6));
var data = response.GetDataBytes();
Assert.AreEqual(expectedContent.Substring(2, 5), Encoding.UTF8.GetString(data));
}
示例3: GetBlobAsync_ExistingBlob_DownloadsBlobStream
public async Task GetBlobAsync_ExistingBlob_DownloadsBlobStream()
{
const string expectedContent = "Expected blob content";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName, content: expectedContent);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var response = await client.GetBlobAsync(containerName, blobName);
byte[] data;
using (var stream = response.GetDataStream())
{
using (var ms = new MemoryStream())
{
stream.CopyTo(ms);
data = ms.ToArray();
}
}
Assert.AreEqual(expectedContent, Encoding.UTF8.GetString(data));
}
示例4: GetBlobAsync_LeasedBlobGivenInvalidLease_ThrowsArgumentException
public async void GetBlobAsync_LeasedBlobGivenInvalidLease_ThrowsArgumentException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.GetBlobAsync(containerName, blobName, null, leaseId: InvalidLeaseId);
// Throws exception
}
示例5: GetBlobAsync_LeasedBlobGivenIncorrectLease_ThrowsLeaseIdMismatchWithBlobOperationAzureException
public async void GetBlobAsync_LeasedBlobGivenIncorrectLease_ThrowsLeaseIdMismatchWithBlobOperationAzureException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.GetBlobAsync(containerName, blobName, null, leaseId: GetGuidString());
// Throws exception
}
示例6: GetBlobAsync_LeasedBlobWithoutLeaseSpecified_GetsBlobWithoutException
public async void GetBlobAsync_LeasedBlobWithoutLeaseSpecified_GetsBlobWithoutException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.GetBlobAsync(containerName, blobName);
// no exception thrown
}
示例7: GetBlobAsync_ExistingBlob_DownloadsBlobBytes
public async Task GetBlobAsync_ExistingBlob_DownloadsBlobBytes()
{
const string expectedContent = "Expected blob content";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName, content: expectedContent);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var response = await client.GetBlobAsync(containerName, blobName);
var data = response.GetDataBytes();
Assert.AreEqual(expectedContent, Encoding.UTF8.GetString(data));
}