Class WiFiSecurity
Definition
- Namespace:
- Tizen.Network.WiFi
- Assembly:
- Tizen.Network.WiFi.dll
- API Level:
- 3
A class for managing the Wi-Fi security information.
C#Copypublic class WiFiSecurity
- Inheritance
-
System.ObjectWiFiSecurity
Properties
Declaration
C#Copypublic WiFiEap EapInformation { get; }
Property Value
Type | Description |
---|---|
WiFiEap | EAP information of the Wi-Fi. |
API Level: 3
Declaration
C#Copypublic WiFiEncryptionType EncryptionType { get; set; }
Property Value
Type | Description |
---|---|
WiFiEncryptionType | Represents the encryption type of the Wi-Fi. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown while setting this property when Wi-Fi is not supported. |
System.ArgumentException | Thrown while setting this property due to an invalid parameter. |
InvalidOperationException | Thrown while setting this value due to an invalid operation. |
API Level: 3
Declaration
C#Copypublic bool IsPassphraseRequired { get; }
Property Value
Type | Description |
---|---|
System.Boolean | Boolean value to check if the passphrase is required or not. |
API Level: 3
Declaration
C#Copypublic bool IsWpsSupported { get; }
Property Value
Type | Description |
---|---|
System.Boolean | Boolean value to check if WPS is supported. |
API Level: 3
Declaration
C#Copypublic WiFiSecurityType SecurityType { get; set; }
Property Value
Type | Description |
---|---|
WiFiSecurityType | Represents the security type of the Wi-Fi. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown while setting this property when Wi-Fi is not supported. |
System.ArgumentException | Thrown while setting this property due to an invalid parameter. |
InvalidOperationException | Thrown while setting this value due to an invalid operation. |
API Level: 3
Methods
Declaration
C#Copypublic void SetPassphrase(string passphrase)
Parameters
Type | Name | Description |
---|---|---|
System.String | passphrase | The passphrase of the access point. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when Wi-Fi is not supported. |
ArgumentNullException | Thrown when the passphrase is passed as null. |
System.ArgumentException | Thrown when the method failed due to an invalid parameter. |
InvalidOperationException | Thrown when the method failed due to an invalid operation. |