Pickaxe.Runtime.SelectDownloadTable.GetEnumerator C# (CSharp) Method

GetEnumerator() public final method

public final GetEnumerator ( ) : IEnumerator
return IEnumerator
        public override sealed IEnumerator<DownloadPage> GetEnumerator()
        {
            foreach (IHttpWire url in Wires)
            {
                yield return new SelectDownloadPage(this);
            }
        }