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


C# IConfiguration.SetProperty方法代码示例

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


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

示例1: AddOrChangeProperty

 /// <summary>
 /// Add or update the property in the underlying config depending on if it exists
 /// </summary>
 /// <param name="name"></param>
 /// <param name="newValue"></param>
 /// <param name="config"></param>
 public void AddOrChangeProperty(string name, object newValue, IConfiguration config)
 {
     // We do not want to abort the operation due to failed validation on one property
     try
     {
         if (!config.ContainsKey(name))
         {
             m_Log.DebugFormat("Adding property key [{0}], value [{1}]", name, newValue);
             config.AddProperty(name, newValue);
             return;
         }
         var oldValue = config.GetProperty(name);
         if (newValue != null)
         {
             object newValueArray;
             if (oldValue is IList && config.ListDelimiter != '\0')
             {
                 newValueArray = new ArrayList();
                 var values = ((string)newValue).Split(config.ListDelimiter).Select(v => v.Trim()).Where(v => v.Length != 0);
                 foreach (var value in values)
                 {
                     ((IList)newValueArray).Add(value);
                 }
             }
             else
             {
                 newValueArray = newValue;
             }
             if (!ObjectUtils.AreEqual(newValueArray, oldValue))
             {
                 m_Log.DebugFormat("Updating property key [{0}], value [{1}]", name, newValue);
                 config.SetProperty(name, newValue);
             }
         }
         else if (oldValue != null)
         {
             m_Log.DebugFormat("nulling out property key [{0}]", name);
             config.SetProperty(name, null);
         }
     }
     catch (ValidationException e)
     {
         m_Log.Warn("Validation failed for property " + name, e);
     }
 }
开发者ID:CH3CHO,项目名称:Archaius.Net,代码行数:51,代码来源:DynamicPropertyUpdater.cs

示例2: TestConfigurationSet

 private void TestConfigurationSet(IConfiguration conf)
 {
     long start = Environment.TickCount;
     for (int i = 0; i < 1000000; i++)
     {
         conf.SetProperty("key" + +(i % 100), "value");
     }
     long duration = Environment.TickCount - start;
     Console.WriteLine("Set property for " + conf + " took " + duration + " ms");
 }
开发者ID:CH3CHO,项目名称:Archaius.Net,代码行数:10,代码来源:ConcurrentDictionaryConfigurationTest.cs


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