Log Error message
Namespace:
Unvired.Kernel.UWP.Log
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void E(
string message,
string callerFilePath = "",
string callerMemberName = "",
int callerLineNo = 0
)
Public Shared Sub E (
message As String,
Optional callerFilePath As String = "",
Optional callerMemberName As String = "",
Optional callerLineNo As Integer = 0
)
public:
static void E(
String^ message,
String^ callerFilePath = L"",
String^ callerMemberName = L"",
int callerLineNo = 0
)
static member E :
message : string *
?callerFilePath : string *
?callerMemberName : string *
?callerLineNo : int
(* Defaults:
let _callerFilePath = defaultArg callerFilePath ""
let _callerMemberName = defaultArg callerMemberName ""
let _callerLineNo = defaultArg callerLineNo 0
*)
-> unit
Parameters
- message
- Type: SystemString
log message - callerFilePath (Optional)
- Type: SystemString
Optional - caller file path - callerMemberName (Optional)
- Type: SystemString
Optional - caller method name - callerLineNo (Optional)
- Type: SystemInt32
Optional - caller line no
See Also