MobileBroadbandPinManager
MobileBroadbandPinManager
MobileBroadbandPinManager
MobileBroadbandPinManager
Class
Definition
Defines the PIN manager for a given mobile broadband modem and SIM Card.
Note
This functionality is only available to mobile operator apps and Windows Store apps given privileged access by mobile network operators.
If you want to use this API and publish your app to the Store, you will need special approval. For more information, see the Special and restricted capabilities section under App capability declarations.
public : sealed class MobileBroadbandPinManager : IMobileBroadbandPinManagerpublic sealed class MobileBroadbandPinManager : IMobileBroadbandPinManagerPublic NotInheritable Class MobileBroadbandPinManager Implements IMobileBroadbandPinManager// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
The usage and content of a Universal Integrated Circuit Card (UICC), normally called a SIM Card, can be protected by use of a code called the Personal Identification Number (PIN).
A MobileBroadbandPinManager object is returned by the PinManager property on the MobileBroadbandDeviceInformation.
Properties
SupportedPins SupportedPins SupportedPins SupportedPins
Gets a list of the supported PIN types for the mobile broadband modem and SIM Card.
public : IVectorView<MobileBroadbandPinType> SupportedPins { get; }public IReadOnlyList<MobileBroadbandPinType> SupportedPins { get; }Public ReadOnly Property SupportedPins As IReadOnlyList<MobileBroadbandPinType>// You can use this property in JavaScript.
- Value
- IVectorView<MobileBroadbandPinType> IReadOnlyList<MobileBroadbandPinType> IReadOnlyList<MobileBroadbandPinType> IReadOnlyList<MobileBroadbandPinType>
a list of the supported PIN types for the mobile broadband modem and SIM Card.
- See Also
Methods
GetPin(MobileBroadbandPinType) GetPin(MobileBroadbandPinType) GetPin(MobileBroadbandPinType) GetPin(MobileBroadbandPinType)
Gets the mobile broadband PIN of a specific PIN type.
public : MobileBroadbandPin GetPin(MobileBroadbandPinType pinType)public MobileBroadbandPin GetPin(MobileBroadbandPinType pinType)Public Function GetPin(pinType As MobileBroadbandPinType) As MobileBroadbandPin// You can use this method in JavaScript.
The mobile broadband PIN type.
The mobile broadband PIN returned. This value is either provided by the end user or from a cache if allowed. .
- See Also