public void Clear() { if (_dictionary != null) { _dictionary.Clear(); } }
/// <summary> /// Clear all the context properties /// </summary> /// <remarks> /// <para> /// Clear all the context properties /// </para> /// </remarks> public void Clear() { PropertiesDictionary dictionary = GetProperties(false); if (dictionary != null) { dictionary.Clear(); } }
/// <summary> /// Clear all properties /// </summary> /// <remarks> /// <para> /// Clear all properties /// </para> /// </remarks> public void Clear() { #if NETCF PropertiesDictionary _dictionary = GetProperties(false); #endif if (_dictionary != null) { _dictionary.Clear(); } }