1 instantiation of FileLoadExceptionContext
Microsoft.Extensions.Configuration.FileExtensions (1)
FileConfigurationProvider.cs (1)
211var exceptionContext = new FileLoadExceptionContext
6 references to FileLoadExceptionContext
Microsoft.Extensions.Configuration.FileExtensions (6)
FileConfigurationExtensions.cs (3)
69public static IConfigurationBuilder SetFileLoadExceptionHandler(this IConfigurationBuilder builder, Action<FileLoadExceptionContext> handler) 82public static Action<FileLoadExceptionContext>? GetFileLoadExceptionHandler(this IConfigurationBuilder builder) 88return handler as Action<FileLoadExceptionContext>;
FileConfigurationProvider.cs (1)
211var exceptionContext = new FileLoadExceptionContext
FileConfigurationSource.cs (2)
53/// If the callback is not set or does not set <see cref="FileLoadExceptionContext.Ignore"/> to <see langword="true"/>, 56public Action<FileLoadExceptionContext>? OnLoadException { get; set; }