Class CapCondition
Condition class for testing Common Alerting Protocol message bodies. See Sections 3.3.3.1.17 and E.1.1 of NENA-STA-010.3.
Inherited Members
Namespace: PolicyRouting
Assembly: Ng911Lib.dll
Syntax
public class CapCondition : ConditionBase
Constructors
| Edit this page View SourceCapCondition()
Default constructor.
Declaration
public CapCondition()
Properties
| Edit this page View SourceOperator
Operator to used for comparison. Must be "EQ", "SS" or "NE". Required.
Declaration
[JsonPropertyName("operator")]
public string Operator { get; set; }
Property Value
Type | Description |
---|---|
string |
content
This is the string that is compared with the corresponding element of the CAP component using the test indicated by “operator”. Required.
Declaration
public string content { get; set; }
Property Value
Type | Description |
---|---|
string |
nonInteractive
Value to use to compare the "NonInteractive" field of the CAP massage with.
Declaration
public bool nonInteractive { get; set; }
Property Value
Type | Description |
---|---|
bool |
tag
Must be one of "Identifier", "Sender", "Address", "InfoEventCode" or "InfoValueName". Required.
Declaration
public string tag { get; set; }
Property Value
Type | Description |
---|---|
string |