1 instantiation of CertificatePathWatcher
Microsoft.AspNetCore.Server.Kestrel.Core (1)
KestrelServerOptions.cs (1)
460
? new
CertificatePathWatcher
(
23 references to CertificatePathWatcher
Microsoft.AspNetCore.Server.Kestrel.Core (23)
Internal\CertificatePathWatcher.cs (3)
18
private readonly ILogger<
CertificatePathWatcher
> _logger;
30
public CertificatePathWatcher(IHostEnvironment hostEnvironment, ILogger<
CertificatePathWatcher
> logger)
49
internal CertificatePathWatcher(string contentRootPath, ILogger<
CertificatePathWatcher
> logger, Func<string, IFileProvider?> fileProviderFactory)
Internal\CertificatePathWatcherLoggerExtensions.cs (16)
11
public static partial void DirectoryDoesNotExist(this ILogger<
CertificatePathWatcher
> logger, string directory, string path);
14
public static partial void UnknownFile(this ILogger<
CertificatePathWatcher
> logger, string path);
17
public static partial void UnknownObserver(this ILogger<
CertificatePathWatcher
> logger, string path);
20
public static partial void CreatedDirectoryWatcher(this ILogger<
CertificatePathWatcher
> logger, string directory);
23
public static partial void CreatedFileWatcher(this ILogger<
CertificatePathWatcher
> logger, string path);
26
public static partial void RemovedDirectoryWatcher(this ILogger<
CertificatePathWatcher
> logger, string directory);
29
public static partial void RemovedFileWatcher(this ILogger<
CertificatePathWatcher
> logger, string path);
32
public static partial void LastModifiedTimeError(this ILogger<
CertificatePathWatcher
> logger, string path, Exception e);
35
public static partial void UntrackedFileEvent(this ILogger<
CertificatePathWatcher
> logger, string path);
38
public static partial void ReusedObserver(this ILogger<
CertificatePathWatcher
> logger, string path);
41
public static partial void AddedObserver(this ILogger<
CertificatePathWatcher
> logger, string path);
44
public static partial void RemovedObserver(this ILogger<
CertificatePathWatcher
> logger, string path);
47
public static partial void ObserverCount(this ILogger<
CertificatePathWatcher
> logger, string path, int count);
50
public static partial void FileCount(this ILogger<
CertificatePathWatcher
> logger, string directory, int count);
53
public static partial void FlaggedObservers(this ILogger<
CertificatePathWatcher
> logger, string path, int count);
56
public static partial void EventWithoutFile(this ILogger<
CertificatePathWatcher
> logger, string path);
KestrelConfigurationLoader.cs (2)
26
private readonly
CertificatePathWatcher
? _certificatePathWatcher;
38
CertificatePathWatcher
? certificatePathWatcher,
KestrelServerOptions.cs (2)
459
var
certificatePathWatcher = reloadOnChange && !_disableCertificateFileWatching
462
ApplicationServices.GetRequiredService<ILogger<
CertificatePathWatcher
>>())