The target object of a ISubscription-based object(IClassSubscription, IClassWorkflowSubscription, IInstanceSubscription, IInstanceWorkflowSubscription). You set the property with a Subscribable object, then specify the property when you create the ISubscription-based object.

For a IClassSubscription or IClassWorkflowSubscription object, set the value of the SubscriptionTarget property to a ISubscribableClassDefinition object or subclass that specifies a type of Content Engine class (for example, Document or Folder). This means that any instance of the class, whether it currently exists in the persistent store or you create a new instance, will, when acted upon, cause one or moreof the IEventAction object's events to be raised.

For an IInstanceSubscription or IInstanceWorkflowSubscription object, set the value of the SubscriptionTarget property to a specific ISubscribable object. This means that only this currently instantiated object, when acted upon, causes one or more of the IEventAction object's events to be raised. If the object is a IVersionSeries object, the event is raised when a version in the version series is acted upon.

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

ToggleSyntax

Visual Basic (Declaration)
Property SubscriptionTarget As ISubscribable
C#
ISubscribable SubscriptionTarget { get; set; }
Visual C++
property ISubscribable^ SubscriptionTarget {
	ISubscribable^ get ();
	void set (ISubscribable^ value);
}
JavaScript
function get_subscriptionTarget();
function set_subscriptionTarget(value);

ToggleRemarks

ToggleSee Also