Compartilhar via


Método IVsResourceManager.GetSatelliteAssemblyPath (String, Int32, String)

 

Publicado: abril de 2016

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

Sintaxe

int GetSatelliteAssemblyPath(
    string assemblyPath,
    int lcid,
    out string pbstrPath
)
int GetSatelliteAssemblyPath(
    String^ assemblyPath,
    int lcid,
    [OutAttribute] String^% pbstrPath
)
abstract GetSatelliteAssemblyPath : 
        assemblyPath:string *
        lcid:int *
        pbstrPath:string byref -> int
Function GetSatelliteAssemblyPath (
    assemblyPath As String,
    lcid As Integer,
    <OutAttribute> ByRef pbstrPath As String
) As Integer

Parâmetros

  • assemblyPath
    Caminho para o assembly onde o recurso está a ser carregado.
  • lcid
    Um valor LCID especificando a cultura para o qual o recurso é válido.Fornecendo um valor 0 selecionará o LCID que o usuário selecionado quando o aplicativo foi iniciado.
  • pbstrPath
    Caminho para o assembly satélite.

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 GetSatelliteAssemblyPath(
   [in, string] LPCOLESTR assemblyPath, 
   [in] int lcid, 
   [out, retval] BSTR *pbstrPath
);

Consulte também

Interface IVsResourceManager
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo