UrlParameterWriter.GetRequestUrl(String, Object[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes Web method parameter values to the query string of an HTTP request.
public:
override System::String ^ GetRequestUrl(System::String ^ url, cli::array <System::Object ^> ^ parameters);
public override string GetRequestUrl (string url, object[] parameters);
override this.GetRequestUrl : string * obj[] -> string
Public Overrides Function GetRequestUrl (url As String, parameters As Object()) As String
Parameters
- url
- String
The HTTP request's original URL.
- parameters
- Object[]
The Web method parameter values to be added to the URL, if necessary.
Returns
A String object that contains the query string and the parameter values.
Remarks
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.