2 instantiations of StackFrameSourceCodeInfo
Microsoft.AspNetCore.Diagnostics (2)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
315var frame = new StackFrameSourceCodeInfo
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
97var stackFrame = new StackFrameSourceCodeInfo
12 references to StackFrameSourceCodeInfo
Microsoft.AspNetCore.Diagnostics (12)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (2)
294var stackFrames = new List<StackFrameSourceCodeInfo>(); 315var frame = new StackFrameSourceCodeInfo
DeveloperExceptionPage\Views\CompilationErrorPage.Designer.cs (1)
400foreach (var frame in errorDetail.StackFrames)
DeveloperExceptionPage\Views\ErrorPage.Designer.cs (2)
370var firstFrame = errorDetail.StackFrames.FirstOrDefault(); 583foreach (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,