Interface IAdvancedEventHandle<TArgs>
Represents a handle of a commenced AdvancedHandler<THandler, TArgs> event.
public interface IAdvancedEventHandle<out TArgs> where TArgs : CMSEventArgs, new()
Type Parameters
TArgs
Type of the event arguments associated with the event.
- Extension Methods
Properties
CanContinue
Gets a value indicating whether cancellation of the event was requested.
bool CanContinue { get; }
Property Value
- bool
- See Also
-
Cancel()
EventArguments
Gets the event arguments associated with the event.
TArgs EventArguments { get; }
Property Value
- TArgs
IsCancelable
Gets a value indicating whether the event can be canceled.
bool IsCancelable { get; }
Property Value
- bool
- See Also
-
Cancel()
Methods
Finish()
Completes the event by invoking the registered After event handlers if the event has not been canceled.
void Finish()
PreventCancellation()
Marks the event as not cancelable.
void PreventCancellation()
Exceptions
- InvalidOperationException
Thrown when the event has already been canceled.
- See Also
-
Cancel()
See Also
Start(TArgs)