Class WiFiConfiguration

Definition

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

A class for managing the configuration of Wi-Fi.

C#
Copy
public class WiFiConfiguration : IDisposable
Inheritance
WiFiConfiguration

Constructors

View Source

WiFiConfiguration(String, String, WiFiSecurityType)

Creates a WiFiConfiguration object with the given name, passphrase, and securetype.

Declaration
C#
Copy
public WiFiConfiguration(string name, string passPhrase, WiFiSecurityType type)
Parameters
Type Name Description
String name

Name of the Wi-Fi.

String passPhrase

Password to access the Wi-Fi.

WiFiSecurityType type

Security type of the Wi-Fi.

API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/network.get
Feature: http://tizen.org/feature/network.wifi

Properties

View Source

EapConfiguration

EAP configuration.

Declaration
C#
Copy
public WiFiEapConfiguration EapConfiguration { get; }
Property Value
Type Description
WiFiEapConfiguration

EAP configuration assigned to the Wi-Fi.

API Level: 3
View Source

IsHidden

A property check whether the access point (AP) is hidden.

Declaration
C#
Copy
public bool IsHidden { get; set; }
Property Value
Type Description
Boolean

Boolean value indicating whether the AP is hidden.

API Level: 3
View Source

Name

The name of the access point (AP).

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

Name assigned to AP in the Wi-Fi configuration.

API Level: 3
View Source

ProxyAddress

The proxy address.

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

Proxy address of the access point.

API Level: 3
View Source

SecurityType

The security type of the access point (AP).

Declaration
C#
Copy
public WiFiSecurityType SecurityType { get; }
Property Value
Type Description
WiFiSecurityType

Security type of AP in the Wi-Fi configuration.

API Level: 3

Methods

View Source

Dispose()

A method to destroy the managed objects in the WiFiConfiguration.

Declaration
C#
Copy
public void Dispose()
API Level: 3
View Source

Finalize()

Destroy of the WiFiConfiguration object

Declaration
C#
Copy
protected void Finalize()

Extension Methods