HttpClient.BaseAddress Property

Gets or sets the base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.

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

Syntax

'Declaration
Public Property BaseAddress As Uri 
    Get 
    Set
'Usage
Dim instance As HttpClient 
Dim value As Uri 

value = instance.BaseAddress

instance.BaseAddress = value
public Uri BaseAddress { get; set; }
public:
property Uri^ BaseAddress {
    Uri^ get ();
    void set (Uri^ value);
}
member BaseAddress : Uri with get, set
function get BaseAddress () : Uri 
function set BaseAddress (value : Uri)

Property Value

Type: System.Uri

Remarks

For a complete example of using the HttpClient class, see Calling a Web API From a .NET Client

See Also

Reference

HttpClient Class

System.Net.Http Namespace