Compartilhar via


Método IVsSolution.GetItemInfoOfProjref (String, Int32, Object)

 

Publicado: abril de 2016

Obtém a propriedade necessária para a referência de item de projeto especificado.

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

Sintaxe

int GetItemInfoOfProjref(
    string pszProjref,
    int propid,
    out object pvar
)
int GetItemInfoOfProjref(
    String^ pszProjref,
    int propid,
    [OutAttribute] Object^% pvar
)
abstract GetItemInfoOfProjref : 
        pszProjref:string *
        propid:int *
        pvar:Object byref -> int
Function GetItemInfoOfProjref (
    pszProjref As String,
    propid As Integer,
    <OutAttribute> ByRef pvar As Object
) As Integer

Parâmetros

  • pszProjref
    [in] Referência de item de projeto para os quais informações são necessárias.
  • propid
    [in] Identificador de propriedade.Para obter uma lista de propid valores, consulte __VSHPROPID.
  • pvar
    [out] Informações de propriedade.

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 IVsSolution::GetItemInfoOfProjref(
   [in] LPCOLESTR pszProjref,
   [in] VSHPROPID propid,
   [out] VARIANT *pvar
);

Consulte também

Interface IVsSolution
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo