C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
AttributeFilter.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
5{
7 public abstract class AttributeFilter : LossFilter
8 {
9 #region Public Properties
11 [DataMember(Order = 14)]
12 [NotNull]
13 [NotEmpty]
14 public string attribute { get; set; }
15 #endregion Public Properties
16 }
17}
A predicate that determines whether a loss should be included in the perspective or not.
Definition LossFilter.cs:11
A filter that does a test on some attribute.
string attribute
The attribute that is being filtered on.