Class WiFiEapConfiguration

Definition

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

A class for managing the EAP configuration.

C#
Copy
public class WiFiEapConfiguration
Inheritance
WiFiEapConfiguration

Properties

View Source

AnonymousIdentify

The anonymous identity of the access point (AP).

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

Represents the anonymous identity of the access point.

API Level: 3
View Source

AuthenticationType

The type of EAP phase2 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 the Wi-Fi.

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

Type of EAP.

API Level: 3
View Source

Identity

The identity of the access point (AP).

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

Represents the identity of the access point.

API Level: 3
View Source

SubjectMatch

The subject match of the access point (AP).

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

Represents the subject match of the AP.

API Level: 3

Methods

View Source

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.

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

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.

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

Extension Methods