1 instantiation of StackFrameSourceCodeInfo
Microsoft.AspNetCore.Hosting (1)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
97var stackFrame = new StackFrameSourceCodeInfo
9 references to StackFrameSourceCodeInfo
Microsoft.AspNetCore.Hosting (9)
src\Shared\ErrorPage\ErrorPage.Designer.cs (2)
316var firstFrame = errorDetail.StackFrames.FirstOrDefault(); 483foreach (var frame in errorDetail.StackFrames)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetails.cs (3)
16public ExceptionDetails(Exception error, IEnumerable<StackFrameSourceCodeInfo> stackFrames) 22public ExceptionDetails(string errorMessage, IEnumerable<StackFrameSourceCodeInfo> stackFrames) 36public IEnumerable<StackFrameSourceCodeInfo> StackFrames { get; }
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (4)
39private IEnumerable<StackFrameSourceCodeInfo> GetStackFrames(Exception original) 95internal StackFrameSourceCodeInfo GetStackFrameSourceCodeInfo(string? method, string? filePath, int lineNumber) 97var stackFrame = new StackFrameSourceCodeInfo 143StackFrameSourceCodeInfo frame,