當前位置: 首頁>>代碼示例>>C#>>正文


C# BlobServiceClient.GetBlob方法代碼示例

本文整理匯總了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);
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:12,代碼來源:BlobOperationsTests.cs

示例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));
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:14,代碼來源:BlobOperationsTests.cs

示例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);
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:12,代碼來源:BlobOperationsTests.cs

示例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));
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:22,代碼來源:BlobOperationsTests.cs

示例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
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:11,代碼來源:BlobOperationsTests.cs

示例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
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:13,代碼來源:BlobOperationsTests.cs

示例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
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:13,代碼來源:BlobOperationsTests.cs

示例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
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:16,代碼來源:BlobOperationsTests.cs

示例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));
        }
開發者ID:BrianMcBrayer,項目名稱:BasicAzureStorageSDK,代碼行數:14,代碼來源:BlobOperationsTests.cs

示例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
        }
開發者ID:renlesterdg,項目名稱:BasicAzureStorageSDK,代碼行數:13,代碼來源:BlobServiceClientTests.cs


注:本文中的BlobServiceClient.GetBlob方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。