IVsActivityLog.LogEntry Method (UInt32, String, String)
Visual Studio 2015
Makes a log entry specifying the log type, the package name, and the event text.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Function LogEntry ( actType As UInteger, pszSource As String, pszDescription As String ) As Integer
Parameters
- actType
-
Type:
System.UInt32
[in] Type of log entry, a value from the __ACTIVITYLOG_ENTRYTYPE enumeration.
- pszSource
-
Type:
System.String
[in] Pointer to a string containing the name of the package or component making the call.
- pszDescription
-
Type:
System.String
[in] Pointer to a string describing the event.
Return Value
Type: System.Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsActivityLog::LogEntry( [in] ACTIVITYLOG_ENTRYTYPE actType, [in] LPCOLESTR pszSource, [in] LPCOLESTR pszDescription );
Show: