ConditionalEventBase<TEvent, TArgs> Class |
Namespace: CMS.Base
public abstract class ConditionalEventBase<TEvent, TArgs> : IConditionalEvent<TEvent> where TEvent : ConditionalEventBase<TEvent, TArgs> where TArgs : EventArgs
The ConditionalEventBase< TEvent, TArgs> type exposes the following members.
Name | Description | |
---|---|---|
![]() | ConditionalEventBase<TEvent, TArgs> |
Constructor
|
Name | Description | |
---|---|---|
![]() | Conditions |
Condition for the handler execution. If set, must return true in order to execute the handler
|
![]() | Handler |
Handler to execute
|
![]() | Repeats |
Number of repeats of the action
|
![]() | TypedThis |
Strongly typed identity
|
Name | Description | |
---|---|---|
![]() | Call(Action) |
Calls the given handler
|
![]() | Call(Action<TArgs>) |
Calls the given handler
|
![]() | Call(EventHandler<TArgs>) |
Calls the given handler
|
![]() | ExecuteHandler |
Executes the handler
|
![]() | GetHandler |
Implicit operator to convert to event handler
|
![]() | Repeat |
Sets the number of allowed calls to the event
|
![]() | When(Func<Boolean>) |
Adds the condition to the conditional event
|
![]() | When(Func<TArgs, Boolean>) |
Adds the condition to the conditional event
|
![]() | When(ConditionalEventBase<TEvent, TArgs>.ConditionFunction) |
Adds the condition to the conditional event
|
Name | Description | |
---|---|---|
![]() ![]() | Implicit(ConditionalEventBase<TEvent, TArgs> to EventHandler<TArgs>) |
Implicit operator to convert to event handler
|