Document.Navigate
Navigate(String)
Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.
public void Navigate(String address)
Parameter | Type | Description |
---|
address | String | The document address. It will be combined with the current directory path to form an absolute URL. |
See Also
Navigate(Url)
Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.
public void Navigate(Url url)
Parameter | Type | Description |
---|
url | Url | The document URL. |
See Also
Navigate(String, String)
Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.
public void Navigate(String content, String baseUri)
Parameter | Type | Description |
---|
content | String | The document content. |
baseUri | String | The base URI to resolve relative resources. It will be combined with the current directory path to form an absolute URL. |
Exceptions
exception | condition |
---|
ArgumentNullException | baseUri is null . |
See Also
Navigate(String, Url)
Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.
public void Navigate(String content, Url baseUri)
Parameter | Type | Description |
---|
content | String | The document content. |
baseUri | Url | The base URI to resolve relative resources. |
Exceptions
exception | condition |
---|
ArgumentNullException | baseUri is null . |
See Also
Navigate(Stream, String)
Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream.
public void Navigate(Stream content, String baseUri)
Parameter | Type | Description |
---|
content | Stream | The document content. |
baseUri | String | The base URI to resolve relative resources. It will be combined with the current directory path to form an absolute URL. |
Exceptions
exception | condition |
---|
ArgumentNullException | baseUri is null . |
See Also
Navigate(Stream, Url)
Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream.
public void Navigate(Stream content, Url baseUri)
Parameter | Type | Description |
---|
content | Stream | The document content. |
baseUri | Url | The base URI to resolve relative resources. |
Exceptions
exception | condition |
---|
ArgumentNullException | baseUri is null . |
See Also
Navigate(RequestMessage)
Loads the document based on specified request object, replacing the previous content.
public void Navigate(RequestMessage request)
Parameter | Type | Description |
---|
request | RequestMessage | The request object that is used to load document content. |
See Also