IVsActivityLog Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds events to the IDE Activity Log. Use the SVsActivityLog (SID_SVsActivityLog) service to get an instance of the interface.
public interface class IVsActivityLog
public interface class IVsActivityLog
__interface IVsActivityLog
[System.Runtime.InteropServices.Guid("76AF73F9-A322-42B0-A515-D4D7553508FE")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsActivityLog
[<System.Runtime.InteropServices.Guid("76AF73F9-A322-42B0-A515-D4D7553508FE")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsActivityLog = interface
Public Interface IVsActivityLog
- Derived
- Attributes
Remarks
This interface is safe to access from any thread.
Methods
LogEntry(UInt32, String, String) |
Makes a log entry specifying the log type, the package name, and the event text. |
LogEntryGuid(UInt32, String, String, Guid) |
Makes a log entry specifying entry type, package name, event text, and GUID to store in the event record. |
LogEntryGuidHr(UInt32, String, String, Guid, Int32) |
Makes a log entry specifying entry type, package name, event text, a GUID to store in the event record, and an HRESULT to store in the event record. |
LogEntryGuidHrPath(UInt32, String, String, Guid, Int32, String) |
Makes a log entry specifying entry type, package name, the event text, a GUID to store in the event record, an HRESULT to store in the event record and a full file path to store in the event record. |
LogEntryGuidPath(UInt32, String, String, Guid, String) |
Makes a log entry specifying entry type, package name, event text, a GUID to store in the event record, and a full file path to store in the event record. |
LogEntryHr(UInt32, String, String, Int32) |
Makes a log entry specifying entry type, package name, event text, and an HRESULT to store in the event record. |
LogEntryHrPath(UInt32, String, String, Int32, String) |
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. |
LogEntryPath(UInt32, String, String, String) |
Makes a log entry specifying entry type, package name, event text, and a full file path to store in the event record. |