Example #1
0
 /// <summary>
 /// Removes the specified setting.
 /// </summary>
 /// <param name="setting">The setting.</param>
 public void Remove(CustomSetting setting)
 {
     List.Remove(setting);
 }
Example #2
0
 /// <summary>
 /// Sets the custom value.
 /// </summary>
 /// <param name="module">The module.</param>
 /// <param name="key">The key.</param>
 /// <param name="value">The value.</param>
 public void SetCustomValue( string module, string key, string value )
 {
     CustomSetting cstm = new CustomSetting( module );
     cstm.SetValue( key, value );
     Add( cstm );
 }
Example #3
0
 /// <summary>
 /// Adds the specified setting.
 /// </summary>
 /// <param name="setting">The setting.</param>
 public void Add(CustomSetting setting)
 {
     List.Add(setting);
 }