Creates a new instance of a RaiseEvent pending action object.

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

ToggleSyntax

Visual Basic (Declaration)
Public Sub New ( _
	props As IProperties, _
	classId As String _
)
C#
public RaiseEvent(
	IProperties props,
	string classId
)
Visual C++
public:
RaiseEvent(
	IProperties^ props, 
	String^ classId
)
JavaScript
FileNet.Api.Action.RaiseEvent = function(props, classId);

Parameters

props
Type: FileNet.Api.Property..::.IProperties
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
Type: System..::.String
A String specifying the name of the class. If null, or if the custom event class does not exist, this constructor throws an exception.

ToggleSee Also