Click or drag to resize
ConditionalEvent<TArgs> Class
Conditional event execute in before handler
Inheritance Hierarchy
System.Object
  CMS.Base.ConditionalEventBase<ConditionalEvent<TArgs>, TArgs>
    CMS.Base.ConditionalEvent<TArgs>

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 9.0.0
Syntax
C#
public class ConditionalEvent<TArgs> : ConditionalEventBase<ConditionalEvent<TArgs>, TArgs>
where TArgs : EventArgs

Type Parameters

TArgs

The ConditionalEvent< TArgs> type exposes the following members.

Constructors
Properties
Methods
  NameDescription
Public methodCall(Action)
Calls the given handler
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodCall(Action<TArgs>)
Calls the given handler
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodCall(EventHandler<TArgs>)
Calls the given handler
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Protected methodExecuteHandler
Executes the handler
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodGetHandler
Implicit operator to convert to event handler
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodRepeat
Sets the number of allowed calls to the event
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodWhen(Func<Boolean>)
Adds the condition to the conditional event
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodWhen(Func<TArgs, Boolean>)
Adds the condition to the conditional event
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Public methodWhen(ConditionalEventBase<TEvent, TArgs>.ConditionFunction)
Adds the condition to the conditional event
(Inherited from ConditionalEventBase<TEvent, TArgs>.)
Top
See Also