Creates a new instance of a RaiseEvent pending action object.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal props As IProperties,  _ 
   ByVal classId As String _ 
)
C#
public RaiseEvent(
   IProperties props,
   string classId
)
C++
public:
 RaiseEvent(
   IProperties props,
   String classId
) sealed 
J#
public RaiseEvent(
   IProperties props,
   string classId
)
JScript
public function RaiseEvent(
   props : IProperties,
   classId : String
)

Parameters

props
A Properties collection that specifies the properties to set for the custom event. The collection must include the ID property of the ICustomEvent object.
classId
A String specifying the name of the class. If null, or if the custom event class does not exist, this constructor throws an exception.

See Also