Calculates the distance between two paths.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'宣言
Public Shared Function GetPathDistance ( _
uriBase As Uri, _
uriRelativeTo As Uri _
) As String
'使用
Dim uriBase As Uri
Dim uriRelativeTo As Uri
Dim returnValue As String
returnValue = PackageUtilities.GetPathDistance(uriBase, _
uriRelativeTo)
public static string GetPathDistance(
Uri uriBase,
Uri uriRelativeTo
)
public:
static String^ GetPathDistance(
Uri^ uriBase,
Uri^ uriRelativeTo
)
public static function GetPathDistance(
uriBase : Uri,
uriRelativeTo : Uri
) : String
Parameters
uriBase
Type: System.UriThe base Uri.
uriRelativeTo
Type: System.UriThe relative Uri.
Return Value
Type: System.String
The relative path.
Remarks
This method returns an unescaped string version of the URI returned by MakeRelativeUri if the paths overlap (have the same root) and the path of the relative URI if they do not.
Permissions
- 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.