Freigeben über


Uri.HostNameType-Eigenschaft

Gibt den Typ des im URI angegebenen Hostnamens zurück.

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

Syntax

'Declaration
Public ReadOnly Property HostNameType As UriHostNameType
'Usage
Dim instance As Uri
Dim value As UriHostNameType

value = instance.HostNameType
public UriHostNameType HostNameType { get; }
public:
property UriHostNameType HostNameType {
    UriHostNameType get ();
}
/** @property */
public UriHostNameType get_HostNameType ()
public function get HostNameType () : UriHostNameType

Eigenschaftenwert

Ein Member aus der UriHostNameType-Enumeration.

Beispiel

Das folgende Beispiel erstellt eine Uri-Instanz und gibt den HostNameType auf der Konsole aus.

Dim address1 As New Uri("https://www.contoso.com/index.htm#search")
Console.WriteLine("address 1 {0} a valid scheme name", IIf(Uri.CheckSchemeName(address1.Scheme), " has", " does not have")) 'TODO: For performance reasons this should be changed to nested IF statements

If address1.Scheme = Uri.UriSchemeHttp Then
    Console.WriteLine("Uri is HTTP type")
End If 
Console.WriteLine(address1.HostNameType)
Uri address1 = new Uri("https://www.contoso.com/index.htm#search");
Console.WriteLine("address 1 {0} a valid scheme name",
      Uri.CheckSchemeName(address1.Scheme) ? " has" : " does not have");

if (address1.Scheme == Uri.UriSchemeHttp)
    Console.WriteLine("Uri is HTTP type");
      
Console.WriteLine(address1.HostNameType);

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

Uri-Klasse
Uri-Member
System-Namespace