EvtGetQueryInfo function wevtapi

int EvtGetQueryInfo(
  1. int QueryOrSubscription,
  2. int PropertyId,
  3. int PropertyValueBufferSize,
  4. Pointer<EVT_VARIANT> PropertyValueBuffer,
  5. Pointer<Uint32> PropertyValueBufferUsed,
)

Gets information about a query that you ran that identifies the list of channels or log files that the query attempted to access.

BOOL EvtGetQueryInfo(
  [in]  EVT_HANDLE            QueryOrSubscription,
  [in]  EVT_QUERY_PROPERTY_ID PropertyId,
  [in]  DWORD                 PropertyValueBufferSize,
  [in]  PEVT_VARIANT          PropertyValueBuffer,
  [out] PDWORD                PropertyValueBufferUsed
);

Implementation

int EvtGetQueryInfo(
  int QueryOrSubscription,
  int PropertyId,
  int PropertyValueBufferSize,
  Pointer<EVT_VARIANT> PropertyValueBuffer,
  Pointer<Uint32> PropertyValueBufferUsed,
) => _EvtGetQueryInfo(
  QueryOrSubscription,
  PropertyId,
  PropertyValueBufferSize,
  PropertyValueBuffer,
  PropertyValueBufferUsed,
);