Come puoi vedere nelle fonti di riferimento, NameValueCollection eredita da NameObjectCollectionBase .
Quindi prendi il tipo base, ottieni l'hashtable privato tramite reflection e controlla se contiene una chiave specifica.
Affinché funzioni anche in Mono, devi vedere quale sia il nome dell'hashtable in mono, che è qualcosa che puoi vedere qui (m_ItemsContainer), e ottenere il campo mono, se il FieldInfo iniziale è null (mono- runtime).
Come questo
public static class ParameterExtensions
{
private static System.Reflection.FieldInfo InitFieldInfo()
{
System.Type t = typeof(System.Collections.Specialized.NameObjectCollectionBase);
System.Reflection.FieldInfo fi = t.GetField("_entriesTable", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
if(fi == null) // Mono
fi = t.GetField("m_ItemsContainer", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
return fi;
}
private static System.Reflection.FieldInfo m_fi = InitFieldInfo();
public static bool Contains(this System.Collections.Specialized.NameValueCollection nvc, string key)
{
//System.Collections.Specialized.NameValueCollection nvc = new System.Collections.Specialized.NameValueCollection();
//nvc.Add("hello", "world");
//nvc.Add("test", "case");
// The Hashtable is case-INsensitive
System.Collections.Hashtable ent = (System.Collections.Hashtable)m_fi.GetValue(nvc);
return ent.ContainsKey(key);
}
}
per il codice .NET 2.0 ultra-puro non riflettente, è possibile eseguire il ciclo delle chiavi, anziché utilizzare la tabella hash, ma è lento.
private static bool ContainsKey(System.Collections.Specialized.NameValueCollection nvc, string key)
{
foreach (string str in nvc.AllKeys)
{
if (System.StringComparer.InvariantCultureIgnoreCase.Equals(str, key))
return true;
}
return false;
}