IVsActivityLog.LogEntryHrPath Method
Makes a log entry specifying entry type, package name, event text, an HRESULT to store in the event record, and a full file path to store in the event record.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function LogEntryHrPath ( _
actType As UInteger, _
pszSource As String, _
pszDescription As String, _
hr As Integer, _
pszPath As String _
) As Integer
int LogEntryHrPath(
uint actType,
string pszSource,
string pszDescription,
int hr,
string pszPath
)
int LogEntryHrPath(
[InAttribute] unsigned int actType,
[InAttribute] String^ pszSource,
[InAttribute] String^ pszDescription,
[InAttribute] int hr,
[InAttribute] String^ pszPath
)
abstract LogEntryHrPath :
actType:uint32 *
pszSource:string *
pszDescription:string *
hr:int *
pszPath:string -> int
function LogEntryHrPath(
actType : uint,
pszSource : String,
pszDescription : String,
hr : int,
pszPath : String
) : int
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.
hr
Type: System.Int32[in] An HRESULT to include in the event record.
pszPath
Type: System.String[in] A string containing a full file path to include in the event record.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsActivityLog::LogEntryHrPath(
[in] ACTIVITYLOG_ENTRYTYPE actType,
[in] LPCOLESTR pszSource,
[in] LPCOLESTR pszDescription,
[in] HRESULT hr,
[in] LPCOLESTR pszPath
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.