Table of Contents

Class CMSEventArgs

Namespace
CMS.Base
Assembly
CMS.Base.dll

Base class for the CMS event arguments

public class CMSEventArgs : EventArgs
Inheritance
object
EventArgs
CMSEventArgs
Derived
Extension Methods

Constructors

CMSEventArgs()

Constructor

public CMSEventArgs()

Properties

CurrentHandler

Currently executing handler

public AbstractHandler CurrentHandler { get; }

Property Value

AbstractHandler

Methods

CallOnDispose(Action)

Adds the given action to the list of actions called when the handler object is disposed

[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(29, 3)]
public CMSEventArgs CallOnDispose(Action method)

Parameters

method Action

Method to call

Returns

CMSEventArgs

CallWhenFinished(Action)

Adds the given action to be called when the handler finishes

public CMSEventArgs CallWhenFinished(Action method)

Parameters

method Action

Action to call

Returns

CMSEventArgs

Cancel()

Cancels the current handler execution

public void Cancel()

Dispose()

Make sure the objects get disposed

public void Dispose()

Using(IDisposable)

Adds the given object to the list of object that get disposed when the handler object is disposed

[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(29, 3)]
public CMSEventArgs Using(IDisposable obj)

Parameters

obj IDisposable

Object to dispose

Returns

CMSEventArgs