| LogEntry Constructor |
[This is preliminary documentation and is subject to change.]
Initializes a new instance of the
LogEntry class.
Namespace: YallaAssembly: Yalla.Core (in Yalla.Core.dll) Version: 1.0.5813.1925
Syntax public LogEntry(
string name,
LogLevel level,
Object message,
Exception exception,
CallerInfo caller
)
Public Sub New (
name As String,
level As LogLevel,
message As Object,
exception As Exception,
caller As CallerInfo
)
public:
LogEntry(
String^ name,
LogLevel level,
Object^ message,
Exception^ exception,
CallerInfo^ caller
)
new :
name : string *
level : LogLevel *
message : Object *
exception : Exception *
caller : CallerInfo -> LogEntry
Parameters
- name
- Type: SystemString
Log name. - level
- Type: YallaLogLevel
Log level. - message
- Type: SystemObject
Message. - exception
- Type: SystemException
Exception. - caller
- Type: YallaCallerInfo
Caller information.
See Also