15 references to CurrentValues
System.Data (15)
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (15)
49get { return (ICollection)CurrentValues; } 52get { return (IDictionary)CurrentValues; } 77if (CurrentValues.TryGetValue(keyword, out value)) { 89flag = CurrentValues.ContainsKey(keyword); 92CurrentValues[keyword] = keyvalue; 166get { return CurrentValues.Count; } 239CurrentValues.Clear(); 252return CurrentValues.ContainsKey(keyword); 265if ((GetType() != connectionStringBuilder.GetType()) || (CurrentValues.Count != connectionStringBuilder.CurrentValues.Count)) { 269foreach(KeyValuePair<string, object> entry in CurrentValues) { 270if (!connectionStringBuilder.CurrentValues.TryGetValue(entry.Key, out value) || !entry.Value.Equals(value)) { 306if (CurrentValues.Remove(keyword)) { 317return CurrentValues.ContainsKey(keyword); 326return CurrentValues.TryGetValue(keyword, out value);