EventSpotterActivateWithEptdocumentTEventHandler Method (TEventHandler, Int32, String, String) Content Studio 5.7 SDK
Content Studio Web Content Management System

[This is preliminary documentation and is subject to change.]

Activates a Content Studio version 5.2 and earlier synchronous event handler with sample data generated for an ept document and the TEventHandler type of event handler.

Namespace: ContentStudio.EventActions.SynchronousEventHandlers.Spotlijster
Assembly: EventHandlers.Spotlijster (in EventHandlers.Spotlijster.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public void ActivateWithEptdocument<TEventHandler>(
	TEventHandler handler,
	int eventId,
	string customData,
	string eptContent
)
where TEventHandler : class, ICSEventHandler

Parameters

handler
Type: TEventHandler
The handler to activate.
eventId
Type: SystemInt32
The numeric identifier of the event.
customData
Type: SystemString
The custom data you would like to test. Custom data is the data entered in the command field in the event actions dialog in the Content Studio administrative interface.
eptContent
Type: SystemString
Custom ept data, can be null to generate sample data.

Type Parameters

TEventHandler
The type of event handler. This handler must implement the ICSEventHandler interface.
Exceptions

Remarks

Note Note
The ICSEventHandler2 interface is avaliable with Content Studio version 5.3 and later.
Use this version of ActivateWithEptdocument when you test an event handler that derives directly from the SynchronousEventHandlerBase class or that implements the ICSEventHandler directly. Such an event handler can serve more that one event.
See Also

Reference