4 instantiations of NameValuePair
System.Data.Odbc (4)
src\runtime\src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (4)
578
localKeychain = localKeychain.Next = new
NameValuePair
(realkeyname, keyvalue, nextStartPosition - startPosition);
583
keychain = localKeychain = new
NameValuePair
(realkeyname, keyvalue, nextStartPosition - startPosition);
611
next = new
NameValuePair
(current.Name, current.Value, current.Length);
619
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)
328
for (
NameValuePair
? current = _keyChain; null != current; current = current.Next)
419
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\runtime\src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (6)
94
internal readonly
NameValuePair
? _keyChain;
535
private static
NameValuePair
? ParseInternal(Dictionary<string, string?> parsetable, string connectionString, bool buildChain, Dictionary<string, string>? synonyms, bool firstKey)
539
NameValuePair
? localKeychain = null, keychain = null;
598
internal
NameValuePair
? ReplacePasswordPwd(out string constr, bool fakePassword)
602
NameValuePair
? head = null, tail = null, next = null;
604
for (
NameValuePair
? current = _keyChain; null != current; current = current.Next)
src\runtime\src\libraries\Common\src\System\Data\Common\NameValuePair.cs (2)
13
private
NameValuePair
? _next;
35
internal
NameValuePair
? Next