Class CallLogEvent
This is the base class for CallStartLogEvent, RecCallStartLogEvent, CallEndEvent and RecCallEndLogEvent and others. Do not use this class directly for logging events.
Inheritance
Inherited Members
Namespace: I3V3.LogEvents
Assembly: Ng911Lib.dll
Syntax
public class CallLogEvent : LogEvent
Constructors
| Edit this page View SourceCallLogEvent()
Constructor
Declaration
public CallLogEvent()
Properties
| Edit this page View Sourcedirection
Specifies the direction of the call. Must be "incoming" or "outgoing". Required.
Declaration
public string direction { get; set; }
Property Value
Type | Description |
---|---|
string |
from
Used for non-SIP interfaces, identifies the source of the call. Not requred for SIP interfaces.
Declaration
public string from { get; set; }
Property Value
Type | Description |
---|---|
string |
localCallType
Contains an application specific local call type. Optional.
Declaration
public string localCallType { get; set; }
Property Value
Type | Description |
---|---|
string |
localUse
Contains application specific local use information. Optional.
Declaration
public object localUse { get; set; }
Property Value
Type | Description |
---|---|
object |
standardPrimaryCallType
Type of the call. Must be one of the values specified in the LogEvent Call Types Registry. See Section 10.23 of NENA-STA-010.3.
Declaration
public string standardPrimaryCallType { get; set; }
Property Value
Type | Description |
---|---|
string |
standardSecondaryCallType
Not required. Must be one of the values defined in Section 10.23 of NENA-STA-010.3 if specified.
Declaration
public string standardSecondaryCallType { get; set; }
Property Value
Type | Description |
---|---|
string |
to
Used for non-SIP interfaces, identifies the destination of the call. Not requred for SIP interfaces.
Declaration
public string to { get; set; }
Property Value
Type | Description |
---|---|
string |