Partilhar via


Método IVsPersistHierarchyItem2.IsItemReloadable (UInt32, Int32)

 

Determina se um item de projeto é reloadable antes de chamar ReloadItem.

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

Sintaxe

int IsItemReloadable(
    uint itemid,
    out int pfReloadable
)
int IsItemReloadable(
    unsigned int itemid,
    [OutAttribute] int% pfReloadable
)
abstract IsItemReloadable : 
        itemid:uint32 *
        pfReloadable:int byref -> int
Function IsItemReloadable (
    itemid As UInteger,
    <OutAttribute> ByRef pfReloadable As Integer
) As Integer

Parâmetros

  • itemid
    [in] Specifies itemid from VSITEMID.
  • pfReloadable
    [out] Ponteiro para um sinalizador que indica se o item está reloadable.

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 IVsPersistHierarchyItem2::IsItemReloadable(
   [in] VSITEMID itemid,
   [out, retval] BOOL *pfReloadable
);

Consulte também

Interface IVsPersistHierarchyItem2
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo