| LogFatalFormat Method (Exception, String, Object, Object, Object, Object, String, String, Int32) |
[This is preliminary documentation and is subject to change.]
Logs a new fatal error entry.
Namespace: YallaAssembly: Yalla.Core (in Yalla.Core.dll) Version: 1.0.5813.1925
Syntax public void FatalFormat(
Exception exception,
string format,
Object arg0,
Object arg1,
Object arg2,
Object arg3,
string filePath = null,
string memberName = null,
int lineNumber = 0
)
Public Sub FatalFormat (
exception As Exception,
format As String,
arg0 As Object,
arg1 As Object,
arg2 As Object,
arg3 As Object,
Optional filePath As String = Nothing,
Optional memberName As String = Nothing,
Optional lineNumber As Integer = 0
)
public:
virtual void FatalFormat(
Exception^ exception,
String^ format,
Object^ arg0,
Object^ arg1,
Object^ arg2,
Object^ arg3,
String^ filePath = nullptr,
String^ memberName = nullptr,
int lineNumber = 0
) sealed
abstract FatalFormat :
exception : Exception *
format : string *
arg0 : Object *
arg1 : Object *
arg2 : Object *
arg3 : Object *
?filePath : string *
?memberName : string *
?lineNumber : int
(* Defaults:
let _filePath = defaultArg filePath null
let _memberName = defaultArg memberName null
let _lineNumber = defaultArg lineNumber 0
*)
-> unit
override FatalFormat :
exception : Exception *
format : string *
arg0 : Object *
arg1 : Object *
arg2 : Object *
arg3 : Object *
?filePath : string *
?memberName : string *
?lineNumber : int
(* Defaults:
let _filePath = defaultArg filePath null
let _memberName = defaultArg memberName null
let _lineNumber = defaultArg lineNumber 0
*)
-> unit
Parameters
- exception
- Type: SystemException
Exception. - format
- Type: SystemString
Message format. - arg0
- Type: SystemObject
Format argument 0. - arg1
- Type: SystemObject
Format argument 1. - arg2
- Type: SystemObject
Format argument 2. - arg3
- Type: SystemObject
Format argument 3. - filePath (Optional)
- Type: SystemString
File path (populated by the compiler). - memberName (Optional)
- Type: SystemString
Member name (populated by the compiler). - lineNumber (Optional)
- Type: SystemInt32
Line number (populated by the compiler).
Implements
ILogFatalFormat(Exception, String, Object, Object, Object, Object, String, String, Int32)See Also