Skip to content

Properties.GetEnumerator Method

Definition

Returns an enumerator that enumerates over the properties. Returns the name as the key and an untyped object for the value. This will be the object itself for single value properties and a List<T> of objects for multiple value properties.

public IEnumerator<KeyValuePair<string, object>> GetEnumerator();

View source

Returns

IEnumerator<KeyValuePair<String, Object>>

An enumerator.