EventSpotterActivateWithEptdocumentTEventHandler Method (TEventHandler, String, 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,
	string eventName,
	string customData,
	string eptContent
)
where TEventHandler : class, ICSEventHandler

Parameters

handler
Type: TEventHandler
The handler to activate. This handler must implement the ICSEventHandler interface
eventName
Type: SystemString
The name of the event type ex. OnDocumentSave.

Use one of the following non case-sensitive names:

  • OnDocumentDelete
  • OnDocumentApprove
  • OnDocumentDestroy
  • OnDocumentReject
  • OnDocumentRevision
  • OnDocumentSave
  • OnDocumentCreate
  • OnDocumentCheckOut
  • OnDocumentCheckIn
  • OnBeforeDocumentSave
  • OnBeforeDocumentSynchronize
  • OnXmlIndexSave
  • OnXmlIndexFieldDelete
  • OnDocumentRestore
  • OnDocumentMoveInHierarchy
  • OnDocumentRevisionRestore
  • OnDocumentPreview
  • OnDocumentPreviewDispose
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.
Exceptions

Remarks

Note Note
Starting with Content Studio version 5.3 the ICSEventHandler2 interface is avaliable which provides more functionality.
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