Class OutgoingTestCallResults
Class for reporting the results of an NG9-1-1 test call that uses only one media type. The media type is typically audio.
Inherited Members
Namespace: SipLib.TestCalls
Assembly: SipLib.dll
Syntax
public class OutgoingTestCallResults
Fields
| Edit this page View SourceCallStartTime
Time that the test call started. This is the time at which the test call client received an OK response to the INVITE request for the test call. Valid only if Success is true.
Declaration
public DateTime CallStartTime
Field Value
Type | Description |
---|---|
DateTime |
CallStopTime
Time that the test call ended. This is the time at which the test call client received a BYE request from the test call target. Valid only if Success is true.
Declaration
public DateTime CallStopTime
Field Value
Type | Description |
---|---|
DateTime |
FailureReason
Text describing the reason that the test call failed. Valid only if Success is false.
Declaration
public string FailureReason
Field Value
Type | Description |
---|---|
string |
PacketsReceived
Number of RTP packets received from the test call target. Valid only if Success is true. For a successful test, this value may not exactly match the value of PacketsSent. For example, for a test call client that terminates the call after 3 packets, the value of PacketsReceived will be at least 3. The value of PacketsSent may be 4. The reasons for possible different values PacketsSent and PacketsReceived network latency and the asynchronous nature of Task execution.
Declaration
public int PacketsReceived
Field Value
Type | Description |
---|---|
int |
PacketsSent
Number of RTP packets sent by the outgoing test call (client) to the test call target. Valid only if Success is true.
Declaration
public int PacketsSent
Field Value
Type | Description |
---|---|
int |
Success
If true then the test call was successful, else the call failed.
Declaration
public bool Success
Field Value
Type | Description |
---|---|
bool |