コード例 #1
0
ファイル: CrawlResults.cs プロジェクト: eg467/webshot-old
 private IEnumerable <Uri> UrisByStatus(SpiderPageStatus status) =>
 Uris
 .Where(x => x.Value == status)
 .Select(x => x.Key)
 .OrderBy(x => x.ToString());