You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/Events.md
+99-7Lines changed: 99 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,27 @@
1
1
# Events
2
2
3
-
This client has built in events to allow users to hook into any part of the client.
3
+
This HiveMQ client has a large number of built in events to allow users to hook into any part of the client.
4
4
5
-
This can be used to modify behavior, monitor activity or extend functionality.
5
+
These events can be used to modify behavior, monitor activity or extend functionality.
6
6
7
7
## Examples
8
8
9
-
### Display Connect Options Prior to Connecting
9
+
The following serves as a few examples on how to utilize the built in event system.
10
10
11
-
The following serves as an example how to utilize events. This one simply prints out the HiveMQClientOptions prior to the connect command being sent to the broker.
11
+
### Display Options Prior to Connecting
12
+
13
+
This one simply prints out the HiveMQClientOptions prior to the connect command being sent to the broker.
Copy file name to clipboardExpand all lines: Documentation/Examples.md
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
These examples serve to help you get started quickly and easily. If you want to see another example here, feel free to let us know by [filing an issue](https://github.com/hivemq/hivemq-mqtt-client-dotnet/issues/new/choose). We'd be happy to help out.
***Extensive Event System**: Hook into all parts of the client down to the packet level with [built in events](./Documentation/Events.md).
18
+
***Extensive Event System**: Hook into all parts of the client down to the packet level with [built in events](https://github.com/hivemq/hivemq-mqtt-client-dotnet/blob/main/Documentation/Events.md).
19
19
***Globally Compatible**: Built to be a fully compliant client compatible with all reputable MQTT brokers.
20
20
***Actively Maintained**: Built by the MQTT professionals that built HiveMQ (and do this for a living).
21
21
***Extensively Documented**: What good is it without excellent documentation?
@@ -98,7 +98,7 @@ await client.PublishAsync(
98
98
).ConfigureAwait(false);
99
99
```
100
100
101
-
For more examples that you can easily copy/paste, see our [Examples](./Examples/).
101
+
For more examples that you can easily copy/paste, see our [Examples](https://github.com/hivemq/hivemq-mqtt-client-dotnet/blob/main/Documentation/Examples.md).
0 commit comments