Class WiFiEap

Definition

Namespace:
Tizen.Network.WiFi
Assembly:
Tizen.Network.WiFi.dll
API Level:
3

A class for managing the EAP information of the access point (AP).

C#
Copy
public class WiFiEap
Inheritance
WiFiEap

Properties

View Source

AuthenticationType

The type of EAP phase 2 authentication of the Wi-Fi.

Declaration
C#
Copy
public WiFiAuthenticationType AuthenticationType { get; set; }
Property Value
Type Description
WiFiAuthenticationType

Authentication type of the Wi-Fi.

API Level: 3
View Source

CaCertificationFile

The file path of CA Certificate of EAP.

Declaration
C#
Copy
public string CaCertificationFile { get; set; }
Property Value
Type Description
String

CA certification file of EAP.

API Level: 3
View Source

EapType

The EAP type of Wi-Fi.

Declaration
C#
Copy
public WiFiEapType EapType { get; set; }
Property Value
Type Description
WiFiEapType

Type of EAP.

API Level: 3

Methods

View Source

GetClientCertFile()

Gets the client certificate of EAP.

Declaration
C#
Copy
public string GetClientCertFile()
Returns
Type Description
String

The file path of client certificate.

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

GetPrivateKeyFile()

Gets the private key file of EAP.

Declaration
C#
Copy
public string GetPrivateKeyFile()
Returns
Type Description
String

The file path of private key.

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

GetUserName()

Gets the username of EAP passphrase.

Declaration
C#
Copy
public string GetUserName()
Returns
Type Description
String

The user name

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

IsPasswordSet()

Returns whether the password is set or not.

Declaration
C#
Copy
public bool IsPasswordSet()
Returns
Type Description
Boolean

True if password is set, false if password is not set.

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

SetClientCertFile(String)

Sets the CA certificate of EAP.

Declaration
C#
Copy
public void SetClientCertFile(string clientCertFile)
Parameters
Type Name Description
String clientCertFile

The file path of client certificate.

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

SetPassword(String)

Sets the password of EAP.

Declaration
C#
Copy
public void SetPassword(string password)
Parameters
Type Name Description
String password

The password

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

SetPrivateKeyFile(String, String)

Sets the private key information of EAP.

Declaration
C#
Copy
public void SetPrivateKeyFile(string privateKeyFile, string password)
Parameters
Type Name Description
String privateKeyFile

The file path of private key.

String password

The password.

API Level: 3
Feature: http://tizen.org/feature/network.wifi
View Source

SetUserName(String)

Sets the user name of EAP.

Declaration
C#
Copy
public void SetUserName(string userName)
Parameters
Type Name Description
String userName

The user name

API Level: 3
Feature: http://tizen.org/feature/network.wifi

Extension Methods