Partilhar via


Método IVsActivityLog.LogEntryHr (UInt32, String, String, Int32)

 

Publicado: abril de 2016

Faz com que uma entrada de log, especificando o tipo de entrada, nome do pacote, texto do evento e um HRESULT para armazenar o registro.

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

Sintaxe

int LogEntryHr(
    uint actType,
    string pszSource,
    string pszDescription,
    int hr
)
int LogEntryHr(
    unsigned int actType,
    String^ pszSource,
    String^ pszDescription,
    int hr
)
abstract LogEntryHr : 
        actType:uint32 *
        pszSource:string *
        pszDescription:string *
        hr:int -> int
Function LogEntryHr (
    actType As UInteger,
    pszSource As String,
    pszDescription As String,
    hr As Integer
) As Integer

Parâmetros

  • pszSource
    [in] Ponteiro para uma seqüência de caracteres que contém o nome do pacote ou componente, fazendo a chamada.
  • pszDescription
    [in] Ponteiro para uma seqüência de caracteres descrevendo o evento.
  • hr
    [in] Um HRESULT para incluir o registro.

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 IVsActivityLog::LogEntryHr(
   [in] ACTIVITYLOG_ENTRYTYPE actType, 
   in] LPCOLESTR pszSource, 
   [in] LPCOLESTR pszDescription, 
   [in] HRESULT hr
);

Consulte também

Interface IVsActivityLog
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo