Class SmartcardReader
Definition
- Namespace:
- Tizen.Network.Smartcard
- Assembly:
- Tizen.Network.Smartcard.dll
- API Level:
- 3
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/secureelement
The class for Smartcard reader information. It allows applications to handle the reader information.
public class SmartcardReader : IDisposable
- Inheritance
-
SmartcardReader
- Implements
Properties
View SourceIsSecureElementPresent
The existence of a secure element.
Declaration
public bool IsSecureElementPresent { get; }
Property Value
Type | Description |
---|---|
Boolean |
API Level: 3
View SourceName
The name of the reader.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
Methods
View SourceCloseSessions()
Closes all the sessions opened on the given reader.
Declaration
public void CloseSessions()
Exceptions
Type | Condition |
---|---|
NotSupportedException | Thrown when the Smartcard is not supported. |
InvalidOperationException | Thrown when the method failed due to an invalid operation. |
API Level: 3
View SourceDispose()
Dispose
Declaration
public void Dispose()
API Level: 3
View SourceFinalize()
SmartcardReader destructor.
Declaration
protected void Finalize()
OpenSession()
Connects to a secure element in the given reader.
Declaration
public SmartcardSession OpenSession()
Returns
Type | Description |
---|---|
SmartcardSession | The SmartcardSession object. |