 | EventQuery Constructor (String, Int32, NullableDateTime, NullableDateTime) |
Initializes a new instance of the
EventQuery class.
Namespace:
Microsoft.Win32.TaskScheduler.Events
Assembly:
Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.10.1
Syntaxpublic EventQuery(
string path,
int[] eventIDs = null,
DateTime? startTime = null,
DateTime? endTime = null
)
Public Sub New (
path As String,
Optional eventIDs As Integer() = Nothing,
Optional startTime As DateTime? = Nothing,
Optional endTime As DateTime? = Nothing
)
public:
EventQuery(
String^ path,
array<int>^ eventIDs = nullptr,
Nullable<DateTime> startTime = nullptr,
Nullable<DateTime> endTime = nullptr
)
Request Example
View SourceParameters
- path
- Type: SystemString
The path. - eventIDs (Optional)
- Type: SystemInt32
The event ids. - startTime (Optional)
- Type: SystemNullableDateTime
The start time. - endTime (Optional)
- Type: SystemNullableDateTime
The end time.
See Also