Class LogEntry
Represents information about a log entry when the browser console is written to.
public class LogEntry
- Inheritance
-
LogEntry
- Inherited Members
Constructors
LogEntry(string, string)
Initializes a new instance of the LogEntry type.
public LogEntry(string kind, string message)
Parameters
kindstringThe kind of message written to the log.
messagestringThe text of the message written to the log.
Properties
Kind
Gets the kind of message written to the log.
public string Kind { get; }
Property Value
Message
Gets the text of the message written to the log.
public string Message { get; }