Interface IFileContainsTrigger
Represents a trigger that continuously reads or tails a specified file and evaluates its content against a text evaluator. The trigger's state is determined by whether the text evaluator finds a match in the file's content.
Inherited Members
Namespace: EyeAuras.DefaultAuras.Triggers.FileContains
Assembly: EyeAuras.DefaultAuras.dll
Syntax
public interface IFileContainsTrigger : IAuraTrigger, IAuraEntity, IAuraObject, IBindableReactiveObject, IHasId, IHasTypedId<string>, ICanSetContext, IHasContext, IHasErrors, IDisposable, INotifyPropertyChanged, IHasError, IHasErrorProvider, ICanSetName, IHasName, ICanSetDescription, IHasDescription
Properties
Name | Description |
---|---|
TargetFile | Gets or sets the file to be monitored and evaluated by the trigger. |
TextEvaluator | Provides access to the text evaluator view model used to match text patterns within the target file. The text evaluator can be of various types, such as regex, lambda expressions, or plain text. |