Compartilhar via


Método IVsRelativePathResolver.ResolveRelativePath (UInt32, String, String)

 

Resolve um caminho relativo para um caminho absoluto para um documento.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int ResolveRelativePath(
    uint dwReserved,
    string pszRelPath,
    out string pbstrAbsPath
)
int ResolveRelativePath(
    unsigned int dwReserved,
    String^ pszRelPath,
    [OutAttribute] String^% pbstrAbsPath
)
abstract ResolveRelativePath : 
        dwReserved:uint32 *
        pszRelPath:string *
        pbstrAbsPath:string byref -> int
Function ResolveRelativePath (
    dwReserved As UInteger,
    pszRelPath As String,
    <OutAttribute> ByRef pbstrAbsPath As String
) As Integer

Parâmetros

  • dwReserved
    [in] Reservado para uso futuro.Deve ser zero.
  • pszRelPath
    [in] Caminho relativo ao documento.
  • pbstrAbsPath
    [out, retval] Caminho absoluto para o documento.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsRelativePathResolver::ResolveRelativePath(
   [in] DWORD dwReserved,
   [in] LPCOLESTR pszRelPath,
   [out, retval] BSTR *pbstrAbsPath
);

Consulte também

Interface IVsRelativePathResolver
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo