UrlParameterWriter.GetRequestUrl Method (String, Object())

 
Use BaseTrue

Writes Web method parameter values to the query string of an HTTP request.

Namespace:   System.Web.Services.Protocols
Assembly:  System.Web.Services (in System.Web.Services.dll)

Public Overrides Function GetRequestUrl (
	url As String,
	parameters As Object()
) As String

Parameters

url
Type: System.String

The HTTP request's original URL.

parameters
Type: System.Object()

The Web method parameter values to be added to the URL, if necessary.

Return Value

Type: System.String

A String object that contains the query string and the parameter values.

The GetRequestUrl method encodes parameters name/value pairs into an HTTP request URL's query string. For example, in the URL http://contoso.com?a=1&b=2, a and b are parameter names, and 1 and 2 are their values. A new URL string, with any encoded parameters, is returned.

.NET Framework
Available since 1.1
Return to top
Show: