DocumentNavigate Method (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.
Namespace: Aspose.Html.DomAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 22.5
Syntaxpublic void Navigate(
Stream content,
string baseUri
)
Public Sub Navigate (
content As Stream,
baseUri As String
)
public:
void Navigate(
Stream^ content,
String^ baseUri
)
member Navigate :
content : Stream *
baseUri : string -> unit
Parameters
- content
- Type: System.IOStream
The document content. - baseUri
- Type: SystemString
The base URI to resolve relative resources. It will be combined with the current directory path to form an absolute URL.
ExceptionsException | Condition |
---|
ArgumentNullException | baseUri is null. |
See Also