SipAudioCall.SendDtmf Method

Definition

Overloads

SendDtmf(Int32)

Sends a DTMF code.

SendDtmf(Int32, Message)

Sends a DTMF code.

SendDtmf(Int32)

Sends a DTMF code.

[Android.Runtime.Register("sendDtmf", "(I)V", "GetSendDtmf_IHandler")]
public virtual void SendDtmf (int code);
[<Android.Runtime.Register("sendDtmf", "(I)V", "GetSendDtmf_IHandler")>]
abstract member SendDtmf : int -> unit
override this.SendDtmf : int -> unit

Parameters

code
Int32

the DTMF code to send. Value 0 to 15 (inclusive) are valid inputs.

Attributes

Remarks

Sends a DTMF code. According to RFC 2883, event 0--9 maps to decimal value 0--9, '*' to 10, '#' to 11, event 'A'--'D' to 12--15, and event flash to 16. Currently, event flash is not supported.

Java documentation for android.net.sip.SipAudioCall.sendDtmf(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SendDtmf(Int32, Message)

Sends a DTMF code.

[Android.Runtime.Register("sendDtmf", "(ILandroid/os/Message;)V", "GetSendDtmf_ILandroid_os_Message_Handler")]
public virtual void SendDtmf (int code, Android.OS.Message? result);
[<Android.Runtime.Register("sendDtmf", "(ILandroid/os/Message;)V", "GetSendDtmf_ILandroid_os_Message_Handler")>]
abstract member SendDtmf : int * Android.OS.Message -> unit
override this.SendDtmf : int * Android.OS.Message -> unit

Parameters

code
Int32

the DTMF code to send. Value 0 to 15 (inclusive) are valid inputs.

result
Message

the result message to send when done

Attributes

Remarks

Sends a DTMF code. According to RFC 2883, event 0--9 maps to decimal value 0--9, '*' to 10, '#' to 11, event 'A'--'D' to 12--15, and event flash to 16. Currently, event flash is not supported.

Java documentation for android.net.sip.SipAudioCall.sendDtmf(int, android.os.Message).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to