WebClient.BaseAddress Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets or sets the base URI for requests made by a WebClient.

Namespace:  System.Net
Assembly:  System.Net (in System.Net.dll)

Syntax

Public Property BaseAddress As String
public string BaseAddress { get; set; }

Property Value

Type: System..::.String
The base URI for requests made by a WebClient. If no base address has been specified, the BaseAddress property is initialized to the application origin (the absolute URI of the Windows Phone XAP).
..

Exceptions

Exception Condition
ArgumentException

BaseAddress is set to an invalid URI. The inner exception may contain information that will help you locate the error.

Remarks

The BaseAddress property contains a base URI that is combined with a relative address. When you call a method that uploads or downloads data, the WebClient object combines this base URI with the relative address you specify in the method call. If you specify an absolute URI, WebClient does not use the BaseAddress property value. To remove a previously set value, set BaseAddress to nullNothingnullptra null reference (Nothing in Visual Basic) or an empty string ("").

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

WebClient Class

System.Net Namespace