Class WiFiDirectPersistentGroup

Definition

Namespace:
Tizen.Network.WiFiDirect
Assembly:
Tizen.Network.WiFiDirect.dll

A class to handle persistent groups in Wi-Fi Direct. Persistent groups allow devices to automatically reconnect to previously established Wi-Fi Direct groups without requiring manual pairing each time. This class provides information about saved persistent groups that can be used for automatic reconnection.

C#
Copy
public class WiFiDirectPersistentGroup
Inheritance
object
WiFiDirectPersistentGroup
Remarks

Persistent groups are created when a Wi-Fi Direct connection is established with the persistent group feature enabled. The group information (SSID and group owner MAC address) is saved and can be used later for automatic reconnection. Use GetPersistentGroups() to retrieve all saved persistent groups, and RemovePersistentGroup(WiFiDirectPersistentGroup) to remove a specific persistent group.

Properties

View Source

MacAddress

The MAC address of the persistent group owner. This is the unique identifier of the device that acted as the group owner when the persistent group was created.

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

The MAC address string of the group owner (e.g., "AA:BB:CC:DD:EE:FF").

Remarks

Persistent groups are created when a Wi-Fi Direct connection is established with the persistent group feature enabled. The group information (SSID and group owner MAC address) is saved and can be used later for automatic reconnection. Use GetPersistentGroups() to retrieve all saved persistent groups, and RemovePersistentGroup(WiFiDirectPersistentGroup) to remove a specific persistent group.

View Source

Ssid

The SSID (Service Set Identifier) of the persistent group. This is the network name that was assigned to the Wi-Fi Direct group when it was created.

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

The SSID string of the persistent group (e.g., "DIRECT-XY-DeviceName").

Remarks

Persistent groups are created when a Wi-Fi Direct connection is established with the persistent group feature enabled. The group information (SSID and group owner MAC address) is saved and can be used later for automatic reconnection. Use GetPersistentGroups() to retrieve all saved persistent groups, and RemovePersistentGroup(WiFiDirectPersistentGroup) to remove a specific persistent group.