4 instantiations of NameValuePair
System.Data.OleDb (4)
DbConnectionOptions.cs (4)
925localKeychain = localKeychain.Next = new NameValuePair(realkeyname, keyvalue, nextStartPosition - startPosition); 929keychain = localKeychain = new NameValuePair(realkeyname, keyvalue, nextStartPosition - startPosition); 957next = new NameValuePair(current.Name, current.Value, current.Length); 964next = new NameValuePair(current.Name, "*", current.Name.Length + equalstar.Length);
9 references to NameValuePair
System.Data.OleDb (9)
DbConnectionOptions.cs (7)
102internal readonly NameValuePair? KeyChain; 402for (NameValuePair? current = KeyChain; null != current; current = current.Next) 885private static NameValuePair? ParseInternal(Hashtable parsetable, string connectionString, bool buildChain, Hashtable? synonyms, bool firstKey) 889NameValuePair? localKeychain = null, keychain = null; 944internal NameValuePair? ReplacePasswordPwd(out string constr, bool fakePassword) 948NameValuePair? head = null, tail = null, next = null; 950for (NameValuePair? current = KeyChain; null != current; current = current.Next)
System\Data\Common\NameValuePair.cs (2)
13private NameValuePair? _next; 35internal NameValuePair? Next