Table of Contents

Class SerilogFullLogger

Namespace
Splat
Assembly
Splat.Serilog.dll

A full wrapping logger over Serilog.

public class SerilogFullLogger : IFullLogger, IAllocationFreeLogger, IAllocationFreeErrorLogger, ILogger
Inheritance
SerilogFullLogger
Implements
Extension Methods
WhenAnyMixin.WhenAny<TSender, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(TSender?, Expression<Func<TSender, T1>>, Expression<Func<TSender, T2>>, Expression<Func<TSender, T3>>, Expression<Func<TSender, T4>>, Expression<Func<TSender, T5>>, Expression<Func<TSender, T6>>, Expression<Func<TSender, T7>>, Expression<Func<TSender, T8>>, Expression<Func<TSender, T9>>, Expression<Func<TSender, T10>>, Expression<Func<TSender, T11>>, Expression<Func<TSender, T12>>, Func<IObservedChange<TSender, T1>, IObservedChange<TSender, T2>, IObservedChange<TSender, T3>, IObservedChange<TSender, T4>, IObservedChange<TSender, T5>, IObservedChange<TSender, T6>, IObservedChange<TSender, T7>, IObservedChange<TSender, T8>, IObservedChange<TSender, T9>, IObservedChange<TSender, T10>, IObservedChange<TSender, T11>, IObservedChange<TSender, T12>, TRet>)
WhenAnyMixin.WhenAny<TSender, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(TSender?, Expression<Func<TSender, T1>>, Expression<Func<TSender, T2>>, Expression<Func<TSender, T3>>, Expression<Func<TSender, T4>>, Expression<Func<TSender, T5>>, Expression<Func<TSender, T6>>, Expression<Func<TSender, T7>>, Expression<Func<TSender, T8>>, Expression<Func<TSender, T9>>, Expression<Func<TSender, T10>>, Expression<Func<TSender, T11>>, Expression<Func<TSender, T12>>, Func<IObservedChange<TSender, T1>, IObservedChange<TSender, T2>, IObservedChange<TSender, T3>, IObservedChange<TSender, T4>, IObservedChange<TSender, T5>, IObservedChange<TSender, T6>, IObservedChange<TSender, T7>, IObservedChange<TSender, T8>, IObservedChange<TSender, T9>, IObservedChange<TSender, T10>, IObservedChange<TSender, T11>, IObservedChange<TSender, T12>, TRet>)
WhenAnyMixin.WhenAny<TSender, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(TSender?, Expression<Func<TSender, T1>>, Expression<Func<TSender, T2>>, Expression<Func<TSender, T3>>, Expression<Func<TSender, T4>>, Expression<Func<TSender, T5>>, Expression<Func<TSender, T6>>, Expression<Func<TSender, T7>>, Expression<Func<TSender, T8>>, Expression<Func<TSender, T9>>, Expression<Func<TSender, T10>>, Expression<Func<TSender, T11>>, Expression<Func<TSender, T12>>, Func<IObservedChange<TSender, T1>, IObservedChange<TSender, T2>, IObservedChange<TSender, T3>, IObservedChange<TSender, T4>, IObservedChange<TSender, T5>, IObservedChange<TSender, T6>, IObservedChange<TSender, T7>, IObservedChange<TSender, T8>, IObservedChange<TSender, T9>, IObservedChange<TSender, T10>, IObservedChange<TSender, T11>, IObservedChange<TSender, T12>, TRet>)
WhenAnyMixin.WhenAny<TSender, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(TSender?, Expression<Func<TSender, T1>>, Expression<Func<TSender, T2>>, Expression<Func<TSender, T3>>, Expression<Func<TSender, T4>>, Expression<Func<TSender, T5>>, Expression<Func<TSender, T6>>, Expression<Func<TSender, T7>>, Expression<Func<TSender, T8>>, Expression<Func<TSender, T9>>, Expression<Func<TSender, T10>>, Expression<Func<TSender, T11>>, Expression<Func<TSender, T12>>, Func<IObservedChange<TSender, T1>, IObservedChange<TSender, T2>, IObservedChange<TSender, T3>, IObservedChange<TSender, T4>, IObservedChange<TSender, T5>, IObservedChange<TSender, T6>, IObservedChange<TSender, T7>, IObservedChange<TSender, T8>, IObservedChange<TSender, T9>, IObservedChange<TSender, T10>, IObservedChange<TSender, T11>, IObservedChange<TSender, T12>, TRet>)

