Class Log
Class representing the browser's log as referenced by the DevTools Protocol.
public abstract class Log
- Inheritance
-
Log
- Derived
- Inherited Members
Methods
Clear()
Asynchronously clears the browser's log.
public abstract Task Clear()
Returns
- Task
A task that represents the asynchronous operation.
Disable()
Asynchronously disables manipulation of the browser's log.
public abstract Task Disable()
Returns
- Task
A task that represents the asynchronous operation.
Enable()
Asynchronously enables manipulation of the browser's log.
public abstract Task Enable()
Returns
- Task
A task that represents the asynchronous operation.
OnEntryAdded(EntryAddedEventArgs)
Raises the EntryAdded event.
protected virtual void OnEntryAdded(EntryAddedEventArgs e)
Parameters
eEntryAddedEventArgsAn EntryAddedEventArgs that contains the event data.
Events
EntryAdded
Occurs when an entry is added to the browser's log.
public event EventHandler<EntryAddedEventArgs>? EntryAdded