Compartilhar via


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

 

Publicado: abril de 2016

Carrega uma seqüência de recurso.

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

Sintaxe

int LoadResourceString2(
    string pszAssemblyPath,
    int culture,
    string pszResourceName,
    out string pbstrValue
)
int LoadResourceString2(
    String^ pszAssemblyPath,
    int culture,
    String^ pszResourceName,
    [OutAttribute] String^% pbstrValue
)
abstract LoadResourceString2 : 
        pszAssemblyPath:string *
        culture:int *
        pszResourceName:string *
        pbstrValue:string byref -> int
Function LoadResourceString2 (
    pszAssemblyPath As String,
    culture As Integer,
    pszResourceName As String,
    <OutAttribute> ByRef pbstrValue As String
) As Integer

Parâmetros

  • pszAssemblyPath
    Caminho para o assembly onde o recurso está a ser carregado.
  • culture
    Um valor LCID especificando a cultura para o qual a seqüência é válida.Fornecendo um valor 0 selecionará o LCID que o usuário selecionado quando o aplicativo foi iniciado.
  • pszResourceName
    O nome do recurso.
  • pbstrValue
    Ponteiro para o recurso.

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 LoadResourceString2(
   [in, string] LPCOLESTR pszAssemblyPath,
   [in] int culture,
   [in, string] LPCOLESTR pszResourceName,
   [out, retval] BSTR *pbstrValue
);

Consulte também

Interface IVsResourceManager
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo