Class WiFiEapConfiguration
Definition
- Assembly:
- Tizen.Network.WiFi.dll
A class for managing the EAP configuration.
C#
Copy
public class WiFiEapConfiguration
- Inheritance
-
objectWi
Fi Eap Configuration
Properties
Declaration
C#
Copy
public string AnonymousIdentify { get; set; }
Property Value
Type | Description |
---|---|
string | Represents the anonymous identity of the access point. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown while setting this value when Wi-Fi is not supported. |
System. |
Thrown while setting this property due to an invalid parameter. |
System. |
Thrown while setting this value due to an invalid operation. |
Declaration
C#
Copy
public WiFiAuthenticationType AuthenticationType { get; set; }
Property Value
Type | Description |
---|---|
Wi |
Authentication type of the Wi-Fi. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown while setting this value when Wi-Fi is not supported. |
System. |
Thrown while setting this property due to an invalid parameter. |
System. |
Thrown while setting this value due to an invalid operation. |
Declaration
C#
Copy
public string CaCertificationFile { get; set; }
Property Value
Type | Description |
---|---|
string | CA certification file of EAP. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown while setting this value when Wi-Fi is not supported. |
System. |
Thrown while setting this property due to an invalid parameter. |
System. |
Thrown while setting this value due to an invalid operation. |
Declaration
C#
Copy
public WiFiEapType EapType { get; set; }
Property Value
Type | Description |
---|---|
Wi |
Type of EAP. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown while setting this value when Wi-Fi is not supported. |
System. |
Thrown while setting this property due to an invalid parameter. |
System. |
Thrown while setting this value due to an invalid operation. |
Declaration
C#
Copy
public string Identity { get; set; }
Property Value
Type | Description |
---|---|
string | Represents the identity of the access point. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown while setting this value when Wi-Fi is not supported. |
System. |
Thrown while setting this property due to an invalid parameter. |
System. |
Thrown while setting this value due to an invalid operation. |
Declaration
C#
Copy
public string SubjectMatch { get; set; }
Property Value
Type | Description |
---|---|
string | Represents the subject match of the AP. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown while setting this value when Wi-Fi is not supported. |
System. |
Thrown while setting this property due to an invalid parameter. |
System. |
Thrown while setting this value due to an invalid operation. |
Methods
GetClientCertFile()
Gets the access point client certificate file from the configuration.
Declaration
C#
Copy
public string GetClientCertFile()
Returns
Type | Description |
---|---|
string | The certification authority (CA) certificates file of the access point. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the Wi-Fi is not supported. |
System. |
Thrown when the method failed due to an invalid operation. |
SetClientCertFile(string, string)
Sets the access point client certificate file to configuration.
Declaration
C#
Copy
public void SetClientCertFile(string privateKey, string clientCert)
Parameters
Type | Name | Description |
---|---|---|
string | privateKey | The private key file. |
string | clientCert | The certification authority(CA) certifies the files of access points. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the Wi-Fi is not supported. |
System. |
Thrown when the method failed due to an invalid parameter. |
System. |
Thrown when the method failed due to an invalid operation. |