EventDefinitionBase 构造函数

定义

重载

EventDefinitionBase(EventId, LogLevel)

创建事件定义实例。

EventDefinitionBase(EventId, LogLevel, String)

创建事件定义实例。

EventDefinitionBase(ILoggingOptions, EventId, LogLevel, String)

创建事件定义实例。

EventDefinitionBase(EventId, LogLevel)

创建事件定义实例。

protected EventDefinitionBase (Microsoft.Extensions.Logging.EventId eventId, Microsoft.Extensions.Logging.LogLevel level);
new Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase : Microsoft.Extensions.Logging.EventId * Microsoft.Extensions.Logging.LogLevel -> Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase
Protected Sub New (eventId As EventId, level As LogLevel)

参数

eventId
EventId

EventId

level
LogLevel

LogLevel将记录事件的 。

适用于

EventDefinitionBase(EventId, LogLevel, String)

创建事件定义实例。

protected EventDefinitionBase (Microsoft.Extensions.Logging.EventId eventId, Microsoft.Extensions.Logging.LogLevel level, string eventIdCode);
new Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase : Microsoft.Extensions.Logging.EventId * Microsoft.Extensions.Logging.LogLevel * string -> Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase
Protected Sub New (eventId As EventId, level As LogLevel, eventIdCode As String)

参数

eventId
EventId

EventId

level
LogLevel

LogLevel将记录事件的 。

eventIdCode
String

表示应传递给 ConfigureWanings 的代码的字符串。

适用于

EventDefinitionBase(ILoggingOptions, EventId, LogLevel, String)

创建事件定义实例。

protected EventDefinitionBase (Microsoft.EntityFrameworkCore.Diagnostics.ILoggingOptions loggingOptions, Microsoft.Extensions.Logging.EventId eventId, Microsoft.Extensions.Logging.LogLevel level, string eventIdCode);
new Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase : Microsoft.EntityFrameworkCore.Diagnostics.ILoggingOptions * Microsoft.Extensions.Logging.EventId * Microsoft.Extensions.Logging.LogLevel * string -> Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase
Protected Sub New (loggingOptions As ILoggingOptions, eventId As EventId, level As LogLevel, eventIdCode As String)

参数

loggingOptions
ILoggingOptions

日志记录选项。

eventId
EventId

EventId

level
LogLevel

LogLevel将记录事件的 。

eventIdCode
String

表示应传递给 的代码的 ConfigureWarnings(Action<WarningsConfigurationBuilder>)字符串。

适用于