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