new_with_base


Description:

[ Version ( since = "1.6" ) ]
public Uri new_with_base (string? scheme, string? userinfo, string? host, uint port, string? path, string? query, string? fragment)

Like Uri, but joins the new URI onto a base URI.

Parameters:

this

The base URI to join the new URI to.

scheme

The scheme for the new URI.

userinfo

The user-info for the new URI.

host

The host name for the new URI.

port

The port number for the new URI or URI_NO_PORT.

path

The path for the new URI with '/' separating path elements.

query

The query string for the new URI with '&' separating query elements. Elements containing '&' characters should encode them as "%26".

fragment

The fragment name for the new URI.

Returns:

The new URI joined onto this.