Remarks

Initializes a new instance of the SerilogFullLogger class.

Constructors

SerilogFullLogger(ILogger)

A full wrapping logger over Serilog.

public SerilogFullLogger(ILogger logger)

Parameters

logger ILogger

The logger we are wrapping.

Remarks

Initializes a new instance of the SerilogFullLogger class.

Properties

IsDebugEnabled

Gets a value indicating whether the logger currently emits debug logs.

public bool IsDebugEnabled { get; }

Property Value

bool

IsErrorEnabled

Gets a value indicating whether the logger currently emits error logs.

public bool IsErrorEnabled { get; }

Property Value

bool

IsFatalEnabled

Gets a value indicating whether the logger currently emits fatal logs.

public bool IsFatalEnabled { get; }

Property Value

bool

IsInfoEnabled

Gets a value indicating whether the logger currently emits information logs.

public bool IsInfoEnabled { get; }

Property Value

bool

IsWarnEnabled

Gets a value indicating whether the logger currently emits warning logs.

public bool IsWarnEnabled { get; }

Property Value

bool

Level

Gets the level at which the target will emit messages.

public LogLevel Level { get; set; }

Property Value

LogLevel

Methods

Debug(Exception, string?)

Emits a debug log message with an exception.

public void Debug(Exception exception, string? message)

Parameters

exception Exception

The exception.

message string

The message.

Debug(IFormatProvider, string, params object[])

Emits a message using formatting to the debug log.

public void Debug(IFormatProvider formatProvider, string message, params object[] args)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Debug(string?)

Emits a message to the debug log.

public void Debug(string? message)

Parameters

message string

A non-localizable message to send to the log.

Debug(string, params object[])

Emits a message using formatting to the debug log.

