Class CallHandle

Definition

Namespace:
Tizen.Telephony
Assembly:
Tizen.Telephony.dll
API Level:
3

This class provides the APIs to get the information about calls.

C#
Copy
public class CallHandle
Inheritance
System.Object
CallHandle

Properties

View Source

ConferenceStatus

Gets whether the call is a conference call or not.

Declaration
C#
Copy
public bool ConferenceStatus { get; }
Property Value
Type Description
Boolean

The value whether the call is a conference call or not (true: Conference call, false: Single call).

API Level: 3
View Source

Direction

Gets whether the call is MO(Mobile Originated) call or MT(Mobile Terminated) call.

Declaration
C#
Copy
public CallHandle.CallDirection Direction { get; }
Property Value
Type Description
CallHandle.CallDirection

The direction of the call.

Exceptions
Type Condition
System.InvalidOperationException

This Exception can occur due to:

  1. Operation Not Supported.
API Level: 3
View Source

HandleId

Gets the call handle ID.

Declaration
C#
Copy
public uint HandleId { get; }
Property Value
Type Description
System.UInt32

The ID of the call handle. 0 if unable to complete the operation.

API Level: 3
View Source

Number

Gets the call number.

Declaration
C#
Copy
public string Number { get; }
Property Value
Type Description
System.String

The number of the call. Empty string if unable to complete the operation.

API Level: 3
View Source

Status

Gets the call status.

Declaration
C#
Copy
public CallHandle.CallStatus Status { get; }
Property Value
Type Description
CallHandle.CallStatus

The status of the call.

API Level: 3
View Source

Type

Gets the call type.

Declaration
C#
Copy
public CallHandle.CallType Type { get; }
Property Value
Type Description
CallHandle.CallType

The type of the call.

API Level: 3