15 references to CurrentValues
System.Data.Common (15)
System\Data\Common\DbConnectionStringBuilder.cs (15)
52
get { return
CurrentValues
; }
56
get { return
CurrentValues
; }
88
if (
CurrentValues
.TryGetValue(keyword, out value))
103
flag =
CurrentValues
.ContainsKey(keyword);
106
CurrentValues
[keyword] = keyvalue;
199
get { return
CurrentValues
.Count; }
289
CurrentValues
.Clear();
305
return
CurrentValues
.ContainsKey(keyword);
319
if ((GetType() != connectionStringBuilder.GetType()) || (
CurrentValues
.Count != connectionStringBuilder.
CurrentValues
.Count))
324
foreach (KeyValuePair<string, object> entry in
CurrentValues
)
326
if (!connectionStringBuilder.
CurrentValues
.TryGetValue(entry.Key, out value) || !entry.Value.Equals(value))
366
if (
CurrentValues
.Remove(keyword))
379
return
CurrentValues
.ContainsKey(keyword);
390
return
CurrentValues
.TryGetValue(keyword, out value);