UrlParameterWriter::GetRequestUrl Method (String^, array<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:
virtual String^ GetRequestUrl(
	String^ url,
	array<Object^>^ parameters
) override

Parameters

url
Type: System::String^

The HTTP request's original URL.

parameters
Type: array<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: