navigate method

navigate

Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.

def navigate(self, address):
    ...
ParameterTypeDescription
addressstrThe document address. It will be combined with the current directory path to form an absolute URL.

navigate

Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.

def navigate(self, url):
    ...
ParameterTypeDescription
urlUrlThe document URL.

navigate

Loads the document based on specified request object, replacing the previous content.

def navigate(self, request):
    ...
ParameterTypeDescription
requestaspose.svg.net.RequestMessageThe request object that is used to load document content.

navigate

Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.

def navigate(self, content, base_uri):
    ...
ParameterTypeDescription
contentstrThe document content.
base_uristrThe base URI to resolve relative resources. It will be combined with the current directory path to form an absolute URL.

Exceptions

ExceptionDescription
ArgumentNullExceptionbaseUri is null.

navigate

Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.

def navigate(self, content, base_uri):
    ...
ParameterTypeDescription
contentstrThe document content.
base_uriUrlThe base URI to resolve relative resources.

Exceptions

ExceptionDescription
ArgumentNullExceptionbaseUri is null.

navigate

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.

def navigate(self, content, base_uri):
    ...
ParameterTypeDescription
contentio.RawIOBaseThe document content.
base_uristrThe base URI to resolve relative resources. It will be combined with the current directory path to form an absolute URL.

Exceptions

ExceptionDescription
ArgumentNullExceptionbaseUri is null.

navigate

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.

def navigate(self, content, base_uri):
    ...
ParameterTypeDescription
contentio.RawIOBaseThe document content.
base_uriUrlThe base URI to resolve relative resources.

Exceptions

ExceptionDescription
ArgumentNullExceptionbaseUri is null.

See Also