Partilhar via


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

 

Publicado: abril de 2016

Faz com que uma entrada de log, especificando o tipo de entrada, nome do pacote, o texto do evento, um GUID para armazenar o registro e um caminho completo do arquivo 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 LogEntryGuidPath(
    uint actType,
    string pszSource,
    string pszDescription,
    Guid guid,
    string pszPath
)
int LogEntryGuidPath(
    unsigned int actType,
    String^ pszSource,
    String^ pszDescription,
    Guid guid,
    String^ pszPath
)
abstract LogEntryGuidPath : 
        actType:uint32 *
        pszSource:string *
        pszDescription:string *
        guid:Guid *
        pszPath:string -> int
Function LogEntryGuidPath (
    actType As UInteger,
    pszSource As String,
    pszDescription As String,
    guid As Guid,
    pszPath As String
) 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.
  • pszPath
    [in] Uma seqüência de caracteres contendo o caminho completo do arquivo 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::LogEntryGuidPath(
   [in] ACTIVITYLOG_ENTRYTYPE actType, 
   [in] LPCOLESTR pszSource, 
   [in] LPCOLESTR pszDescription, 
   [in] GUID guid, 
   [in] LPCOLESTR pszPath
);

Consulte também

Interface IVsActivityLog
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo