Class Sim
Definition
- Assembly:
- Tizen.Telephony.dll
This class provides APIs that allow you to extract the information stored on a SIM card.
public class Sim
- Inheritance
-
objectSim
Constructors
View SourceSim(SlotHandle)
The SIM class constructor.
Declaration
public Sim(SlotHandle handle)
Parameters
Type | Name | Description |
---|---|---|
SlotHandle | handle | SlotHandle received in the Manager.Init API. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | The required feature is not supported. |
System.ArgumentNullException | This exception occurs if the handle provided is null. |
Properties
View SourceApplicationList
Gets the count of an application on the UICC.
Declaration
public uint ApplicationList { get; }
Property Value
Type | Description |
---|---|
uint | The masking value for below values are provided by the enumeration ApplicationType. 0 if unable to complete the operation. |
CallForwardingIndicatorState
Gets the call forwarding indicator state of the SIM. If the state is true, the incoming call will be forwarded to the selected number. State indicates the CFU (Call Forwarding Unconditional) indicator status - Voice (3GPP TS 31.102 4.2.64 EF CFIS).
Declaration
public bool CallForwardingIndicatorState { get; }
Property Value
Type | Description |
---|---|
bool | The value whether the incoming call will be forwarded or not (true: forwarded, false: not forwarded). |
CurrentLockState
Gets the lock state of the SIM.
Declaration
public Sim.LockState CurrentLockState { get; }
Property Value
Type | Description |
---|---|
Sim.LockState | The current lock state of the SIM. |
CurrentState
Gets the state of the SIM.
Declaration
public Sim.State CurrentState { get; }
Property Value
Type | Description |
---|---|
Sim.State | The current state of the SIM. |
GroupId1
Gets the GID1 (Group Identifier Level 1). Gets Group Identifier Level 1 (GID1) embedded in the SIM card. If this value is not stored in SIM card, an empty string will be returned.
Declaration
public string GroupId1 { get; }
Property Value
Type | Description |
---|---|
string | The GID1 (Group Identifier Level 1). Empty string if unable to complete the operation. |
IccId
Gets the Integrated Circuit Card IDentification (ICC-ID). The Integrated Circuit Card Identification number internationally identifies SIM cards.
Declaration
public string IccId { get; }
Property Value
Type | Description |
---|---|
string | The Integrated Circuit Card Identification. Empty string if unable to complete the operation. |
IsChanged
Checks whether the current SIM card is different from the previous SIM card.
Declaration
public bool IsChanged { get; }
Property Value
Type | Description |
---|---|
bool | true if the current SIM card is different from the previous SIM card, otherwise false if the SIM card is not changed. |
Msin
Gets the Mobile Subscription Identification Number (MSIN [9~10 digits]) of the SIM provider.
Declaration
public string Msin { get; }
Property Value
Type | Description |
---|---|
string | The Mobile Subscription Identification Number. Empty string if unable to complete the operation. |
Operator
Gets the SIM Operator (MCC [3 digits] + MNC [2~3 digits]). The Operator is embedded in the SIM card.
Declaration
public string Operator { get; }
Property Value
Type | Description |
---|---|
string | The SIM Operator. Empty string if unable to complete the operation. |
Spn
Gets the Service Provider Name (SPN) of the SIM card. Gets Service Provider Name embedded in the SIM card. If this value is not stored in the SIM card, an empty string will be returned.
Declaration
public string Spn { get; }
Property Value
Type | Description |
---|---|
string | The Service Provider Name. Empty string if unable to complete the operation. |
SubscriberId
Gets the subscriber ID.
Declaration
public string SubscriberId { get; }
Property Value
Type | Description |
---|---|
string | The subscriber ID. Empty string if unable to complete the operation. |
SubscriberNumber
Gets the subscriber number embedded in the SIM card. This value contains the MSISDN related to the subscriber. If this value is not stored in SIM card, an empty string will be returned.
Declaration
public string SubscriberNumber { get; }
Property Value
Type | Description |
---|---|
string | The subscriber number in the SIM. Empty string if unable to complete the operation. |