Animatroller.ExpanderCommunication.SignalRServer.StopAsync C# (CSharp) Method

StopAsync() public method

public StopAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public Task StopAsync()
        {
            this.signalrServer?.Dispose();
            this.signalrServer = null;

            return Task.CompletedTask;
        }