Package com.sun.jna.platform.win32
Schnittstelle Winevt.EVT_QUERY_FLAGS
- Umschließende Schnittstelle:
Winevt
public static interface Winevt.EVT_QUERY_FLAGS
Defines the values that specify how to return the query results and whether you are query against a channel or
log file.
https://msdn.microsoft.com/en-us/library/windows/desktop/aa385549(v=vs.85).aspx
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
Specifies that the query is against one or more channels.static final int
Specifies that the query is against one or more log files.static final int
Specifies that the events in the query result are ordered from oldest to newest.static final int
Specifies that the events in the query result are ordered from newest to oldest.static final int
Specifies thatWevtapi.EvtQuery(com.sun.jna.platform.win32.Winevt.EVT_HANDLE, java.lang.String, java.lang.String, int)
should run the query even if the part of the query generates an error (is not well formed).
-
Felddetails
-
EvtQueryChannelPath
static final int EvtQueryChannelPathSpecifies that the query is against one or more channels. The Path parameter of the EvtQuery function must specify the name of a channel or NULL.- Siehe auch:
-
EvtQueryFilePath
static final int EvtQueryFilePathSpecifies that the query is against one or more log files. The Path parameter of the EvtQuery function must specify the full path to a log file or NULL.- Siehe auch:
-
EvtQueryForwardDirection
static final int EvtQueryForwardDirectionSpecifies that the events in the query result are ordered from oldest to newest. This is the default.- Siehe auch:
-
EvtQueryReverseDirection
static final int EvtQueryReverseDirectionSpecifies that the events in the query result are ordered from newest to oldest.- Siehe auch:
-
EvtQueryTolerateQueryErrors
static final int EvtQueryTolerateQueryErrorsSpecifies thatWevtapi.EvtQuery(com.sun.jna.platform.win32.Winevt.EVT_HANDLE, java.lang.String, java.lang.String, int)
should run the query even if the part of the query generates an error (is not well formed). The service validates the syntax of the XPath query to determine if it is well formed. If the validation fails, the service parses the XPath into individual expressions. It builds a new XPath beginning with the left most expression. The service validates the expression and if it is valid, the service adds the next expression to the XPath. The service repeats this process until it finds the expression that is failing. It then uses the valid expressions that it found beginning with the leftmost expression as the XPath query (which means that you may not get the events that you expected). If no part of the XPath is valid, the EvtQuery call fails.- Siehe auch:
-