Represents a pending action for raising a custom event on a ISubscribable object. When you call the RaiseEvent method, an instance of the RaiseEvent class is created and added to the ISubscribable object's collection of PendingAction objects.

Namespace:  FileNet.Api.Action
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class RaiseEvent _
	Inherits PendingAction
C#
[SerializableAttribute]
public class RaiseEvent : PendingAction
Visual C++
[SerializableAttribute]
public ref class RaiseEvent : public PendingAction
JavaScript
FileNet.Api.Action.RaiseEvent = function();

Type.createClass(
	'FileNet.Api.Action.RaiseEvent',
	FileNet.Api.Action.PendingAction);

ToggleInheritance Hierarchy

System..::.Object
  FileNet.Api.Action..::.PendingAction
    FileNet.Api.Action..::.RaiseEvent

ToggleSee Also