WebClientProtocol.Url Property

Definition

Gets or sets the base URL of the XML Web service the client is requesting.

C#
public string Url { get; set; }
C#
[System.ComponentModel.SettingsBindable(true)]
public string Url { get; set; }

Property Value

The base URL of the XML Web service the client is requesting. The default is Empty.

Attributes

Examples

The following example changes the Url property for the math XML Web service to the Web server named http:// www.contoso.com.

C#
// Set the URL property to a different Web server than that described in the
// service description.
math.Url = "http://www.contoso.com/math.asmx";
int total = math.Add(Convert.ToInt32(Num1.Text), Convert.ToInt32(Num2.Text));

Remarks

Proxy classes generated using Wsdl.exe will set a default Url property for the client to use. The default Url is determined by the location attribute found in the service description from which the proxy class was generated.

Derived classes supporting specific protocols, such as HttpGetClientProtocol and HttpPostClientProtocol might add extra information to Url to make the XML Web service request.

The Url property can be changed to refer to any XML Web service that implements the same service description that the proxy class was generated from.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also