Url.MakeRelative Method
Makes the specified Url relative with respect to the current one.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Public Function MakeRelative ( _
url As Url _
) As String
public string MakeRelative(
Url url
)
public:
String^ MakeRelative(
Url^ url
)
member MakeRelative :
url:Url -> string
public function MakeRelative(
url : Url
) : String
Parameters
url
Type: Microsoft.VisualStudio.Shell.UrlThe Url to make relative.
Return Value
Type: String
Using the current Url as the base, the relative path of url.
Remarks
If the scheme or host properties are different (comparing url to the current Url), this method returns the absolute path of url. Otherwise, it returns the unescaped relative path.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.