IXREnumerable::GetEnumerator (Compact 2013)

3/28/2014

This method retrieves an enumerator that iterates through a collection of values.

Syntax

virtual HRESULT STDMETHODCALLTYPE GetEnumerator(
    IXREnumerator ** ppEnumerator
) = 0;

Parameters

  • ppEnumerator
    [out] The IXREnumerator to use to iterate through the collection.

Return Value

Returns an HRESULT that indicates success or failure.

Remarks

The enumerator returned by this method can read values in IXRValueCollection or a derived object, but cannot modify its values.

.NET Framework Equivalent

System.Collections.Generic.IEnumerable(T).GetEnumerator

Requirements

Header

XamlRuntime.h

sysgen

SYSGEN_XAML_RUNTIME

See Also

Reference

IXREnumerable