 | EventTriggerGetBasic Method |
Gets basic event information.
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntaxpublic bool GetBasic(
out string log,
out string source,
out int? eventId
)
Public Function GetBasic (
<OutAttribute> ByRef log As String,
<OutAttribute> ByRef source As String,
<OutAttribute> ByRef eventId As Integer?
) As Boolean
public:
bool GetBasic(
[OutAttribute] String^% log,
[OutAttribute] String^% source,
[OutAttribute] Nullable<int>% eventId
)
Request Example
View SourceParameters
- log
- Type: SystemString
The event's log. - source
- Type: SystemString
The event's source. Can be null. - eventId
- Type: SystemNullableInt32
The event's id. Can be null.
Return Value
Type:
Booleantrue if subscription represents a basic event,
false if not.
See Also