SoftadminApi.Event_Raise

Type: Stored procedure

If multiple synchronous listeners are listening RAISEERROR will not prevent the rest from running.

Parameters

@Namespace mandatory varchar
The namespace of the event to raise.
@EventName mandatory varchar
The name of the event to raise.
@Argument mandatory nvarchar
Argument passed to the event listeners. Should contain the key to run one event or lookup other values needed for that event. It supports up to 1000 characters to make it easier to use compound keys such as "ParentId;ChildId".

It should not be used to store a list of different Ids, instead raise one event for each Id and use batch listeners to process multiple events at once.