163 instantiations of EventId
Aspire.RabbitMQ.Client (1)
IIS.Tests (2)
Microsoft.AspNetCore.Components (2)
Microsoft.AspNetCore.Http.Extensions.Tests (35)
RequestDelegateFactoryTests.cs (7)
1583Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), log.EventId);
1682Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), log.EventId);
1948Assert.Equal(new EventId(1, "RequestBodyIOException"), logMessage.EventId);
1981Assert.Equal(new EventId(1, "RequestBodyIOException"), logMessage.EventId);
3204Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[0].EventId);
3208Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[1].EventId);
3212Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[2].EventId);
RequestDelegateGenerator\RequestDelegateCreationTests.Logging.cs (15)
49Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[0].EventId);
57Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[1].EventId);
65Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[2].EventId);
73Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[3].EventId);
112Assert.Equal(new EventId(3, "ParameterBindingFailed"), logs[0].EventId);
120Assert.Equal(new EventId(3, "ParameterBindingFailed"), logs[1].EventId);
232Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[0].EventId);
240Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[1].EventId);
312Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[0].EventId);
320Assert.Equal(new EventId(4, "RequiredParameterNotProvided"), logs[1].EventId);
402Assert.Equal(new EventId(6, "UnexpectedContentType"), logMessage.EventId);
451Assert.Equal(new EventId(6, "UnexpectedContentType"), logMessage.EventId);
492Assert.Equal(new EventId(1, "RequestBodyIOException"), logMessage.EventId);
530Assert.Equal(new EventId(2, "InvalidJsonRequestBody"), logMessage.EventId);
610Assert.Equal(new EventId(2, "InvalidJsonRequestBody"), logMessage.EventId);
Microsoft.AspNetCore.HttpLogging (3)
Microsoft.AspNetCore.Identity (8)
Microsoft.AspNetCore.Identity.FunctionalTests (4)
Microsoft.AspNetCore.Identity.UI (17)
LoggerEventIds.cs (17)
16public static readonly EventId UserCreatedByExternalProvider = new EventId(1, "UserCreatedByExternalProvider");
21public static readonly EventId UserLoggedInByExternalProvider = new EventId(2, "UserLoggedInByExternalProvider");
26public static readonly EventId UserLogin = new EventId(3, "UserLogin");
31public static readonly EventId UserLockout = new EventId(4, "UserLockout");
36public static readonly EventId UserLoginWith2FA = new EventId(5, "UserLoginWith2FA");
41public static readonly EventId InvalidAuthenticatorCode = new EventId(6, "InvalidAuthenticatorCode");
46public static readonly EventId UserLoginWithRecoveryCode = new EventId(7, "UserLoginWithRecoveryCode");
51public static readonly EventId InvalidRecoveryCode = new EventId(8, "InvalidRecoveryCode");
56public static readonly EventId PasswordChanged = new EventId(9, "PasswordChanged");
61public static readonly EventId UserDeleted = new EventId(10, "UserDeleted");
66public static readonly EventId TwoFADisabled = new EventId(11, "TwoFADisabled");
71public static readonly EventId PersonalDataRequested = new EventId(12, "PersonalDataRequested");
76public static readonly EventId TwoFAEnabled = new EventId(13, "TwoFAEnabled");
81public static readonly EventId TwoFARecoveryGenerated = new EventId(14, "TwoFARecoveryGenerated");
86public static readonly EventId AuthenticationAppKeyReset = new EventId(15, "AuthenticationAppKeyReset");
91public static readonly EventId UserCreated = new EventId(16, "UserCreated");
96public static readonly EventId UserLoggedOut = new EventId(17, "UserLoggedOut");
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
Microsoft.Extensions.Diagnostics.HealthChecks (1)
Microsoft.Extensions.Diagnostics.Testing.Tests (6)
Logging\FakeLoggerTests.cs (6)
71logger.Log<int>(LogLevel.Error, new EventId(0), 42, null, (_, _) => "MESSAGE");
84logger.Log(LogLevel.Debug, new EventId(1), l, null, (_, _) => "Nothing");
99logger.Log<object?>(LogLevel.Error, new EventId(0), null, null, (_, _) => "MESSAGE");
113logger.Log<object?>(LogLevel.Error, new EventId(0), null, null, (_, _) => "MESSAGE");
129logger.Log(LogLevel.Error, new EventId(0), dt, null, (_, _) => "MESSAGE");
137logger.Log(LogLevel.Debug, new EventId(1), l, null, (_, _) => "Nothing");
Microsoft.Extensions.Hosting (11)
Internal\LoggerEventIds.cs (11)
10public static readonly EventId Starting = new EventId(1, nameof(Starting));
11public static readonly EventId Started = new EventId(2, nameof(Started));
12public static readonly EventId Stopping = new EventId(3, nameof(Stopping));
13public static readonly EventId Stopped = new EventId(4, nameof(Stopped));
14public static readonly EventId StoppedWithException = new EventId(5, nameof(StoppedWithException));
15public static readonly EventId ApplicationStartupException = new EventId(6, nameof(ApplicationStartupException));
16public static readonly EventId ApplicationStoppingException = new EventId(7, nameof(ApplicationStoppingException));
17public static readonly EventId ApplicationStoppedException = new EventId(8, nameof(ApplicationStoppedException));
18public static readonly EventId BackgroundServiceFaulted = new EventId(9, nameof(BackgroundServiceFaulted));
19public static readonly EventId BackgroundServiceStoppingHost = new EventId(10, nameof(BackgroundServiceStoppingHost));
20public static readonly EventId HostedServiceStartupFaulted = new EventId(11, nameof(HostedServiceStartupFaulted));
Microsoft.Extensions.Http (14)
Logging\LogHelper.cs (10)
22public static readonly EventId RequestStart = new EventId(100, "RequestStart");
23public static readonly EventId RequestEnd = new EventId(101, "RequestEnd");
25public static readonly EventId RequestHeader = new EventId(102, "RequestHeader");
26public static readonly EventId ResponseHeader = new EventId(103, "ResponseHeader");
28public static readonly EventId RequestFailed = new EventId(104, "RequestFailed");
30public static readonly EventId PipelineStart = new EventId(100, "RequestPipelineStart");
31public static readonly EventId PipelineEnd = new EventId(101, "RequestPipelineEnd");
33public static readonly EventId RequestPipelineRequestHeader = new EventId(102, "RequestPipelineRequestHeader");
34public static readonly EventId RequestPipelineResponseHeader = new EventId(103, "RequestPipelineResponseHeader");
36public static readonly EventId PipelineFailed = new EventId(104, "RequestPipelineFailed");
Microsoft.Extensions.Http.Diagnostics (1)
Microsoft.Extensions.Identity.Core (15)
LoggerEventIds.cs (15)
10public static readonly EventId RoleValidationFailed = new EventId(0, "RoleValidationFailed");
11public static readonly EventId InvalidPassword = new EventId(0, "InvalidPassword");
12public static readonly EventId UserAlreadyHasPassword = new EventId(1, "UserAlreadyHasPassword");
13public static readonly EventId ChangePasswordFailed = new EventId(2, "ChangePasswordFailed");
14public static readonly EventId AddLoginFailed = new EventId(4, "AddLoginFailed");
15public static readonly EventId UserAlreadyInRole = new EventId(5, "UserAlreadyInRole");
16public static readonly EventId UserNotInRole = new EventId(6, "UserNotInRole");
17public static readonly EventId PhoneNumberChanged = new EventId(7, "PhoneNumberChanged");
18public static readonly EventId VerifyUserTokenFailed = new EventId(9, "VerifyUserTokenFailed");
19public static readonly EventId VerifyTwoFactorTokenFailed = new EventId(10, "VerifyTwoFactorTokenFailed");
20public static readonly EventId LockoutFailed = new EventId(11, "LockoutFailed");
21public static readonly EventId UserLockedOut = new EventId(12, "UserLockedOut");
22public static readonly EventId UserValidationFailed = new EventId(13, "UserValidationFailed");
23public static readonly EventId PasswordValidationFailed = new EventId(14, "PasswordValidationFailed");
24public static readonly EventId GetSecurityStampFailed = new EventId(15, "GetSecurityStampFailed");
Microsoft.Extensions.Logging.Abstractions (1)
Microsoft.Extensions.ML (8)
Microsoft.Extensions.Telemetry.PerformanceTests (4)
Microsoft.Extensions.Telemetry.Tests (29)
Logging\ExtendedLoggerTests.cs (27)
68logger.Log(LogLevel.Warning, new EventId(2, "ID2"), lms, null, (_, _) => "MSG2");
79Assert.Equal(new EventId(0), snap[0].Id);
95Assert.Equal(new EventId(2, "ID2"), snap[1].Id);
153logger.Log(LogLevel.Warning, new EventId(2, "ID2"), lms, null, (_, _) => "MSG2");
164Assert.Equal(new EventId(0), snap[0].Id);
171Assert.Equal(new EventId(2, "ID2"), snap[1].Id);
213logger.Log<object?>(LogLevel.Error, new EventId(0, "ID0"), null, null, (_, _) => "MSG0");
214logger.Log<object?>(LogLevel.Error, new EventId(0, "ID0b"), null, null, (_, _) => "MSG0b");
217logger.Log(LogLevel.Warning, new EventId(2, "ID2"), (LoggerMessageState?)null, null, (_, _) => "MSG2");
218logger.Log(LogLevel.Warning, new EventId(2, "ID2b"), (LoggerMessageState?)null, null, (_, _) => "MSG2b");
229Assert.Equal(new EventId(0, "ID0"), snap[0].Id);
236Assert.Equal(new EventId(0, "ID0b"), snap[1].Id);
243Assert.Equal(new EventId(2, "ID2"), snap[2].Id);
250Assert.Equal(new EventId(2, "ID2b"), snap[3].Id);
278logger.Log(LogLevel.Warning, new EventId(0, "ID0"), e, null, (_, _) => "MSG0");
289Assert.Equal(new EventId(0, "ID0"), snap[0].Id);
347logger.Log(LogLevel.Warning, new EventId(0, "ID0"), "PAYLOAD", null, (_, _) => "MSG0");
358Assert.Equal(new EventId(0, "ID0"), snap[0].Id);
380logger.Log(LogLevel.Information, new EventId(0, "ID0"), "PAYLOAD", null, (_, _) => "MSG0");
451logger.Log<object?>(LogLevel.Error, new EventId(0, "ID0"), null, null, (_, _) => "MSG0");
452logger.Log<object?>(LogLevel.Error, new EventId(0, "ID0b"), null, ex, (_, _) => "MSG0b");
455logger.Log(LogLevel.Warning, new EventId(2, "ID2"), lms, null, (_, _) => "MSG2");
456logger.Log(LogLevel.Warning, new EventId(2, "ID2b"), lms, ex, (_, _) => "MSG2b");
467Assert.Equal(new EventId(0, "ID0"), snap[0].Id);
472Assert.Equal(new EventId(0, "ID0b"), snap[1].Id);
477Assert.Equal(new EventId(2, "ID2"), snap[2].Id);
482Assert.Equal(new EventId(2, "ID2b"), snap[3].Id);
Logging\SerialExtendedLoggerTests.cs (2)
52logger.Log<object?>(LogLevel.Error, new EventId(0, "ID0"), null, null, (_, _) => "MSG0");
55logger.Log(LogLevel.Warning, new EventId(2, "ID2"), (LoggerMessageState?)null, null, (_, _) => "MSG2");
248 references to EventId
Aspire.Dashboard.Components.Tests (4)
Aspire.Dashboard.Tests (4)
Aspire.Hosting (2)
ApplicationModel\ResourceLoggerService.cs (2)
116public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
540public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
Aspire.Hosting.Testing.Tests (4)
Aspire.Hosting.Tests (5)
Aspire.Playground.Tests (4)
Aspire.RabbitMQ.Client (1)
Aspire.RabbitMQ.Client.Tests (1)
BasicTestApp (1)
BuildValidator (2)
DemoLogger.cs (2)
42public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
73public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
Diagnostics.EFCore.FunctionalTests (1)
IIS.FunctionalTests (1)
IIS.LongTests (1)
IIS.NewHandler.FunctionalTests (1)
IIS.NewShim.FunctionalTests (1)
IIS.ShadowCopy.Tests (1)
IISExpress.FunctionalTests (1)
InMemory.FunctionalTests (7)
HttpsTests.cs (3)
821public EventId LastEventId { get; set; }
824public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
852public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
Interop.FunctionalTests (1)
Microsoft.AspNetCore.Authorization.Test (5)
DefaultAuthorizationServiceTests.cs (5)
1160private readonly Action<LogLevel, EventId, object, Exception, Func<object, Exception, string>> _assertion;
1162public DefaultAuthorizationServiceTestLogger(Action<LogLevel, EventId, object, Exception, Func<object, Exception, string>> assertion)
1177public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
1188static void Assertion(LogLevel level, EventId eventId, object state, Exception exception, Func<object, Exception, string> formatter)
1221static void Assertion(LogLevel level, EventId eventId, object state, Exception exception, Func<object, Exception, string> formatter)
Microsoft.AspNetCore.Components.WebAssembly (1)
Microsoft.AspNetCore.DataProtection.Tests (1)
Microsoft.AspNetCore.Hosting (1)
Microsoft.AspNetCore.Hosting.Tests (3)
HostingApplicationDiagnosticsTests.cs (2)
1128public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
1151public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
Microsoft.AspNetCore.Identity (8)
Microsoft.AspNetCore.Identity.Specification.Tests (1)
Microsoft.AspNetCore.Identity.UI (17)
LoggerEventIds.cs (17)
16public static readonly EventId UserCreatedByExternalProvider = new EventId(1, "UserCreatedByExternalProvider");
21public static readonly EventId UserLoggedInByExternalProvider = new EventId(2, "UserLoggedInByExternalProvider");
26public static readonly EventId UserLogin = new EventId(3, "UserLogin");
31public static readonly EventId UserLockout = new EventId(4, "UserLockout");
36public static readonly EventId UserLoginWith2FA = new EventId(5, "UserLoginWith2FA");
41public static readonly EventId InvalidAuthenticatorCode = new EventId(6, "InvalidAuthenticatorCode");
46public static readonly EventId UserLoginWithRecoveryCode = new EventId(7, "UserLoginWithRecoveryCode");
51public static readonly EventId InvalidRecoveryCode = new EventId(8, "InvalidRecoveryCode");
56public static readonly EventId PasswordChanged = new EventId(9, "PasswordChanged");
61public static readonly EventId UserDeleted = new EventId(10, "UserDeleted");
66public static readonly EventId TwoFADisabled = new EventId(11, "TwoFADisabled");
71public static readonly EventId PersonalDataRequested = new EventId(12, "PersonalDataRequested");
76public static readonly EventId TwoFAEnabled = new EventId(13, "TwoFAEnabled");
81public static readonly EventId TwoFARecoveryGenerated = new EventId(14, "TwoFARecoveryGenerated");
86public static readonly EventId AuthenticationAppKeyReset = new EventId(15, "AuthenticationAppKeyReset");
91public static readonly EventId UserCreated = new EventId(16, "UserCreated");
96public static readonly EventId UserLoggedOut = new EventId(17, "UserLoggedOut");
Microsoft.AspNetCore.InternalTesting (4)
Microsoft.AspNetCore.Mvc.TagHelpers.Test (1)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (4)
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (2)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (2)
Microsoft.AspNetCore.SignalR.Tests (1)
Microsoft.AspNetCore.SignalR.Tests.Utils (3)
src\Shared\SignalR\LogSinkProvider.cs (2)
32public void Log<TState>(string categoryName, LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
71public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
Microsoft.AspNetCore.SpaServices.Extensions.Tests (4)
ListLoggerFactory.cs (4)
28public List<(LogLevel Level, EventId Id, string Message, object State, Exception Exception)> Log => Logger.LoggedEvents;
68public List<(LogLevel, EventId, string, object, Exception)> LoggedEvents { get; }
69= new List<(LogLevel, EventId, string, object, Exception)>();
80LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
Microsoft.AspNetCore.TestHost.Tests (3)
Microsoft.CodeAnalysis.LanguageServer (1)
Microsoft.CodeAnalysis.LanguageServer.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
Microsoft.Extensions.Diagnostics.HealthChecks (1)
Microsoft.Extensions.Diagnostics.HealthChecks.Tests (10)
HealthCheckPublisherHostedServiceTest.cs (10)
25public static readonly EventId HealthCheckProcessingBegin = new EventId(DefaultHealthCheckService.EventIds.HealthCheckProcessingBeginId, DefaultHealthCheckService.EventIds.HealthCheckProcessingBeginName);
26public static readonly EventId HealthCheckProcessingEnd = new EventId(DefaultHealthCheckService.EventIds.HealthCheckProcessingEndId, DefaultHealthCheckService.EventIds.HealthCheckProcessingEndName);
27public static readonly EventId HealthCheckBegin = new EventId(DefaultHealthCheckService.EventIds.HealthCheckBeginId, DefaultHealthCheckService.EventIds.HealthCheckBeginName);
28public static readonly EventId HealthCheckEnd = new EventId(DefaultHealthCheckService.EventIds.HealthCheckEndId, DefaultHealthCheckService.EventIds.HealthCheckEndName);
32public static readonly EventId HealthCheckPublisherProcessingBegin = new EventId(HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherProcessingBeginId, HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherProcessingBeginName);
33public static readonly EventId HealthCheckPublisherProcessingEnd = new EventId(HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherProcessingEndId, HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherProcessingEndName);
34public static readonly EventId HealthCheckPublisherBegin = new EventId(HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherBeginId, HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherBeginName);
35public static readonly EventId HealthCheckPublisherEnd = new EventId(HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherEndId, HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherEndName);
36public static readonly EventId HealthCheckPublisherError = new EventId(HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherErrorId, HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherErrorName);
37public static readonly EventId HealthCheckPublisherTimeout = new EventId(HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherTimeoutId, HealthCheckPublisherHostedService.EventIds.HealthCheckPublisherTimeoutName);
Microsoft.Extensions.Diagnostics.Testing (3)
Microsoft.Extensions.Hosting (12)
Internal\LoggerEventIds.cs (11)
10public static readonly EventId Starting = new EventId(1, nameof(Starting));
11public static readonly EventId Started = new EventId(2, nameof(Started));
12public static readonly EventId Stopping = new EventId(3, nameof(Stopping));
13public static readonly EventId Stopped = new EventId(4, nameof(Stopped));
14public static readonly EventId StoppedWithException = new EventId(5, nameof(StoppedWithException));
15public static readonly EventId ApplicationStartupException = new EventId(6, nameof(ApplicationStartupException));
16public static readonly EventId ApplicationStoppingException = new EventId(7, nameof(ApplicationStoppingException));
17public static readonly EventId ApplicationStoppedException = new EventId(8, nameof(ApplicationStoppedException));
18public static readonly EventId BackgroundServiceFaulted = new EventId(9, nameof(BackgroundServiceFaulted));
19public static readonly EventId BackgroundServiceStoppingHost = new EventId(10, nameof(BackgroundServiceStoppingHost));
20public static readonly EventId HostedServiceStartupFaulted = new EventId(11, nameof(HostedServiceStartupFaulted));
Microsoft.Extensions.Http (14)
Logging\LogHelper.cs (10)
22public static readonly EventId RequestStart = new EventId(100, "RequestStart");
23public static readonly EventId RequestEnd = new EventId(101, "RequestEnd");
25public static readonly EventId RequestHeader = new EventId(102, "RequestHeader");
26public static readonly EventId ResponseHeader = new EventId(103, "ResponseHeader");
28public static readonly EventId RequestFailed = new EventId(104, "RequestFailed");
30public static readonly EventId PipelineStart = new EventId(100, "RequestPipelineStart");
31public static readonly EventId PipelineEnd = new EventId(101, "RequestPipelineEnd");
33public static readonly EventId RequestPipelineRequestHeader = new EventId(102, "RequestPipelineRequestHeader");
34public static readonly EventId RequestPipelineResponseHeader = new EventId(103, "RequestPipelineResponseHeader");
36public static readonly EventId PipelineFailed = new EventId(104, "RequestPipelineFailed");
Microsoft.Extensions.Http.Diagnostics.PerformanceTests (2)
Microsoft.Extensions.Identity.Core (15)
LoggerEventIds.cs (15)
10public static readonly EventId RoleValidationFailed = new EventId(0, "RoleValidationFailed");
11public static readonly EventId InvalidPassword = new EventId(0, "InvalidPassword");
12public static readonly EventId UserAlreadyHasPassword = new EventId(1, "UserAlreadyHasPassword");
13public static readonly EventId ChangePasswordFailed = new EventId(2, "ChangePasswordFailed");
14public static readonly EventId AddLoginFailed = new EventId(4, "AddLoginFailed");
15public static readonly EventId UserAlreadyInRole = new EventId(5, "UserAlreadyInRole");
16public static readonly EventId UserNotInRole = new EventId(6, "UserNotInRole");
17public static readonly EventId PhoneNumberChanged = new EventId(7, "PhoneNumberChanged");
18public static readonly EventId VerifyUserTokenFailed = new EventId(9, "VerifyUserTokenFailed");
19public static readonly EventId VerifyTwoFactorTokenFailed = new EventId(10, "VerifyTwoFactorTokenFailed");
20public static readonly EventId LockoutFailed = new EventId(11, "LockoutFailed");
21public static readonly EventId UserLockedOut = new EventId(12, "UserLockedOut");
22public static readonly EventId UserValidationFailed = new EventId(13, "UserValidationFailed");
23public static readonly EventId PasswordValidationFailed = new EventId(14, "PasswordValidationFailed");
24public static readonly EventId GetSecurityStampFailed = new EventId(15, "GetSecurityStampFailed");
Microsoft.Extensions.Logging (2)
Logger.cs (2)
27public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
52static void LoggerLog(LogLevel logLevel, EventId eventId, ILogger logger, Exception? exception, Func<TState, Exception?, string> formatter, ref List<Exception>? exceptions, in TState state)
Microsoft.Extensions.Logging.Abstractions (51)
LoggerExtensions.cs (14)
30public static void LogDebug(this ILogger logger, EventId eventId, Exception? exception, string? message, params object?[] args)
47public static void LogDebug(this ILogger logger, EventId eventId, string? message, params object?[] args)
100public static void LogTrace(this ILogger logger, EventId eventId, Exception? exception, string? message, params object?[] args)
117public static void LogTrace(this ILogger logger, EventId eventId, string? message, params object?[] args)
170public static void LogInformation(this ILogger logger, EventId eventId, Exception? exception, string? message, params object?[] args)
187public static void LogInformation(this ILogger logger, EventId eventId, string? message, params object?[] args)
240public static void LogWarning(this ILogger logger, EventId eventId, Exception? exception, string? message, params object?[] args)
257public static void LogWarning(this ILogger logger, EventId eventId, string? message, params object?[] args)
310public static void LogError(this ILogger logger, EventId eventId, Exception? exception, string? message, params object?[] args)
327public static void LogError(this ILogger logger, EventId eventId, string? message, params object?[] args)
380public static void LogCritical(this ILogger logger, EventId eventId, Exception? exception, string? message, params object?[] args)
397public static void LogCritical(this ILogger logger, EventId eventId, string? message, params object?[] args)
455public static void Log(this ILogger logger, LogLevel logLevel, EventId eventId, string? message, params object?[] args)
482public static void Log(this ILogger logger, LogLevel logLevel, EventId eventId, Exception? exception, string? message, params object?[] args)
LoggerMessage.cs (14)
130public static Action<ILogger, Exception?> Define(LogLevel logLevel, EventId eventId, string formatString)
141public static Action<ILogger, Exception?> Define(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
172public static Action<ILogger, T1, Exception?> Define<T1>(LogLevel logLevel, EventId eventId, string formatString)
184public static Action<ILogger, T1, Exception?> Define<T1>(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
216public static Action<ILogger, T1, T2, Exception?> Define<T1, T2>(LogLevel logLevel, EventId eventId, string formatString)
229public static Action<ILogger, T1, T2, Exception?> Define<T1, T2>(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
262public static Action<ILogger, T1, T2, T3, Exception?> Define<T1, T2, T3>(LogLevel logLevel, EventId eventId, string formatString)
276public static Action<ILogger, T1, T2, T3, Exception?> Define<T1, T2, T3>(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
310public static Action<ILogger, T1, T2, T3, T4, Exception?> Define<T1, T2, T3, T4>(LogLevel logLevel, EventId eventId, string formatString)
325public static Action<ILogger, T1, T2, T3, T4, Exception?> Define<T1, T2, T3, T4>(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
360public static Action<ILogger, T1, T2, T3, T4, T5, Exception?> Define<T1, T2, T3, T4, T5>(LogLevel logLevel, EventId eventId, string formatString)
376public static Action<ILogger, T1, T2, T3, T4, T5, Exception?> Define<T1, T2, T3, T4, T5>(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
412public static Action<ILogger, T1, T2, T3, T4, T5, T6, Exception?> Define<T1, T2, T3, T4, T5, T6>(LogLevel logLevel, EventId eventId, string formatString)
429public static Action<ILogger, T1, T2, T3, T4, T5, T6, Exception?> Define<T1, T2, T3, T4, T5, T6>(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
Microsoft.Extensions.Logging.AzureAppServices (2)
BatchingLogger.cs (2)
31public void Log<TState>(DateTimeOffset timestamp, LogLevel logLevel, EventId _, TState state, Exception exception, Func<TState, Exception, string> formatter)
70public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
Microsoft.Extensions.Logging.Console (1)
Microsoft.Extensions.Logging.Debug (1)
Microsoft.Extensions.Logging.EventLog (1)
Microsoft.Extensions.Logging.EventSource (1)
Microsoft.Extensions.Logging.TraceSource (1)
Microsoft.Extensions.ML (8)
Microsoft.Extensions.Telemetry (4)
Logging\ExtendedLogger.cs (3)
40public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
208private void ModernPath(LogLevel logLevel, EventId eventId, LoggerMessageState msgState, Exception? exception, Func<LoggerMessageState, Exception?, string> formatter)
298private void LegacyPath<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
Microsoft.Extensions.Telemetry.PerformanceTests (1)
Microsoft.Extensions.Telemetry.Tests (4)
Logging\ExtendedLoggerFactoryTests.cs (2)
554public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
592public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
Microsoft.Gen.Logging.Generated.Tests (1)
Microsoft.Maui (1)
Sockets.BindTests (2)
Sockets.FunctionalTests (2)