LoggerExtensions.LogWarning Methode

Definition

Überlädt

Name Beschreibung
LogWarning(ILogger, String, Object[])

Formatiert und schreibt eine Warnmeldung.

LogWarning(ILogger, EventId, String, Object[])

Formatiert und schreibt eine Warnmeldung.

LogWarning(ILogger, Exception, String, Object[])

Formatiert und schreibt eine Warnmeldung.

LogWarning(ILogger, EventId, Exception, String, Object[])

Formatiert und schreibt eine Warnmeldung.

LogWarning(ILogger, String, Object[])

Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs

Formatiert und schreibt eine Warnmeldung.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogWarning(Microsoft::Extensions::Logging::ILogger ^ logger, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, string? message, params object?[] args);
static member LogWarning : Microsoft.Extensions.Logging.ILogger * string * obj[] -> unit
<Extension()>
Public Sub LogWarning (logger As ILogger, message As String, ParamArray args As Object())

Parameter

logger
ILogger

Der ILogger zu schreibende Code.

message
String

Formatzeichenfolge der Protokollnachricht im Nachrichtenvorlagenformat. Beispiel: "User {User} logged in from {Address}".

args
Object[]

Ein Objektarray, das null oder mehr Zu formatierende Objekte enthält.

Beispiele

logger.LogWarning("Processing request from {Address}", address)

Gilt für:

LogWarning(ILogger, EventId, String, Object[])

Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs

Formatiert und schreibt eine Warnmeldung.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogWarning(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);
static member LogWarning : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub LogWarning (logger As ILogger, eventId As EventId, message As String, ParamArray args As Object())

Parameter

logger
ILogger

Der ILogger zu schreibende Code.

eventId
EventId

Die ereignis-ID, die dem Protokoll zugeordnet ist.

message
String

Formatzeichenfolge der Protokollnachricht im Nachrichtenvorlagenformat. Beispiel: "User {User} logged in from {Address}".

args
Object[]

Ein Objektarray, das null oder mehr Zu formatierende Objekte enthält.

Beispiele

logger.LogWarning(0, "Processing request from {Address}", address)

Gilt für:

LogWarning(ILogger, Exception, String, Object[])

Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs

Formatiert und schreibt eine Warnmeldung.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogWarning(Microsoft::Extensions::Logging::ILogger ^ logger, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, Exception? exception, string? message, params object?[] args);
static member LogWarning : Microsoft.Extensions.Logging.ILogger * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogWarning (logger As ILogger, exception As Exception, message As String, ParamArray args As Object())

Parameter

logger
ILogger

Der ILogger zu schreibende Code.

exception
Exception

Die Ausnahme zum Protokollieren.

message
String

Formatzeichenfolge der Protokollnachricht im Nachrichtenvorlagenformat. Beispiel: "User {User} logged in from {Address}".

args
Object[]

Ein Objektarray, das null oder mehr Zu formatierende Objekte enthält.

Beispiele

logger.LogWarning(exception, "Error while processing request from {Address}", address)

Gilt für:

LogWarning(ILogger, EventId, Exception, String, Object[])

Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs
Quelle:
LoggerExtensions.cs

Formatiert und schreibt eine Warnmeldung.

public:
[System::Runtime::CompilerServices::Extension]
 static void LogWarning(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);
static member LogWarning : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub LogWarning (logger As ILogger, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())

Parameter

logger
ILogger

Der ILogger zu schreibende Code.

eventId
EventId

Die ereignis-ID, die dem Protokoll zugeordnet ist.

exception
Exception

Die Ausnahme zum Protokollieren.

message
String

Formatzeichenfolge der Protokollnachricht im Nachrichtenvorlagenformat. Beispiel: "User {User} logged in from {Address}".

args
Object[]

Ein Objektarray, das null oder mehr Zu formatierende Objekte enthält.

Beispiele

logger.LogWarning(0, exception, "Error while processing request from {Address}", address)

Gilt für: