MobileForms Toolkit Documentation

CallHistory.GetEnumerator Method 

Implements IEnumerable interface.

public IEnumerator GetEnumerator();

Return Value

An instance of the IEnumerator object which can be used to enumerate the call history entries. By implementing IEnumerable interface, CallHistory class allows to use foreach syntax on its objects. The return value is null if the call log is not available.

Implements

IEnumerable.GetEnumerator

Example

var ch = new CallHistory(); foreach ( Entry e in ch ) { ... }

See Also

CallHistory Class | Resco.Phone.CallHistory Namespace