public async void ExecuteDebugCommand()
        {
            var debugCommandResponse = await PortalClient.ExecuteDebugCommandAsync(18, "!ping 8.8.8.8").ConfigureAwait(false);

            // Check for valid response
            Assert.NotNull(debugCommandResponse);
            Assert.True(debugCommandResponse.SessionId > 0);
        }