By far, the clearest and most unambiguous way to describe a variable, parameter, or field of type "IEnumerable<Foo>" is to call it an "IEnumerable<foo>", "IEnumerable(Of foo)", or "IEnumerable of foo". Being a VB programmer, I prefer the middle syntax, especially since it doesn't use punctuation that can be mistaken for HTML markup; in speaking, the latter form would be the most natural pronunciation (with the initial "I" representing its own syllable) except in cases involving nested generics, when other pronunciation cues may be required to indicate the precise nesting.
Some of the classes which implement generic or non-generic (*) IEnumerable interfaces are collections, but some are not. Some are iterators; some not. The terms "collection" and "iterator" are thus not really suitable unless one knows that a particular IEnumerable will in fact be a collection or iterator. The term "iterator" has an additional problem, shared by the term "sequence": not all iterators or sequences implement IEnumerable; some implement IEnumerator, and some implement a GetEnumerator method but do not implement IEnumerable (e.g. because they wish to allow "foreach" but do not wish to promise all the behaviors implied by IEnumerable). If one wishes to avoid jargon, the term "reusable sequence" may be a good one. It's not quite unambiguous, because it could possibly refer to classes which have a GetEnumerator method but don't implement IEnumerable, or possibly to IEnumerator objects whose Reset method actually resets the enumeration, but it excludes one-time-use iterators.
(*) The term "IEnumerable" from here on out will refer to IEnumerable and IEnumerable<T> interchangeably. Likewise "IEnumerator".