Encog.Bot.Browse.WebPage.FindLink C# (CSharp) 메소드

FindLink() 공개 메소드

Find the link that contains the specified string.
public FindLink ( String str ) : Link
str String The string to search for.
리턴 Encog.Bot.Browse.Range.Link
        public Link FindLink(String str)
        {
            return Contents.OfType<Link>().FirstOrDefault(link => link.GetTextOnly().Equals(str));
        }