BrightIdeasSoftware.ObjectListView.IsUrlVisited C# (CSharp) Method

IsUrlVisited() public method

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