本文整理汇总了C#中BlobServiceClient.GetBlob方法的典型用法代码示例。如果您正苦于以下问题:C# BlobServiceClient.GetBlob方法的具体用法?C# BlobServiceClient.GetBlob怎么用?C# BlobServiceClient.GetBlob使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlobServiceClient
的用法示例。
在下文中一共展示了BlobServiceClient.GetBlob方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetBlob_PageBlob_GetsBlockBlobType
public void GetBlob_PageBlob_GetsBlockBlobType()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var initialBlobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreatePageBlob(containerName, initialBlobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var response = client.GetBlob(containerName, initialBlobName);
Assert.AreEqual(Communications.Common.BlobType.Page, response.BlobType);
}
示例2: GetBlob_ExistingBlobByValidStartAndEndRange_DownloadBlobRangeOnly
public void GetBlob_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 = client.GetBlob(containerName, blobName, range: new BlobRange(2, 6));
var data = response.GetDataBytes();
Assert.AreEqual(expectedContent.Substring(2, 5), Encoding.UTF8.GetString(data));
}
示例3: GetBlob_NonCopiedBlob_GetsCorrectCopyProperties
public void GetBlob_NonCopiedBlob_GetsCorrectCopyProperties()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var initialBlobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, initialBlobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var response = client.GetBlob(containerName, initialBlobName);
_util.AssertBlobCopyPropertiesMatch(containerName, initialBlobName, response);
}
示例4: GetBlob_ExistingBlob_DownloadsBlobStream
public void GetBlob_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 = client.GetBlob(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));
}
示例5: GetBlob_NonExistentBlob_ThrowsBlobDoesNotExistException
public void GetBlob_NonExistentBlob_ThrowsBlobDoesNotExistException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
client.GetBlob(containerName, blobName);
// expects exception
}
示例6: GetBlob_LeasedBlobGivenInvalidLease_ThrowsArgumentException
public void GetBlob_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);
client.GetBlob(containerName, blobName, null, leaseId: InvalidLeaseId);
// Throws exception
}
示例7: GetBlob_LeasedBlobGivenIncorrectLease_ThrowsLeaseIdMismatchWithBlobOperationAzureException
public void GetBlob_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);
client.GetBlob(containerName, blobName, null, leaseId: GetGuidString());
// Throws exception
}
示例8: GetBlob_LeasedBlobWithoutLeaseSpecified_GetsBlobWithoutException
public void GetBlob_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);
var blob = client.GetBlob(containerName, blobName);
blob = null;
client = null;
// no exception thrown
}
示例9: GetBlob_ExistingBlob_DownloadsBlobBytes
public void GetBlob_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 = client.GetBlob(containerName, blobName);
var data = response.GetDataBytes();
Assert.AreEqual(expectedContent, Encoding.UTF8.GetString(data));
}
示例10: GetBlob_LeasedBlobWithCorrectLeaseSpecified_GetsBlobWithoutException
public void GetBlob_LeasedBlobWithCorrectLeaseSpecified_GetsBlobWithoutException()
{
var containerName = GenerateSampleContainerName();
var blobName = GenerateSampleBlobName();
CreateContainer(containerName);
CreateBlockBlob(containerName, blobName);
var leaseId = LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
client.GetBlob(containerName, blobName, null, leaseId);
// no exception thrown
}