Implements IEnumerable interface.
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.
var ch = new CallHistory(); foreach ( Entry e in ch ) { ... }
CallHistory Class | Resco.Phone.CallHistory Namespace