Método IVsActivityLog.LogEntryHrPath (UInt32, String, String, Int32, 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 HRESULT 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 LogEntryHrPath(
uint actType,
string pszSource,
string pszDescription,
int hr,
string pszPath
)
int LogEntryHrPath(
unsigned int actType,
String^ pszSource,
String^ pszDescription,
int hr,
String^ pszPath
)
abstract LogEntryHrPath :
actType:uint32 *
pszSource:string *
pszDescription:string *
hr:int *
pszPath:string -> int
Function LogEntryHrPath (
actType As UInteger,
pszSource As String,
pszDescription As String,
hr As Integer,
pszPath As String
) As Integer
Parâmetros
- actType
[in] Tipo de entrada de log, um valor a partir do __ACTIVITYLOG_ENTRYTYPE enumeração.
- 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.
- 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::LogEntryHrPath(
[in] ACTIVITYLOG_ENTRYTYPE actType,
[in] LPCOLESTR pszSource,
[in] LPCOLESTR pszDescription,
[in] HRESULT hr,
[in] LPCOLESTR pszPath
);
Consulte também
Interface IVsActivityLog
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo