4 instantiations of NameValuePair
System.Data (4)
fx\src\data\System\Data\Common\DbConnectionOptions.cs (4)
910localKeychain = localKeychain.Next = new NameValuePair(realkeyname, keyvalue, nextStartPosition - startPosition); 913keychain = localKeychain = new NameValuePair(realkeyname, keyvalue, nextStartPosition - startPosition); 936next = new NameValuePair(current.Name, current.Value, current.Length); 942next = new NameValuePair(current.Name, "*", current.Name.Length + equalstar.Length);
15 references to NameValuePair
System.Data (15)
fx\src\data\System\Data\Common\DbConnectionOptions.cs (8)
110internal readonly NameValuePair KeyChain; 442for(NameValuePair current = KeyChain; null != current; current = current.Next) { 520for(NameValuePair current = KeyChain; null != current; current = current.Next) { 877private static NameValuePair ParseInternal(Hashtable parsetable, string connectionString, bool buildChain, Hashtable synonyms, bool firstKey) { 880NameValuePair localKeychain = null, keychain = null; 927internal NameValuePair ReplacePasswordPwd(out string constr, bool fakePassword) { 930NameValuePair head = null, tail = null, next = null; 932for(NameValuePair current = KeyChain; null != current; current = current.Next) {
fx\src\data\System\Data\Common\DBConnectionString.cs (3)
43readonly private NameValuePair _keychain; 149internal NameValuePair KeyChain { 320for(NameValuePair current = entry.KeyChain; null != current; current = current.Next) {
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (1)
146for(NameValuePair pair = constr.KeyChain; null != pair; pair = pair.Next) {
fx\src\data\System\Data\Common\NameValuePair.cs (2)
22private NameValuePair _next; 46internal NameValuePair Next {
fx\src\data\System\Data\Common\NameValuePermission.cs (1)
68for(NameValuePair keychain = entry.KeyChain; null != keychain; keychain = keychain.Next) {