Class NetworkDiscrepancyReport
Data class for the Network Discrepancy Report. See Sections 3.7.19 and E.2.1 of NENA-STA-010.3.
Inherited Members
Namespace: DiscrepancyReporting
Assembly: Ng911Lib.dll
Syntax
public class NetworkDiscrepancyReport : DiscrepancyReport
Constructors
| Edit this page View SourceNetworkDiscrepancyReport()
Default constructor.
Declaration
public NetworkDiscrepancyReport()
Properties
| Edit this page View SourceipAddressLocal
The IP address of the machine experiencing the error. Conditional: REQUIRED unless DHCP related and the IP address not available.
Declaration
public string ipAddressLocal { get; set; }
Property Value
Type | Description |
---|---|
string |
ipAddressRemote
The IP address to/from which the problem is occurring. Conditional: REQUIRED unless problem is DNS or DHCP related.
Declaration
public string ipAddressRemote { get; set; }
Property Value
Type | Description |
---|---|
string |
problem
Specifies the problem encountered. Must be set to the string equivalent of one of the values in the NetworkProblemEnum. Required.
Declaration
public string problem { get; set; }
Property Value
Type | Description |
---|---|
string |
timestamp
The time at which the problem occurred. Must be in the NENA Timestamp format specified in Section 2.3 of NENA-STA-010.3. Required
Declaration
public string timestamp { get; set; }
Property Value
Type | Description |
---|---|
string |
url
The URL of the resource (e.g., the DNS or DHCP server). Conditional: REQUIRED if known.
Declaration
public string url { get; set; }
Property Value
Type | Description |
---|---|
string |