public void Sub() { SubModel subModel = new SubModel { Id = Id, Name = Name, Params = Params }; if (!_webSocketAdapterBase.IsAlive()) { throw new InvalidOperationException("The DDP-Connection is not alive anymore"); } _webSocketAdapterBase.SendJson(subModel); }
public void PingServer(string id = null) { _webSocketAdapter.SendJson(new PingModel { Id = id }); }