ILogFatalFormat Method (IFormatProvider, String, Object)Apache log4net™ SDK Documentation
Logs a formatted message string with the Fatal level.

Namespace: log4net
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

void FatalFormat(
	IFormatProvider provider,
	string format,
	params Object[] args
)

Parameters

provider
Type: SystemIFormatProvider
An IFormatProvider that supplies culture-specific formatting information
format
Type: SystemString
A String containing zero or more format items
args
Type: SystemObject
An Object array containing zero or more objects to format
Remarks

The message is formatted using the String.Format method. See [M:String.Format(string, object[])] for details of the syntax of the format string and the behavior of the formatting.

This method does not take an Exception object to include in the log event. To pass an Exception use one of the [M:Fatal(object)] methods instead.

See Also

Reference

[M:Fatal(object,Exception)]