Пример #1
0
 /// <summary>
 /// Remove the overriding property set by <see cref="SetOverrideProperty"/>
 /// </summary>
 /// <param name="key"></param>
 public void clearOverrideProperty(string key)
 {
     m_OverrideProperties.ClearProperty(key);
 }
Пример #2
0
 /// <summary>
 /// Clear the property with the <em>container configuration</em>.
 /// <b>Warning: </b>{@link #getProperty(String)} on this key may still return some value
 /// if there is any other configuration that contain the same property and is in front of the
 /// <em>container configuration</em> in the configurations list.
 /// </summary>
 /// <param name="key">The key to remove along with corresponding value.</param>
 public override void ClearProperty(string key)
 {
     m_ContainerConfiguration.ClearProperty(key);
 }