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

MarkUrlVisited() 공개 메소드

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
리턴 void
        public virtual void MarkUrlVisited(string url)
        {
            this.visitedUrlMap[url] = true;
        }
ObjectListView