5 instantiations of IEnumerator
PresentationFramework (5)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (5)
200
thisPtr == IntPtr.Zero ? null : new
IEnumerator
<T>(ObjRefFromAbi(thisPtr));
203
new
IEnumerator
<T>(ObjRefFromAbi(thisPtr));
220
this(new global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.
IEnumerator
<T>(obj))
556
public static implicit operator IEnumerator<T>(IObjectReference obj) => (obj != null) ? new
IEnumerator
<T>(obj) : null;
557
public static implicit operator IEnumerator<T>(ObjectReference<Vftbl> obj) => (obj != null) ? new
IEnumerator
<T>(obj) : null;
10 references to IEnumerator
PresentationFramework (10)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (9)
73
if (first is global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.
IEnumerator
<T> iterator)
90
new
IEnumerator
<T>.ToAbiHelper(m_enumerable.GetEnumerator());
174
return ABI.System.Collections.Generic.
IEnumerator
<T>.FromAbiInternal(__retval);
178
ABI.System.Collections.Generic.
IEnumerator
<T>.DisposeAbi(__retval);
194
obj is null ? null : ComWrappersSupport.CreateCCWForObject(obj).As<Vftbl>(GuidGenerator.GetIID(typeof(
IEnumerator
<T>)));
213
public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(
IEnumerator
<T>));
422
public static Guid PIID = GuidGenerator.CreateIID(typeof(
IEnumerator
<T>));
556
public static implicit operator
IEnumerator
<T>(IObjectReference obj) => (obj != null) ? new IEnumerator<T>(obj) : null;
557
public static implicit operator
IEnumerator
<T>(ObjectReference<Vftbl> obj) => (obj != null) ? new IEnumerator<T>(obj) : null;
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (1)
115
new
IEnumerator
<T>.ToAbiHelper(_list.GetEnumerator());