C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ExpressionFilter.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
4
6{
8 public abstract class ExpressionFilter : LossFilter
9 {
10 #region Public Properties
12 [DataMember(Order = 14)]
13 [NotNull]
14 [NotEmpty]
15 public List<IReference<LossFilter>> expressions { get; set; }
16 #endregion Public Properties
17
19 protected ExpressionFilter()
20 {
21 expressions = new List<IReference<LossFilter>>();
22 }
23 }
24}
A predicate that determines whether a loss should be included in the perspective or not.
Definition LossFilter.cs:11
A filter that operates on a list of filters.
List< IReference< LossFilter > > expressions
A list of filters to perform the operation on.
ExpressionFilter()
Construct a new ExpressionFilter with an empty expressions list.