Partilhar via


Método IVsActivityLog.LogEntryGuid (UInt32, String, String, Guid)

 

Publicado: abril de 2016

Faz com que uma entrada de log, especificando o tipo de entrada, nome do pacote, texto do evento e o GUID 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 LogEntryGuid(
    uint actType,
    string pszSource,
    string pszDescription,
    Guid guid
)
int LogEntryGuid(
    unsigned int actType,
    String^ pszSource,
    String^ pszDescription,
    Guid guid
)
abstract LogEntryGuid : 
        actType:uint32 *
        pszSource:string *
        pszDescription:string *
        guid:Guid -> int
Function LogEntryGuid (
    actType As UInteger,
    pszSource As String,
    pszDescription As String,
    guid As Guid
) 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.
  • guid
    [in] Um GUID 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::LogEntryGuid(
   [in] ACTIVITYLOG_ENTRYTYPE actType, 
   [in] LPCOLESTR pszSource, 
   in] LPCOLESTR pszDescription, 
   [in] GUID guid
);

Consulte também

Interface IVsActivityLog
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo