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