SmsMessage.Status Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
GSM: For an SMS-STATUS-REPORT message, this returns the status field from the status report.
public virtual int Status { [Android.Runtime.Register("getStatus", "()I", "GetGetStatusHandler")] get; }
[<get: Android.Runtime.Register("getStatus", "()I", "GetGetStatusHandler")>]
member this.Status : int
Property Value
0 for GSM or 2 shifted left by 16 for CDMA indicates the previously sent message was received. See TS 23.040, 9.2.3.15 and C.S0015-B, v2.0, 4.5.21 for a description of other possible values.
- Attributes
Remarks
GSM: For an SMS-STATUS-REPORT message, this returns the status field from the status report. This field indicates the status of a previously submitted SMS, if requested. See TS 23.040, 9.2.3.15 TP-Status for a description of values. CDMA: For not interfering with status codes from GSM, the value is shifted to the bits 31-16. The value is composed of an error class (bits 25-24) and a status code (bits 23-16). Possible codes are described in C.S0015-B, v2.0, 4.5.21.
Java documentation for android.telephony.SmsMessage.getStatus()
.
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.