15 references to CurrentValues
System.Data.Common (15)
System\Data\Common\DbConnectionStringBuilder.cs (15)
49
get { return
CurrentValues
; }
53
get { return
CurrentValues
; }
85
if (
CurrentValues
.TryGetValue(keyword, out value))
100
flag =
CurrentValues
.ContainsKey(keyword);
103
CurrentValues
[keyword] = keyvalue;
196
get { return
CurrentValues
.Count; }
286
CurrentValues
.Clear();
302
return
CurrentValues
.ContainsKey(keyword);
316
if ((GetType() != connectionStringBuilder.GetType()) || (
CurrentValues
.Count != connectionStringBuilder.
CurrentValues
.Count))
321
foreach (KeyValuePair<string, object> entry in
CurrentValues
)
323
if (!connectionStringBuilder.
CurrentValues
.TryGetValue(entry.Key, out value) || !entry.Value.Equals(value))
363
if (
CurrentValues
.Remove(keyword))
376
return
CurrentValues
.ContainsKey(keyword);
387
return
CurrentValues
.TryGetValue(keyword, out value);