Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
Public Member Functions | |
void | Connected () |
| |
void | Disconnected () |
| |
void | Error (QLocalSocket.LocalSocketError socketError) |
| |
void | StateChanged (QLocalSocket.LocalSocketState socketState) |
| |
Public Member Functions inherited from QtCore.IQIODeviceSignals | |
void | ReadyRead () |
| |
void | BytesWritten (long bytes) |
| |
void | AboutToClose () |
| |
void | ReadChannelFinished () |
| |
Public Member Functions inherited from QtCore.IQObjectSignals | |
void | Destroyed (QObject arg1) |
void | Destroyed () |
| |
void QtNetwork.IQLocalSocketSignals.Connected | ( | ) |
This signal is emitted after connectToServer() has been called and a connection has been successfully established.
See also connectToServer() and disconnected().
void QtNetwork.IQLocalSocketSignals.Disconnected | ( | ) |
This signal is emitted when the socket has been disconnected.
See also connectToServer(), disconnectFromServer(), abort(), and connected().
void QtNetwork.IQLocalSocketSignals.Error | ( | QLocalSocket.LocalSocketError | socketError | ) |
Returns the type of error that last occurred.
See also state() and errorString().
void QtNetwork.IQLocalSocketSignals.StateChanged | ( | QLocalSocket.LocalSocketState | socketState | ) |
This signal is emitted whenever QLocalSocket's state changes. The socketState parameter is the new state.
QLocalSocket::SocketState is not a registered metatype, so for queued connections, you will have to register it with Q_DECLARE_METATYPE() and qRegisterMetaType().
See also state() and Creating Custom Qt Types.