public void Debug(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

DebugException(string?, Exception)

Emits a debug log message. This will emit details about a exception. This type of logging is not able to be localized.

public void DebugException(string? message, Exception exception)

Parameters

message string

A message to emit.

exception Exception

The exception which to emit in the log.

Debug<TArgument>(Exception, string, TArgument)

Emits a message using formatting to the debug log.

public void Debug<TArgument>(Exception exception, string messageFormat, TArgument argument)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Debug<TArgument>(IFormatProvider, string, TArgument)

Emits a message using formatting to the debug log.

public void Debug<TArgument>(IFormatProvider formatProvider, string message, TArgument argument)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Debug<T>(IFormatProvider, T)

Emits a debug log message. This will emit the public contents of the object provided to the log.

public void Debug<T>(IFormatProvider formatProvider, T value)

Parameters

formatProvider IFormatProvider

The format provider to use.

value T

The value to emit.

Type Parameters

T

The type of object used as the message.

Debug<T>(string?)

Emits a message to the debug log.

public void Debug<T>(string? message)

Parameters

message string

A non-localizable message to send to the log.

Type Parameters

T

The calling type.

Debug<T>(string, params object[])

Emits a message using formatting to the debug log.

public void Debug<T>(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Type Parameters

T

The calling type.

Debug<TArgument>(string, TArgument)

Emits a message using formatting to the debug log.

public void Debug<TArgument>(string message, TArgument args)

Parameters

message string
args TArgument

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Debug<T>(T)

Emits a debug log message. This will emit the public contents of the object provided to the log.

public void Debug<T>(T value)

Parameters

value T

The log to emit.

Type Parameters

T

The type of object used as the message.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Debug<TArgument1, TArgument2>(Exception, string, TArgument1, TArgument2)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Debug<TArgument1, TArgument2>(IFormatProvider, string, TArgument1, TArgument2)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Debug<TArgument1, TArgument2>(string, TArgument1, TArgument2)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2>(string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3>(Exception, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3>(IFormatProvider, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3>(string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4>(string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the debug log.

public void Debug<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Error(Exception, string?)

Emits a error log message with exception. This will emit details about a exception. This type of logging is not able to be localized.

public void Error(Exception exception, string? message)

Parameters

exception Exception

The exception which to emit in the log.

message string

A message to emit.

Error(IFormatProvider, string, params object[])

Emits a message using formatting to the error log.

public void Error(IFormatProvider formatProvider, string message, params object[] args)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Error(string?)

Emits a message to the error log.

public void Error(string? message)

Parameters

message string

A non-localizable message to send to the log.

Error(string, params object[])

Emits a message using formatting to the error log.

public void Error(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

ErrorException(string?, Exception)

Emits a error log message. This will emit details about a exception. This type of logging is not able to be localized.

public void ErrorException(string? message, Exception exception)

Parameters

message string

A message to emit.

exception Exception

The exception which to emit in the log.

Error<TArgument>(Exception, string, TArgument)

Emits a message using formatting to the error log.

public void Error<TArgument>(Exception exception, string messageFormat, TArgument argument)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Error<TArgument>(IFormatProvider, string, TArgument)

Emits a message using formatting to the error log.

public void Error<TArgument>(IFormatProvider formatProvider, string message, TArgument argument)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Error<T>(IFormatProvider, T)

Emits a error log message. This will emit the public contents of the object provided to the log.

public void Error<T>(IFormatProvider formatProvider, T value)

Parameters

formatProvider IFormatProvider

The format provider to use.

value T

The value to emit.

Type Parameters

T

The type of object used as the message.

Error<T>(string?)

Emits a message to the error log.

public void Error<T>(string? message)

Parameters

message string

A non-localizable message to send to the log.

Type Parameters

T

The calling type.

Error<T>(string, params object[])

Emits a message using formatting to the error log.

public void Error<T>(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Type Parameters

T

The calling type.

Error<TArgument>(string, TArgument)

Emits a message using formatting to the error log.

public void Error<TArgument>(string message, TArgument args)

Parameters

message string
args TArgument

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Error<T>(T)

Emits a error log message. This will emit the public contents of the object provided to the log.

public void Error<T>(T value)

Parameters

value T

The log to emit.

Type Parameters

T

The type of object used as the message.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Error<TArgument1, TArgument2>(Exception, string, TArgument1, TArgument2)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Error<TArgument1, TArgument2>(IFormatProvider, string, TArgument1, TArgument2)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Error<TArgument1, TArgument2>(string, TArgument1, TArgument2)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2>(string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3>(Exception, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3>(IFormatProvider, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3>(string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4>(string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the error log.

public void Error<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Fatal(Exception, string?)

Emits a fatal log message with exception. This will emit details about a exception. This type of logging is not able to be localized.

public void Fatal(Exception exception, string? message)

Parameters

exception Exception

The exception which to emit in the log.

message string

A message to emit.

Fatal(IFormatProvider, string, params object[])

Emits a message using formatting to the fatal log.

public void Fatal(IFormatProvider formatProvider, string message, params object[] args)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Fatal(string?)

Emits a message to the fatal log.

public void Fatal(string? message)

Parameters

message string

A non-localizable message to send to the log.

Fatal(string, params object[])

Emits a message using formatting to the fatal log.

public void Fatal(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

FatalException(string?, Exception)

Emits a fatal log message. This will emit details about a exception. This type of logging is not able to be localized.

public void FatalException(string? message, Exception exception)

Parameters

message string

A message to emit.

exception Exception

The exception which to emit in the log.

Fatal<TArgument>(Exception, string, TArgument)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument>(Exception exception, string messageFormat, TArgument argument)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Fatal<TArgument>(IFormatProvider, string, TArgument)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument>(IFormatProvider formatProvider, string message, TArgument argument)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Fatal<T>(IFormatProvider, T)

Emits a fatal log message. This will emit the public contents of the object provided to the log.

public void Fatal<T>(IFormatProvider formatProvider, T value)

Parameters

formatProvider IFormatProvider

The format provider to use.

value T

The value to emit.

Type Parameters

T

The type of object used as the message.

Fatal<T>(string?)

Emits a message to the fatal log.

public void Fatal<T>(string? message)

Parameters

message string

A non-localizable message to send to the log.

Type Parameters

T

The calling type.

Fatal<T>(string, params object[])

Emits a message using formatting to the fatal log.

public void Fatal<T>(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Type Parameters

T

The calling type.

Fatal<TArgument>(string, TArgument)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument>(string message, TArgument args)

Parameters

message string
args TArgument

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Fatal<T>(T)

Emits a fatal log message. This will emit the public contents of the object provided to the log.

public void Fatal<T>(T value)

Parameters

value T

The log to emit.

Type Parameters

T

The type of object used as the message.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Fatal<TArgument1, TArgument2>(Exception, string, TArgument1, TArgument2)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Fatal<TArgument1, TArgument2>(IFormatProvider, string, TArgument1, TArgument2)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Fatal<TArgument1, TArgument2>(string, TArgument1, TArgument2)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2>(string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3>(Exception, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3>(IFormatProvider, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3>(string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4>(string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the fatal log.

public void Fatal<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Info(Exception, string?)

Emits a info log message with exception. This will emit details about a exception. This type of logging is not able to be localized.

public void Info(Exception exception, string? message)

Parameters

exception Exception

The exception which to emit in the log.

message string

A message to emit.

Info(IFormatProvider, string, params object[])

Emits a message using formatting to the info log.

public void Info(IFormatProvider formatProvider, string message, params object[] args)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Info(string?)

Emits a message to the info log.

public void Info(string? message)

Parameters

message string

A non-localizable message to send to the log.

Info(string, params object[])

Emits a message using formatting to the info log.

public void Info(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

InfoException(string?, Exception)

Emits a info log message. This will emit details about a exception. This type of logging is not able to be localized.

public void InfoException(string? message, Exception exception)

Parameters

message string

A message to emit.

exception Exception

The exception which to emit in the log.

Info<TArgument>(Exception, string, TArgument)

Emits a message using formatting to the info log.

public void Info<TArgument>(Exception exception, string messageFormat, TArgument argument)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Info<TArgument>(IFormatProvider, string, TArgument)

Emits a message using formatting to the info log.

public void Info<TArgument>(IFormatProvider formatProvider, string message, TArgument argument)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Info<T>(IFormatProvider, T)

Emits a info log message. This will emit the public contents of the object provided to the log.

public void Info<T>(IFormatProvider formatProvider, T value)

Parameters

formatProvider IFormatProvider

The format provider to use.

value T

The value to emit.

Type Parameters

T

The type of object used as the message.

Info<T>(string?)

Emits a message to the info log.

public void Info<T>(string? message)

Parameters

message string

A non-localizable message to send to the log.

Type Parameters

T

The calling type.

Info<T>(string, params object[])

Emits a message using formatting to the info log.

public void Info<T>(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Type Parameters

T

The calling type.

Info<TArgument>(string, TArgument)

Emits a message using formatting to the info log.

public void Info<TArgument>(string message, TArgument args)

Parameters

message string
args TArgument

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Info<T>(T)

Emits a info log message. This will emit the public contents of the object provided to the log.

public void Info<T>(T value)

Parameters

value T

The log to emit.

Type Parameters

T

The type of object used as the message.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Info<TArgument1, TArgument2>(Exception, string, TArgument1, TArgument2)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Info<TArgument1, TArgument2>(IFormatProvider, string, TArgument1, TArgument2)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Info<TArgument1, TArgument2>(string, TArgument1, TArgument2)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2>(string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3>(Exception, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3>(IFormatProvider, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3>(string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4>(string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Logs a info message with the provided message format and values.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Logs a info message with the provided message format and values.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Logs a info message with the provided message format and values.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Logs a info message with the provided message format and values.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the info log.

public void Info<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Warn(Exception, string?)

Emits a warning log message with exception. This will emit details about a exception. This type of logging is not able to be localized.

public void Warn(Exception exception, string? message)

Parameters

exception Exception

The exception which to emit in the log.

message string

A message to emit.

Warn(IFormatProvider, string, params object[])

Emits a message using formatting to the warning log.

public void Warn(IFormatProvider formatProvider, string message, params object[] args)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Warn(string?)

Emits a message to the warning log.

public void Warn(string? message)

Parameters

message string

A non-localizable message to send to the log.

Warn(string, params object[])

Emits a message using formatting to the warning log.

public void Warn(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

WarnException(string?, Exception)

Emits a warning log message. This will emit details about a exception. This type of logging is not able to be localized.

public void WarnException(string? message, Exception exception)

Parameters

message string

A message to emit.

exception Exception

The exception which to emit in the log.

Warn<TArgument>(Exception, string, TArgument)

Emits a message using formatting to the warning log.

public void Warn<TArgument>(Exception exception, string messageFormat, TArgument argument)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Warn<TArgument>(IFormatProvider, string, TArgument)

Emits a message using formatting to the warning log.

public void Warn<TArgument>(IFormatProvider formatProvider, string message, TArgument argument)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument TArgument

The argument for formatting purposes.

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Warn<T>(IFormatProvider, T)

Emits a warning log message. This will emit the public contents of the object provided to the log.

public void Warn<T>(IFormatProvider formatProvider, T value)

Parameters

formatProvider IFormatProvider

The format provider to use.

value T

The value to emit.

Type Parameters

T

The type of object used as the message.

Warn<T>(string?)

Emits a message to the warning log.

public void Warn<T>(string? message)

Parameters

message string

A non-localizable message to send to the log.

Type Parameters

T

The calling type.

Warn<T>(string, params object[])

Emits a message using formatting to the warning log.

public void Warn<T>(string message, params object[] args)

Parameters

message string

A non-localizable message to emit to the log which includes the standard formatting tags.

args object[]

The arguments for formatting purposes.

Type Parameters

T

The calling type.

Warn<TArgument>(string, TArgument)

Emits a message using formatting to the warning log.

public void Warn<TArgument>(string message, TArgument args)

Parameters

message string
args TArgument

Type Parameters

TArgument

The type of the argument which is used in the formatting.

Warn<T>(T)

Emits a warning log message. This will emit the public contents of the object provided to the log.

public void Warn<T>(T value)

Parameters

value T

The log to emit.

Type Parameters

T

The type of object used as the message.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9, TArgument10>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9, TArgument10 argument10)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

argument10 TArgument10

The tenth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

TArgument10

The type of the tenth argument which is used in the formatting.

Warn<TArgument1, TArgument2>(Exception, string, TArgument1, TArgument2)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Warn<TArgument1, TArgument2>(IFormatProvider, string, TArgument1, TArgument2)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Warn<TArgument1, TArgument2>(string, TArgument1, TArgument2)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2>(string messageFormat, TArgument1 argument1, TArgument2 argument2)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3>(Exception, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3>(IFormatProvider, string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3>(IFormatProvider formatProvider, string message, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

formatProvider IFormatProvider

The format provider to use.

message string

A message to emit to the log which includes the standard formatting tags.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3>(string, TArgument1, TArgument2, TArgument3)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4>(string, TArgument1, TArgument2, TArgument3, TArgument4)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6)

Emits a message using formatting to the warning log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception, string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(Exception exception, string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

exception Exception

The exception.

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string, TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9)

Emits a message using formatting to the warn log.

public void Warn<TArgument1, TArgument2, TArgument3, TArgument4, TArgument5, TArgument6, TArgument7, TArgument8, TArgument9>(string messageFormat, TArgument1 argument1, TArgument2 argument2, TArgument3 argument3, TArgument4 argument4, TArgument5 argument5, TArgument6 argument6, TArgument7 argument7, TArgument8 argument8, TArgument9 argument9)

Parameters

messageFormat string

The message format used to emit a message with the type arguments.

argument1 TArgument1

The first argument for formatting purposes.

argument2 TArgument2

The second argument for formatting purposes.

argument3 TArgument3

The third argument for formatting purposes.

argument4 TArgument4

The fourth argument for formatting purposes.

argument5 TArgument5

The fifth argument for formatting purposes.

argument6 TArgument6

The sixth argument for formatting purposes.

argument7 TArgument7

The seventh argument for formatting purposes.

argument8 TArgument8

The eighth argument for formatting purposes.

argument9 TArgument9

The ninth argument for formatting purposes.

Type Parameters

TArgument1

The type of the first argument which is used in the formatting.

TArgument2

The type of the second argument which is used in the formatting.

TArgument3

The type of the third argument which is used in the formatting.

TArgument4

The type of the fourth argument which is used in the formatting.

TArgument5

The type of the fifth argument which is used in the formatting.

TArgument6

The type of the sixth argument which is used in the formatting.

TArgument7

The type of the seventh argument which is used in the formatting.

TArgument8

The type of the eighth argument which is used in the formatting.

TArgument9

The type of the ninth argument which is used in the formatting.

Write(Exception, string, LogLevel)

Writes a message to the target.

public void Write(Exception exception, string message, LogLevel logLevel)

Parameters

exception Exception

The exception that occured.

message string

The message to write.

logLevel LogLevel

The severity level of the log message.

Write(Exception, string, Type, LogLevel)

Writes a messge to the target.

public void Write(Exception exception, string message, Type type, LogLevel logLevel)

Parameters

exception Exception

The exception that occured.

message string

The message.

type Type

The type.

logLevel LogLevel

The log level.

Write(string, LogLevel)

Writes a message to the target.

public void Write(string message, LogLevel logLevel)

Parameters

message string

The message to write.

logLevel LogLevel

The severity level of the log message.

Write(string, Type, LogLevel)

Writes a messge to the target.

public void Write(string message, Type type, LogLevel logLevel)

Parameters

message string

The message.

type Type

The type.

logLevel LogLevel

The log level.