SmsMessageReceivedEventArgs
SmsMessageReceivedEventArgs
SmsMessageReceivedEventArgs
SmsMessageReceivedEventArgs
Class
Definition
Provides data for ISmsBinaryMessage event handlers.
Note
This functionality is only available to mobile operator apps and Windows Store app given privileged access by mobile network operators, mobile broadband adapter IHV, or OEM. For more information, see Mobile Broadband: device apps.
Note
Note that this class and its methods are supported for the maintenance of legacy desktop apps that used it in earlier versions of Windows; and if you do use this class, you must specify the Windows.Devices.Sms.LegacySmsApiContract in your app's manifest. Do not use this class if you are developing new apps for Windows 10. Instead, use the members of this namespace that do not require the Windows.Devices.Sms.LegacySmsApiContract.
public : sealed class SmsMessageReceivedEventArgs : ISmsMessageReceivedEventArgspublic sealed class SmsMessageReceivedEventArgs : ISmsMessageReceivedEventArgsPublic NotInheritable Class SmsMessageReceivedEventArgs Implements ISmsMessageReceivedEventArgs// You can use this class in JavaScript.
- Attributes
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
Remarks
An instance of the SmsMessageReceivedEventArgs class can be retrieved from the SmsMessageReceivedEventHandler delegate.
Properties
BinaryMessage BinaryMessage BinaryMessage BinaryMessage
Retrieves an object that holds the binary representation of the message. This is of interest only to clients who want to pass binary messages on directly or do their own interpretation of the binary message contents.
public : SmsBinaryMessage BinaryMessage { get; }public SmsBinaryMessage BinaryMessage { get; }Public ReadOnly Property BinaryMessage As SmsBinaryMessage// You can use this property in JavaScript.
A reference to an SmsBinaryMessage object.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
TextMessage TextMessage TextMessage TextMessage
Retrieves an object that holds the text representation of the message. If the message is not successfully decoded, an error is returned.
public : SmsTextMessage TextMessage { get; }public SmsTextMessage TextMessage { get; }Public ReadOnly Property TextMessage As SmsTextMessage// You can use this property in JavaScript.
A new SmsTextMessage object.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|