Método IVsPathVariableResolver.ResolvePath (String, UInt32, String)
Resolve (decodifica) um caminho de arquivo codificado com EncodePath.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int ResolvePath(
string strEncodedPath,
uint dwFlags,
out string pbstrPath
)
int ResolvePath(
String^ strEncodedPath,
unsigned int dwFlags,
[OutAttribute] String^% pbstrPath
)
abstract ResolvePath :
strEncodedPath:string *
dwFlags:uint32 *
pbstrPath:string byref -> int
Function ResolvePath (
strEncodedPath As String,
dwFlags As UInteger,
<OutAttribute> ByRef pbstrPath As String
) As Integer
Parâmetros
- strEncodedPath
[in] A seqüência de caracteres que contém o caminho codificado.
- dwFlags
[in] Sinalizador de opção de codificação.Um valor a partir do __VSPROFILEPATHRESOLVERFLAGS enumeração.
- pbstrPath
[out] Ponteiro para uma seqüência de caracteres que contém o caminho resolvido.
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 vsshell80.idl:
HRESULT IVsPathVariableResolver::ResolvePath(
[in] LPCOLESTR strEncodedPath,
[in] VSPROFILEPATHRESOLVERFLAGS dwFlags,
[out] BSTR *pbstrPath
);
Consulte também
Interface IVsPathVariableResolver
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo