Class Call
Definition
- Assembly:
- Tizen.Telephony.dll
The Call APIs allow you to get the voice and video call states. It provides the list of CallHandle which can be used to get the information about call related actions.
C#
Copy
public class Call
- Inheritance
-
objectCall
Constructors
Declaration
C#
Copy
public Call(SlotHandle handle)
Parameters
Type | Name | Description |
---|---|---|
Slot |
handle | SlotHandle received in the Manager.Init API. |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception occurs if the handle provided is null. |
Properties
View Source
PreferredVoiceSubscription
Gets the current value for the preferred voice call subscription.
Declaration
C#
Copy
public CallPreferredVoiceSubscription PreferredVoiceSubscription { get; }
Property Value
Type | Description |
---|---|
Call |
The currently set preferred voicecall subscription value. |
Methods
Declaration
C#
Copy
public IEnumerable<CallHandle> GetCallHandleList()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><Call |
The list of the CallHandle for existing calls. |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
In case of an invalid parameter. |
System. |
In case of any system error. |
System. |
In case of privileges not defined. |
System. |
In case of out of memory. |