Click or drag to resize

BaseTriggerCondition Class

Base class for trigger conditions.
Inheritance Hierarchy

Namespace:  Colygon.MatchPoint.WorkflowKit.Configuration
Assembly:  Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax
C#
[SerializableAttribute]
public abstract class BaseTriggerCondition

The BaseTriggerCondition type exposes the following members.

Constructors
  NameDescription
Protected methodBaseTriggerCondition
Initializes a new instance of the BaseTriggerCondition class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldContentType
Specifies a content type that has to match.
Public fieldExpression
Specifies an expression that has to evaluate to the boolean value 'true'. In the 'ContextMenuTriggerCondition' you can use 'DataItem.PropertyName' to access the properties of the list item where the context menu should be shown. E.g.: 'DataItem.Category == "Global"'.
Public fieldRecursive
If enabled, all descendants of the specified tag are also matched.
Public fieldTag
Specifies a tag that has to exist on the item.
Public fieldUrlPrefix
Specifies an URL prefix that has to match. This URL can be relative to the workflow item's web.
Top
Remarks
Trigger conditions are responsible for starting a workflow on a SharePoint list item.
Remarks
This is a MatchPoint configuration class.
See Also