Class BodyPartCondition
Body Part Condition for a Policy Routing Rule. See Sections 3.3.3.1.12 and E.1.1 of NENA STA-010.3.
Inherited Members
Namespace: PolicyRouting
Assembly: Ng911Lib.dll
Syntax
public class BodyPartCondition : ConditionBase
Constructors
| Edit this page View SourceBodyPartCondition()
Default constructor
Declaration
public BodyPartCondition()
Properties
| Edit this page View SourceOperator
Operator for the condition. Must be one of: exists, missing, EQ, SS, NE, GT, LT, GE, LE. Required.
Declaration
[JsonPropertyName("operator")]
public string Operator { get; set; }
Property Value
Type | Description |
---|---|
string |
content
This is the value to be compared with the value of the specified element or member of the first body part of the specified type, using the specified comparison operator; this member is omitted when “operator” is “exists” or “missing” and MANDATORY otherwise.
Declaration
public string content { get; set; }
Property Value
Type | Description |
---|---|
string |
contentType
Set to a MIME media (content) type and subtype (e.g., “text/plain”). Required.
Declaration
public string contentType { get; set; }
Property Value
Type | Description |
---|---|
string |
element
This is the name of an element or member in the specified body part. Required.
Declaration
public string element { get; set; }
Property Value
Type | Description |
---|---|
string |