ITraceDataProvider::get_Properties method (pla.h)

Retrieves the list of extended data items that Event Tracing for Windows (ETW) includes with the event.

This property is read-only.

Syntax

HRESULT get_Properties(
  IValueMap **ppProperties
);

Parameters

ppProperties

Return value

None

Remarks

Use this property to request the following data items with the event.

Data item Description
Sid (value 0x01) Includes the user's security identifier.
SessionId (value 0x02) Includes the session identifier.
StackTrace (value 0x04) Includes the stack trace.
 

Use the IValueMap interface to retrieve or specify the extended data items. The IValueMap::Value property contains items that are combined by using the OR operator. The IValueMapItem::Key property contains the string representation of the extended data item. The IValueMapItem::Value property contains the extended data item value.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header pla.h
DLL Pla.dll

See also

ITraceDataProvider