2 implementations of IIterator
mscorlib (2)
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (1)
75internal sealed class EnumeratorToIteratorAdapter<T> : IIterator<T>, IBindableIterator
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (1)
80private sealed class NonGenericToGenericIterator : IIterator<object>
10 references to IIterator
mscorlib (10)
system\internal.cs (2)
228WinRT_IEnumerable<string>(null, null, null); typeof(IIterable<string>).ToString(); typeof(IIterator<string>).ToString(); 229WinRT_IEnumerable<object>(null, null, null); typeof(IIterable<object>).ToString(); typeof(IIterator<object>).ToString();
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (1)
162public IIterator<IKeyValuePair<TKey, TValue>> First()
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (2)
37internal IIterator<T> First_Stub<T>() 112return (object)((IIterator<T>)this).Current;
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (2)
546private IIterator<T> _iterator; 548public IteratorOfTToIteratorAdapter(IIterator<T> iterator)
system\runtime\interopservices\windowsruntime\iiterable.cs (1)
24IIterator<T> First();
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (2)
111private IIterator<T> m_iterator; 116internal IteratorToEnumeratorAdapter(IIterator<T> iterator)