UrlParameterWriter::GetRequestUrl Method (String^, array<Object^>^)
.NET Framework (current version)
Writes Web method parameter values to the query string of an HTTP request.
Assembly: System.Web.Services (in System.Web.Services.dll)
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
Available since 1.1
Show: