5 instantiations of IEnumerator
PresentationFramework (5)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (5)
206
thisPtr == IntPtr.Zero ? null : new
IEnumerator
<T>(ObjRefFromAbi(thisPtr));
209
new
IEnumerator
<T>(ObjRefFromAbi(thisPtr));
226
this(new global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.
IEnumerator
<T>(obj))
562
public static implicit operator IEnumerator<T>(IObjectReference obj) => (obj != null) ? new
IEnumerator
<T>(obj) : null;
563
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)
79
if (first is global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.
IEnumerator
<T> iterator)
96
new
IEnumerator
<T>.ToAbiHelper(m_enumerable.GetEnumerator());
180
return ABI.System.Collections.Generic.
IEnumerator
<T>.FromAbiInternal(__retval);
184
ABI.System.Collections.Generic.
IEnumerator
<T>.DisposeAbi(__retval);
200
obj is null ? null : ComWrappersSupport.CreateCCWForObject(obj).As<Vftbl>(GuidGenerator.GetIID(typeof(
IEnumerator
<T>)));
219
public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(
IEnumerator
<T>));
428
public static Guid PIID = GuidGenerator.CreateIID(typeof(
IEnumerator
<T>));
562
public static implicit operator
IEnumerator
<T>(IObjectReference obj) => (obj != null) ? new IEnumerator<T>(obj) : null;
563
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)
121
new
IEnumerator
<T>.ToAbiHelper(_list.GetEnumerator());