withSIX.Play.Core.Games.Legacy.RunningGame.ProcessSession C# (CSharp) Method

ProcessSession() protected method

protected ProcessSession ( ) : Task
return Task
        protected virtual async Task ProcessSession() {
            _playerId = String.Empty;
            _hostIP = null;
            _hosting = false;
            var session =
                await
                    CommandAPI.QueueSend<SessionCommand>(new SessionCommand())
                        .ConfigureAwait(false);
            if (session != null)
                ProcessSession(session);
        }

Same methods

RunningGame::ProcessSession ( SessionCommand session ) : void