4 instantiations of NameValuePair
System.Data.Odbc (4)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (4)
588
localKeychain = localKeychain.Next = new
NameValuePair
(realkeyname, keyvalue, nextStartPosition - startPosition);
593
keychain = localKeychain = new
NameValuePair
(realkeyname, keyvalue, nextStartPosition - startPosition);
621
next = new
NameValuePair
(current.Name, current.Value, current.Length);
629
next = new
NameValuePair
(current.Name, "*", current.Name.Length + equalstar.Length);
13 references to NameValuePair
System.Data.Odbc (13)
Common\System\Data\Common\DbConnectionOptions.cs (2)
330
for (
NameValuePair
? current = _keyChain; null != current; current = current.Next)
421
for (
NameValuePair
? current = _keyChain; null != current; current = current.Next)
Common\System\Data\Common\DBConnectionString.cs (3)
32
private readonly
NameValuePair
? _keychain;
150
internal
NameValuePair
? KeyChain
365
for (
NameValuePair
? current = entry.KeyChain; null != current; current = current.Next)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (6)
101
internal readonly
NameValuePair
? _keyChain;
545
private static
NameValuePair
? ParseInternal(Dictionary<string, string?> parsetable, string connectionString, bool buildChain, Dictionary<string, string>? synonyms, bool firstKey)
549
NameValuePair
? localKeychain = null, keychain = null;
608
internal
NameValuePair
? ReplacePasswordPwd(out string constr, bool fakePassword)
612
NameValuePair
? head = null, tail = null, next = null;
614
for (
NameValuePair
? current = _keyChain; null != current; current = current.Next)
src\libraries\Common\src\System\Data\Common\NameValuePair.cs (2)
13
private
NameValuePair
? _next;
35
internal
NameValuePair
? Next