mirror of
https://github.com/evopro-ag/Sharp7Reactive.git
synced 2026-03-22 01:10:39 +00:00
10 lines
134 B
C#
10 lines
134 B
C#
namespace Sharp7.Rx.Enums;
|
|
|
|
public enum ConnectionState
|
|
{
|
|
Initial,
|
|
Connected,
|
|
DisconnectedByUser,
|
|
ConnectionLost
|
|
}
|