Url WithQuery Method C# API
Overload List

  NameDescription
Public methodWithQuery(String)
Initialises a new instance of the Url class using the attributes of this Url, but with the specified queryText string (replacing the existing query data if present).
Public methodWithQuery(Form)
Initialises a new instance of the Url class using the attributes of this Url, but with query data from the specified Form object (replacing the existing query data if present).
Public methodWithQuery(QueryData)
Initialises a new instance of the Url class using the attributes of this Url, but with the specified QueryData object (replacing the existing query data if present).
Public methodWithQuery(Form, String)
Initialises a new instance of the Url class using the attributes of this Url, but with query data from the specified Form object percent-encoded using the supplied list of unsafeCharacters (replacing the existing query data if present).
Public methodWithQuery(QueryData, String)
Initialises a new instance of the Url class using the attributes of this Url, but with the specified QueryData object percent-encoded using the supplied list of unsafeCharacters (replacing the existing query data if present).
Back to Top
See Also