Class BluetoothServerSocket
Definition
- Assembly:
- Tizen.Network.Bluetooth.dll
The BluetoothSocket provides functions for managing connections to other devices and exchanging data.
public class BluetoothServerSocket : IDisposable
- Inheritance
-
BluetoothServerSocket
- Implements
Methods
View SourceDispose()
Dispose
Declaration
public void Dispose()
~BluetoothServerSocket()
BluetoothServerSocket destructor.
Declaration
protected ~BluetoothServerSocket()
Listen()
Starts listening on the passed RFCOMM socket and accepts connection requests.
Declaration
public void Listen()
Remarks
The socket must be created with CreateServerSocket(). This API invokes the ConnectionStateChanged event.
Exceptions
| Type | Condition |
|---|---|
| InvalidOperationException | Thrown when the Bluetooth is not enabled or when the listen on socket procedure fails. |
Events
View SourceAcceptStateChanged
The AcceptStateChanged event is raised when the socket connection state is changed.
Declaration
public event EventHandler<AcceptStateChangedEventArgs> AcceptStateChanged
Event Type
| Type | Description |
|---|---|
| EventHandler<AcceptStateChangedEventArgs> |
Exceptions
| Type | Condition |
|---|---|
| InvalidOperationException | Thrown when the Bluetooth is not enabled or when the register accpet state changed callback fails. |