BrightIdeasSoftware.ObjectListView.IsUrlVisited C# (CSharp) 메소드

IsUrlVisited() 공개 메소드

Has the given URL been visited?
public IsUrlVisited ( string url ) : bool
url string The string to be consider
리턴 bool
        public virtual bool IsUrlVisited(string url)
        {
            return this.visitedUrlMap.ContainsKey(url);
        }
ObjectListView