Class CallHandle

    Definition

    Namespace:
    Tizen.Telephony
    Assembly:
    Tizen.Telephony.dll

    This class provides the APIs to get the information about calls. It contains several properties such as HandleId, Number, Type, Status, Direction, and ConferenceStatus, which allow users to obtain specific details about a call. These properties can be accessed individually to gain insights into aspects like the call handle ID, number, type, status, direction, and whether it is a conference call or not.

    public class CallHandle
    Inheritance
    object
    CallHandle

    Properties

    View Source

    ConferenceStatus

    Gets whether the call is a conference call or not.

    Declaration
    public bool ConferenceStatus { get; }
    Property Value
    Type Description
    bool

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

    View Source

    Direction

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

    Declaration
    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.
    View Source

    HandleId

    Gets the call handle ID.

    Declaration
    public uint HandleId { get; }
    Property Value
    Type Description
    uint

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

    View Source

    Number

    Gets the call number.

    Declaration
    public string Number { get; }
    Property Value
    Type Description
    string

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

    View Source

    Status

    Gets the call status.

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

    The status of the call.

    View Source

    Type

    Gets the call type.

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

    The type of the call.

    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX