Class WiFiEap
Definition
- Assembly:
- Tizen.Network.WiFi.dll
A class for managing the EAP information of the access point (AP).
C#Copypublic class WiFiEap
- Inheritance
-
objectWiFiEap
Properties
Declaration
C#Copypublic WiFiAuthenticationType AuthenticationType { get; set; }
Property Value
Type | Description |
---|---|
WiFiAuthenticationType | Authentication type of the Wi-Fi. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown while setting this value when Wi-Fi is not supported. |
System.ArgumentException | Thrown while setting this property due to an invalid parameter. |
System.InvalidOperationException | Thrown while setting this value due to an invalid operation. |
Declaration
C#Copypublic string CaCertificationFile { get; set; }
Property Value
Type | Description |
---|---|
string | CA certification file of EAP. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown while setting this value when Wi-Fi is not supported. |
System.ArgumentNullException | Thrown while setting this value when the file value is null. |
System.ArgumentException | Thrown while setting this property due to an invalid parameter. |
System.InvalidOperationException | Thrown while setting this value due to an invalid operation. |
Declaration
C#Copypublic WiFiEapType EapType { get; set; }
Property Value
Type | Description |
---|---|
WiFiEapType | Type of EAP. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown while setting this value when Wi-Fi is not supported. |
System.ArgumentException | Thrown while setting this property due to an invalid parameter. |
System.InvalidOperationException | Thrown while setting this value due to an invalid operation. |
Methods
Declaration
C#Copypublic string GetClientCertFile()
Returns
Type | Description |
---|---|
string | The file path of client certificate. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.OutOfMemoryException | Thrown when the system is out of memory. |
System.InvalidOperationException | Thrown when the method failed due an to invalid operation. |
Declaration
C#Copypublic string GetPrivateKeyFile()
Returns
Type | Description |
---|---|
string | The file path of private key. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.OutOfMemoryException | Thrown when the system is out of memory. |
System.ArgumentException | Thrown when the method fails due to an invalid parameter. |
System.InvalidOperationException | Thrown when the method fails due to an invalid operation. |
Declaration
C#Copypublic string GetUserName()
Returns
Type | Description |
---|---|
string | The user name |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.OutOfMemoryException | Thrown when the system is out of memory. |
System.InvalidOperationException | Thrown when the method failed due to an invalid operation. |
Declaration
C#Copypublic bool IsPasswordSet()
Returns
Type | Description |
---|---|
bool | True if password is set, false if password is not set. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.OutOfMemoryException | Thrown when the system is out of memory. |
System.InvalidOperationException | Thrown when the method failed due to an invalid operation. |
Declaration
C#Copypublic void SetClientCertFile(string clientCertFile)
Parameters
Type | Name | Description |
---|---|---|
string | clientCertFile | The file path of client certificate. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.ArgumentNullException | Thrown when the file path of client certificate is null. |
System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
System.InvalidOperationException | Thrown when the method failed due to an invalid operation. |
Declaration
C#Copypublic void SetPassword(string password)
Parameters
Type | Name | Description |
---|---|---|
string | password | The password |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.ArgumentNullException | Thrown when the password is passed as null. |
System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
System.InvalidOperationException | Thrown when the method failed due to an invalid operation. |
Declaration
C#Copypublic void SetPrivateKeyFile(string privateKeyFile, string password)
Parameters
Type | Name | Description |
---|---|---|
string | privateKeyFile | The file path of private key. |
string | password | The password. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.ArgumentNullException | Thrown when the file path of private key is null. |
System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
System.InvalidOperationException | Thrown when the method failed due an to invalid operation. |
Declaration
C#Copypublic void SetUserName(string userName)
Parameters
Type | Name | Description |
---|---|---|
string | userName | The user name |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the Wi-Fi is not supported. |
System.ArgumentNullException | Thrown when the user name is passed as null. |
System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
System.InvalidOperationException | Thrown when the method failed due to an invalid operation. |