Universal Windows Service Class Library

Trigger Class

Abstract class used as basic class for different trigger implementations. Every derived class must conatain a default constructor with no arguments.

For a list of all members of this type, see Trigger Members.

System.Object
   uws.Triggers.Trigger
      Derived types

public abstract class Trigger : ITrigger

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

This abstract class implements the trigger interface ITrigger. Different implementations of this class are possible but every derived class must contain a default constructor with no arguments.

The method Start has to be provided from different derived classes. Also the Configure function must be implemented by the derived classes due to at least one configuration method using a xml element.

For an example source code see the ITrigger interface.

Requirements

Namespace: uws.Triggers

Assembly: uwsCore (in uwsCore.dll)

See Also

Trigger Members | uws.Triggers Namespace | ITrigger