Get a read-only enumeration of all the elements in this object.
An IDictionaryEnumerator type enumeration.
//To loop over all the values
foreach( DictionaryEntry entry in connection.ServerProperties )
{
Console.WriteLine("Key:" + entry.Key + " Value:" + entry.Value );
}
ServerProperties Class | Sharkbite.Irc Namespace