Freigeben über


Uri.MakeRelative-Methode

HINWEIS: Diese Methode ist mittlerweile veraltet.

Bestimmt den Unterschied zwischen zwei Uri-Instanzen.

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

Syntax

'Declaration
<ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). https://go.microsoft.com/fwlink/?linkid=14202")> _
Public Function MakeRelative ( _
    toUri As Uri _
) As String
'Usage
Dim instance As Uri
Dim toUri As Uri
Dim returnValue As String

returnValue = instance.MakeRelative(toUri)
[ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). https://go.microsoft.com/fwlink/?linkid=14202")] 
public string MakeRelative (
    Uri toUri
)
[ObsoleteAttribute(L"The method has been deprecated. Please use MakeRelativeUri(Uri uri). https://go.microsoft.com/fwlink/?linkid=14202")] 
public:
String^ MakeRelative (
    Uri^ toUri
)
/** @attribute ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). https://go.microsoft.com/fwlink/?linkid=14202") */ 
public String MakeRelative (
    Uri toUri
)
ObsoleteAttribute("The method has been deprecated. Please use MakeRelativeUri(Uri uri). https://go.microsoft.com/fwlink/?linkid=14202") 
public function MakeRelative (
    toUri : Uri
) : String

Parameter

  • toUri
    Der mit dem aktuellen URI zu vergleichende URI.

Rückgabewert

Wenn der Hostname und das Schema dieser URI-Instanz mit toUri identisch sind, gibt diese Methode einen relativen URI zurück, der, angefügt an die aktuelle URI-Instanz, toUri ergibt. Wenn der Hostname oder das Schema anders sind, gibt diese Methode toUri zurück.

Ausnahmen

Ausnahmetyp Bedingung

InvalidOperationException

Diese Instanz stellt einen relativen URI dar, diese Eigenschaft ist jedoch nur für absolute URIs gültig.

Hinweise

In der folgenden Tabelle werden die URI-Instanz, toUri und die Ergebnisse des Aufrufs von MakeRelative angezeigt.

Aktuelle URI-Instanz

toUri

Rückgabewert

https://www.contoso.com/

https://www.contoso.com/test/test.htm

test/test.htm

https://www.contoso.com/test1/

https://www.contoso.com/

../

https://www.contoso.com:8000/

https://www.contoso.com/test/test.htm

https://www.contoso.com/test/test.htm

https://username@www.contoso.com/

https://www.contoso.com/test1/test1.txt

test1/test1.txt

Benutzerinformationen, sofern im URI vorhanden, werden ignoriert.

Beispiel

Im folgenden Beispiel werden zwei Uri-Instanzen erstellt. Der Unterschied in den Pfadinformationen wird auf der Konsole ausgegeben.

    ' Create a base Uri.
    Dim address1 As New Uri("https://www.contoso.com/")
    
    ' Create a new Uri from a string.
    Dim address2 As New Uri("https://www.contoso.com/index.htm?date=today")
    
    ' Determine the relative Uri.  
    Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2))

End Sub 'SampleMakeRelative
// Create a base Uri.
Uri address1 = new Uri("https://www.contoso.com/");

// Create a new Uri from a string.
Uri address2 = new Uri("https://www.contoso.com/index.htm?date=today"); 
           
// Determine the relative Uri.  
Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2));

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: 1.0, 1.1
Veraltet (Compilerwarnung) in 2.0

.NET Compact Framework

Unterstützt in: 1.0
Veraltet (Compilerwarnung) in 2.0

Siehe auch

Referenz

Uri-Klasse
Uri-Member
System-Namespace