C# Class Encog.Bot.Browse.Browser

The main class for web browsing. This class allows you to navigate to a specific URL. Once you navigate to one URL, you can naviage to any URL contained on the page.
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Navigate ( Form form ) : void

Navigate to the specified form by performing a submit of that form.

Navigate ( Form form, Input submit ) : void

Navigate based on a form. Complete and post the form.

Navigate ( Link link ) : void

Navigate to a new page based on a link.

Navigate ( String url ) : void

Navigate based on a string URL.

Navigate ( Uri url ) : void

Navigate to a page based on a URL object. This will be an HTTP GET operation.

Navigate ( Uri url, Stream istream ) : void

Navigate to a page and post the specified data.

Method Details

Navigate() public method

Navigate to the specified form by performing a submit of that form.
public Navigate ( Form form ) : void
form Encog.Bot.Browse.Range.Form The form to be submitted.
return void

Navigate() public method

Navigate based on a form. Complete and post the form.
public Navigate ( Form form, Input submit ) : void
form Encog.Bot.Browse.Range.Form The form to be posted.
submit Encog.Bot.Browse.Range.Input The submit button on the form to simulate clicking.
return void

Navigate() public method

Navigate to a new page based on a link.
public Navigate ( Link link ) : void
link Encog.Bot.Browse.Range.Link The link to navigate to.
return void

Navigate() public method

Navigate based on a string URL.
public Navigate ( String url ) : void
url String The URL to navigate to.
return void

Navigate() public method

Navigate to a page based on a URL object. This will be an HTTP GET operation.
public Navigate ( Uri url ) : void
url System.Uri The URL to navigate to.
return void

Navigate() public method

Navigate to a page and post the specified data.
public Navigate ( Uri url, Stream istream ) : void
url System.Uri The URL to post the data to.
istream Stream The data to post to the page.
return void