Uri.MakeRelativeUri(Uri) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
두 Uri 인스턴스 간의 차이점을 확인합니다.
public:
Uri ^ MakeRelativeUri(Uri ^ uri);
public Uri MakeRelativeUri (Uri uri);
member this.MakeRelativeUri : Uri -> Uri
Public Function MakeRelativeUri (uri As Uri) As Uri
매개 변수
- uri
- Uri
현재 URI와 비교할 URI입니다.
반환
이 URI 인스턴스와 uri
의 호스트 이름 및 스키마가 같으면 이 메서드에서 상대 Uri를 반환합니다. 이 상대 URI가 현재 URI 인스턴스에 추가되면 uri
가 생성됩니다.
호스트 이름이나 체계가 다르면 이 메서드에서 Uri 매개 변수를 나타내는 uri
을 반환합니다.
예외
uri
이(가) null
인 경우
이 인스턴스가 상대 URI를 나타내고 이 속성이 절대 URI에만 유효한 경우
예제
다음 예제에서는 2개의 Uri 인스턴스를 만듭니다. 경로 정보의 차이는 콘솔에 기록됩니다.
// Create a base Uri.
Uri^ address1 = gcnew Uri( "http://www.contoso.com/" );
// Create a new Uri from a string.
Uri^ address2 = gcnew Uri( "http://www.contoso.com/index.htm?date=today" );
// Determine the relative Uri.
Console::WriteLine( "The difference is {0}", address1->MakeRelativeUri( address2 ) );
// Create a base Uri.
Uri address1 = new Uri("http://www.contoso.com/");
// Create a new Uri from a string.
Uri address2 = new Uri("http://www.contoso.com/index.htm?date=today");
// Determine the relative Uri.
Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2));
// Create a base Uri.
let address1 = Uri "http://www.contoso.com/"
// Create a new Uri from a string.
let address2 = Uri "http://www.contoso.com/index.htm?date=today"
// Determine the relative Uri.
printfn $"The difference is {address1.MakeRelativeUri address2}"
' Create a base Uri.
Dim address1 As New Uri("http://www.contoso.com/")
' Create a new Uri from a string.
Dim address2 As New Uri("http://www.contoso.com/index.htm?date=today")
' Determine the relative Uri.
Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2))
End Sub
설명
다음 표에서는 URI 인스턴스 toUri
및 호출 MakeRelativeUri결과를 보여줍니다.
현재 URI 인스턴스 | toUri |
반환 값 |
---|---|---|
http://www.contoso.com/ |
http://www.contoso.com/test/test.htm |
test/test.htm |
http://www.contoso.com/test1/ |
http://www.contoso.com/ |
../ |
http://www.contoso.com:8000/ |
http://www.contoso.com/test/test.htm |
http://www.contoso.com/test/test.htm |
http://username@www.contoso.com/ |
http://www.contoso.com/test1/test1.txt |
test1/test1.txt |
URI에 있는 경우 사용자 정보는 무시됩니다.