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


C# SettingsPropertyCollection.Remove方法代码示例

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


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

示例1: Remove

		public void Remove ()
		{
			SettingsPropertyCollection col = new SettingsPropertyCollection ();
			SettingsProperty test_prop = new SettingsProperty ("test_prop");

			col.Add (test_prop);

			Assert.AreEqual (1, col.Count, "A1");

			col.Remove ("test_prop");

			Assert.AreEqual (0, col.Count, "A2");
		}
开发者ID:nlhepler,项目名称:mono,代码行数:13,代码来源:SettingsPropertyCollectionTest.cs

示例2: PropertyValuesInitialized

		public void PropertyValuesInitialized ()
		{
			SettingsPropertyCollection props = new SettingsPropertyCollection ();
			SettingsProviderCollection provs = new SettingsProviderCollection ();

			MyProvider p = new MyProvider ();
			MySettings s = new MySettings ();
			int i;

			try {
				i = s.Foo;
				Assert.Fail ("#1-2");
			} catch (SettingsPropertyNotFoundException) {
			}

			s.Initialize (new SettingsContext (), props, provs);
			Assert.AreEqual (0, s.PropertyValues.Count, "#2-1");
			Assert.AreEqual (0, s.Context.Count, "#2-2");

			props.Add (new SettingsProperty ("Foo", typeof (int), p, false, 10, SettingsSerializeAs.String, null, true, true));
			// initialize w/o the provider
			s.Initialize (new SettingsContext (), props, provs);
			Assert.AreEqual (0, s.PropertyValues.Count, "#3-0");
			Assert.AreEqual (100, s.Foo, "#3-1");
			// ... !!!
			Assert.AreEqual (1, s.PropertyValues.Count, "#3-2");
			SettingsPropertyValue v = s.PropertyValues ["Foo"];
			Assert.AreEqual (100, v.PropertyValue, "#3-3");
			Assert.AreEqual (0, s.Context.Count, "#3-4");

			// initialize w/ the provider
			provs.Add (p);
			provs.Add (new MyProvider2 ("Bar", 25));
			props.Add (new SettingsProperty ("Bar", typeof (int), provs ["MyProvider2"], false, 10, SettingsSerializeAs.String, null, true, true));
			s.Initialize (new SettingsContext (), props, provs);
			Assert.AreEqual (1, s.PropertyValues.Count, "#4-1");
			Assert.AreEqual (100, s.Foo, "#4-2");
			Assert.AreEqual (25, s.Bar, "#4-3");
			// ... !!!
			Assert.AreEqual (2, s.PropertyValues.Count, "#4-3-2");
			Assert.AreEqual (0, s.Context.Count, "#4-4");

			// wrong provider
			props.Remove ("Bar");
			props.Add (new SettingsProperty ("Bar", typeof (int), provs ["MyProvider"], false, 10, SettingsSerializeAs.String, null, true, true));
			s = new MySettings ();
			s.Initialize (new SettingsContext (), props, provs);
			Assert.AreEqual (0, s.PropertyValues.Count, "#5-1");
			Assert.AreEqual (100, s.Foo, "#5-2");
			Assert.AreEqual (10, s.Bar, "#5-3");
		}
开发者ID:calumjiao,项目名称:Mono-Class-Libraries,代码行数:51,代码来源:SettingsBaseTest.cs

示例3: ReadOnly_Remove

		public void ReadOnly_Remove ()
		{
			SettingsPropertyCollection col = new SettingsPropertyCollection ();

			SettingsProperty test_prop = new SettingsProperty ("test_prop");
			col.Add (test_prop);

			col.SetReadOnly ();

			col.Remove ("test_prop");
		}
开发者ID:nlhepler,项目名称:mono,代码行数:11,代码来源:SettingsPropertyCollectionTest.cs

示例4: GetPropertyValues

        public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection)
        {
            var result = new SettingsPropertyValueCollection();

              if (!this.Initialized)
              {
            return result;
              }

              string userName = (string)context["UserName"];

              if (string.IsNullOrEmpty(userName) || userName.Contains(@"\"))
              {
            return result;
              }

              var relevantProperties = this.GetRelevantProperties(collection);
              if (relevantProperties.Count == 0)
              {
            return result;
              }

              var userProperties = this.GetProperties(userName, this.SaleforcePropertyNames);

              foreach (SalesforceProfileProperty property in relevantProperties)
              {
            object value;
            if (userProperties.TryGetValue(property.SalesforceName, out value))
            {
              value = this.ConvertProperty(value, property.PropertyType);
            }

            result.Add(new SettingsPropertyValue(property)
              {
            IsDirty = false,
            PropertyValue = value,
              });

            collection.Remove(property.Name);
              }

              return result;
        }
开发者ID:clone278,项目名称:sitecore-salesforce-connect,代码行数:43,代码来源:SalesforceProfileProvider.cs


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