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)

Syntax

Visual Basic (Declaration)
<SerializableAttribute>
Public Class RaiseEvent
    Inherits PendingAction
C#
[SerializableAttribute]
public class RaiseEvent : PendingAction
C++
[SerializableAttribute]
ref class RaiseEvent : PendingAction
J#
/** @attribute SerializableAttribute() */
public class RaiseEvent extends PendingAction
JScript
public 
   SerializableAttribute
class RaiseEvent extends PendingAction

Inheritance Hierarchy

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

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also