GetSmsDeviceOperation
GetSmsDeviceOperation
GetSmsDeviceOperation
GetSmsDeviceOperation
Class
Definition
Retrieves an SmsDevice object asynchronously.
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 GetSmsDeviceOperation : IAsyncInfo, IAsyncOperationpublic sealed class GetSmsDeviceOperation : IAsyncInfo, IAsyncOperationPublic NotInheritable Class GetSmsDeviceOperation Implements IAsyncInfo, IAsyncOperation// 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
|
Properties
Completed Completed Completed Completed
Specifies whether the asynchronous SmsDevice object retrieval operation has completed or not.
public : AsyncOperationCompletedHandler<SmsDevice> Completed { get; set; }public AsyncOperationCompletedHandler<SmsDevice> Completed { get; set; }Public ReadWrite Property Completed As AsyncOperationCompletedHandler<SmsDevice>// You can use this property in JavaScript.
- Value
- AsyncOperationCompletedHandler<SmsDevice> AsyncOperationCompletedHandler<SmsDevice> AsyncOperationCompletedHandler<SmsDevice> AsyncOperationCompletedHandler<SmsDevice>
A handler for the completed event of an asynchronous action.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
ErrorCode ErrorCode ErrorCode ErrorCode
Specifies the error code for the asynchronous SmsDevice object retrieval operation
public : HResult ErrorCode { get; }public Exception ErrorCode { get; }Public ReadOnly Property ErrorCode As Exception// You can use this property in JavaScript.
- Value
- HResult Exception Exception Exception
The result value of the asynchronous operation.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
Id Id Id Id
Specifies the ID of the asynchronous SmsDevice object retrieval operation.
public : unsigned int Id { get; }public uint Id { get; }Public ReadOnly Property Id As uint// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
An integer that uniquely represents the asynchronous SmsDevice object retrieval operation.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
Status Status Status Status
Specifies the status of the asynchronous SmsDevice object retrieval operation.
public : AsyncStatus Status { get; }public AsyncStatus Status { get; }Public ReadOnly Property Status As AsyncStatus// You can use this property in JavaScript.
An enumerated value representing the status of an asynchronous SmsDevice object retrieval operation.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
Methods
Cancel() Cancel() Cancel() Cancel()
Cancels the asynchronous SmsDevice object retrieval.
public : void Cancel()public void Cancel()Public Function Cancel() As void// You can use this method in JavaScript.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
Close() Close() Close() Close()
Closes the asynchronous SmsDevice object retrieval operation.
public : void Close()public void Close()Public Function Close() As void// You can use this method in JavaScript.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|
GetResults() GetResults() GetResults() GetResults()
Gets the results of the asynchronous SmsDevice object retrieval operation.
public : SmsDevice GetResults()public SmsDevice GetResults()Public Function GetResults() As SmsDevice// You can use this method in JavaScript.
| Device family |
Windows Desktop Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Devices.Sms.LegacySmsApiContract (introduced v1)
|
| Capabilities |
sms
cellularMessaging
|