Uri.Host Property
.NET Framework 3.0
Gets the host component of this instance.
Namespace: System
Assembly: System (in system.dll)
Assembly: System (in system.dll)
The following example writes the host name (www.contoso.com) of the server to the console.
Uri baseUri = new Uri("http://www.contoso.com:8080/"); Uri myUri = new Uri(baseUri, "shownew.htm?date=today"); Console.WriteLine(myUri.Host);
Uri baseUri = new Uri("http://www.contoso.com:8080/");
Uri myUri = new Uri(baseUri, "shownew.htm?date=today");
Console.WriteLine(myUri.get_Host());
var baseUri : Uri = new Uri("http://www.contoso.com:8080/"); var myUri : Uri = new Uri(baseUri, "shownew.htm?date=today"); Console.WriteLine(myUri.Host);
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.