AspNet5.Controllers.TestExceptionController.Get C# (CSharp) Method

Get() private method

private Get ( ) : IEnumerable
return IEnumerable
        public IEnumerable<string> Get()
        {
            _logger.LogInformation("Executing Http Get before exception");
            throw new Exception("Yes a great exception");
        }