BrightIdeasSoftware.ObjectListView.MarkUrlVisited C# (CSharp) Method

MarkUrlVisited() public method

Remember that the given URL has been visited
This does not cause the control be redrawn
public MarkUrlVisited ( string url ) : void
url string The url to be remembered
return void
        public virtual void MarkUrlVisited(string url)
        {
            this.visitedUrlMap[url] = true;
        }
ObjectListView