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