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


C# CloudBlobContainer.SetMetadata方法代码示例

本文整理汇总了C#中Microsoft.WindowsAzure.Storage.Blob.CloudBlobContainer.SetMetadata方法的典型用法代码示例。如果您正苦于以下问题:C# CloudBlobContainer.SetMetadata方法的具体用法?C# CloudBlobContainer.SetMetadata怎么用?C# CloudBlobContainer.SetMetadata使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.WindowsAzure.Storage.Blob.CloudBlobContainer的用法示例。


在下文中一共展示了CloudBlobContainer.SetMetadata方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: UpdateContainerMetadata

 /// <summary>
 /// Updates the container metadata.
 /// </summary>
 /// <param name="package">The package.</param>
 /// <param name="container">The container.</param>
 /// <param name="exists">if set to <c>true</c> [exists].</param>
 private void UpdateContainerMetadata(IPackage package, CloudBlobContainer container, bool exists)
 {
     container.Metadata[Constants.LatestModificationDate] = DateTimeOffset.Now.ToString();
     if (!exists)
     {
         container.Metadata[Constants.Created] = DateTimeOffset.Now.ToString();
     }
     container.Metadata[Constants.LastUploadedVersion] = package.Version.ToString();
     container.Metadata[Constants.PackageId] = package.Id;
     container.SetMetadata();
 }
开发者ID:kevinhillinger,项目名称:Nuget.Server.AzureStorage,代码行数:17,代码来源:AzureServerPackageRepository+.cs

示例2: ContainerReadWriteExpectLeaseSuccess

 /// <summary>
 /// Test container reads and writes, expecting success.
 /// </summary>
 /// <param name="testContainer">The container.</param>
 /// <param name="testAccessCondition">The access condition to use.</param>
 private void ContainerReadWriteExpectLeaseSuccess(CloudBlobContainer testContainer, AccessCondition testAccessCondition)
 {
     testContainer.FetchAttributes(testAccessCondition, null /* options */);
     testContainer.GetPermissions(testAccessCondition, null /* options */);
     testContainer.SetMetadata(testAccessCondition, null /* options */);
     testContainer.SetPermissions(new BlobContainerPermissions(), testAccessCondition, null /* options */);
 }
开发者ID:benaadams,项目名称:azure-storage-net,代码行数:12,代码来源:LeaseTests.cs

示例3: ContainerReadWriteExpectLeaseFailure

        /// <summary>
        /// Test container reads and writes, expecting lease failure.
        /// </summary>
        /// <param name="testContainer">The container.</param>
        /// <param name="testAccessCondition">The failing access condition to use.</param>
        /// <param name="expectedErrorCode">The expected error code.</param>
        /// <param name="description">The reason why these calls should fail.</param>
        private void ContainerReadWriteExpectLeaseFailure(CloudBlobContainer testContainer, AccessCondition testAccessCondition, HttpStatusCode expectedStatusCode, string expectedErrorCode, string description)
        {
            // FetchAttributes is a HEAD request with no extended error info, so it returns with the generic ConditionFailed error code.
            TestHelper.ExpectedException(
                () => testContainer.FetchAttributes(testAccessCondition, null /* options */),
                description + "(Fetch Attributes)",
                HttpStatusCode.PreconditionFailed);

            TestHelper.ExpectedException(
                () => testContainer.GetPermissions(testAccessCondition, null /* options */),
                description + " (Get Permissions)",
                expectedStatusCode,
                expectedErrorCode);
            TestHelper.ExpectedException(
                () => testContainer.SetMetadata(testAccessCondition, null /* options */),
                description + " (Set Metadata)",
                expectedStatusCode,
                expectedErrorCode);
            TestHelper.ExpectedException(
                () => testContainer.SetPermissions(new BlobContainerPermissions(), testAccessCondition, null /* options */),
                description + " (Set Permissions)",
                expectedStatusCode,
                expectedErrorCode);
        }
开发者ID:benaadams,项目名称:azure-storage-net,代码行数:31,代码来源:LeaseTests.cs

示例4: ContainerAcquireRenewLeaseTest

        /// <summary>
        /// Verifies the behavior of a lease while the lease holds. Once the lease expires, this method confirms that write operations succeed.
        /// The test is cut short once the <c>testLength</c> time has elapsed.
        /// </summary>
        /// <param name="leasedContainer">The container.</param>
        /// <param name="duration">The duration of the lease.</param>
        /// <param name="testLength">The maximum length of time to run the test.</param>
        /// <param name="tolerance">The allowed lease time error.</param>
        internal void ContainerAcquireRenewLeaseTest(CloudBlobContainer leasedContainer, TimeSpan? duration, TimeSpan testLength, TimeSpan tolerance)
        {
            DateTime beginTime = DateTime.UtcNow;

            while (true)
            {
                try
                {
                    // Attempt to delete the container with no lease ID.
                    leasedContainer.Delete();

                    // The delete succeeded, which means that the lease must have expired.

                    // If the lease was infinite then there is an error because it should not have expired.
                    Assert.IsNotNull(duration, "An infinite lease should not expire.");

                    // The lease should be past its expiration time.
                    Assert.IsTrue(DateTime.UtcNow - beginTime > duration - tolerance, "Deletes should not succeed while lease is present.");

                    // Since the lease has expired (and the container was deleted), the test is over.
                    return;
                }
                catch (StorageException exception)
                {
                    if (exception.RequestInformation.ExtendedErrorInformation.ErrorCode == BlobErrorCodeStrings.LeaseIdMissing)
                    {
                        // We got this error because the lease has not expired yet.

                        // Make sure the lease is not past its expiration time yet.
                        DateTime currentTime = DateTime.UtcNow;
                        if (duration.HasValue)
                        {
                            Assert.IsTrue(currentTime - beginTime < duration + tolerance, "Deletes should succeed after a lease expires.");
                        }

                        // End the test early if necessary
                        if (currentTime - beginTime > testLength)
                        {
                            // The lease has not expired, but we're not waiting any longer.
                            return;
                        }
                    }
                    else
                    {
                        throw;
                    }
                }

                // Attempt to write to and read from the container. This should always succeed.
                leasedContainer.SetMetadata();
                leasedContainer.FetchAttributes();

                // Wait 1 second before trying again.
                Thread.Sleep(TimeSpan.FromSeconds(1));
            }
        }
开发者ID:benaadams,项目名称:azure-storage-net,代码行数:64,代码来源:LeaseTests.cs

示例5: Initialize

 private static void Initialize(CloudBlobContainer container)
 {
     container.Metadata.Add("Author", MethodInfo.GetCurrentMethod().GetType().Assembly.GetName().Name);
     container.Metadata.Add("DateCreated", DateTime.UtcNow.ToString());
     container.SetMetadata();
 }
开发者ID:modulexcite,项目名称:StudentSuccessDashboard,代码行数:6,代码来源:AzureBlobClient.cs

示例6: UpdateAccessTimeStamp

 private void UpdateAccessTimeStamp(CloudBlobContainer container)
 {
     container.Metadata[AzureFileSystem.LastAccessed] = DateTimeOffset.Now.ToString();
     container.SetMetadata();
 }
开发者ID:sidshetye,项目名称:Nuget.Server.AzureStorage,代码行数:5,代码来源:AzureFileSystem.cs


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