a IEnumerator
Gtk.Container implements IEnumerable, so you can iterate through its children like this:
C# Example
foreach (Widget w in myContainer) { // Do something with w }