RuntimeClient Class |
Namespace: CefSharp.DevTools.Runtime
The RuntimeClient type exposes the following members.
Name | Description | |
---|---|---|
RuntimeClient |
Runtime
|
Name | Description | |
---|---|---|
AddBindingAsync |
If executionContextId is empty, adds binding with the given name on the
global objects of all inspected contexts, including those created later,
bindings survive reloads.
Binding function takes exactly one argument, this argument should be string,
in case of any other input, function throws an exception.
Each binding function call produces Runtime.bindingCalled notification.
| |
AwaitPromiseAsync |
Add handler to promise with given promise object id.
| |
CallFunctionOnAsync |
Calls function with given declaration on the given object. Object group of the result is
inherited from the target object.
| |
CompileScriptAsync |
Compiles expression.
| |
DisableAsync |
Disables reporting of execution contexts creation.
| |
DiscardConsoleEntriesAsync |
Discards collected exceptions and console API calls.
| |
EnableAsync |
Enables reporting of execution contexts creation by means of `executionContextCreated` event.
When the reporting gets enabled the event will be sent immediately for each existing execution
context.
| |
EnumToString(Enum) | (Inherited from DevToolsDomainBase.) | |
EnumToString(ContentEncoding) | (Inherited from DevToolsDomainBase.) | |
EnumToString(CSPViolationType) | (Inherited from DevToolsDomainBase.) | |
EnumToString(DisabledImageType) | (Inherited from DevToolsDomainBase.) | |
EnumToString(PermissionType) | (Inherited from DevToolsDomainBase.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
EvaluateAsync |
Evaluates expression on global object.
| |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetExceptionDetailsAsync |
This method tries to lookup and populate exception details for a
JavaScript Error object.
Note that the stackTrace portion of the resulting exceptionDetails will
only be populated if the Runtime domain was enabled at the time when the
Error was thrown.
| |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetHeapUsageAsync |
Returns the JavaScript heap usage.
It is the total usage of the corresponding isolate not scoped to a particular Runtime.
| |
GetIsolateIdAsync |
Returns the isolate id.
| |
GetPropertiesAsync |
Returns properties of a given object. Object group of the result is inherited from the target
object.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GlobalLexicalScopeNamesAsync |
Returns all let, const and class variables from global scope.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
QueryObjectsAsync |
QueryObjects
| |
ReleaseObjectAsync |
Releases remote object with given id.
| |
ReleaseObjectGroupAsync |
Releases all remote objects that belong to a given group.
| |
RemoveBindingAsync |
This method does not remove binding function from global object but
unsubscribes current runtime agent from Runtime.bindingCalled notifications.
| |
RunIfWaitingForDebuggerAsync |
Tells inspected instance to run if it was waiting for debugger to attach.
| |
RunScriptAsync |
Runs script with given id in a given context.
| |
SetAsyncCallStackDepthAsync |
Enables or disables async call stacks tracking.
| |
SetCustomObjectFormatterEnabledAsync |
SetCustomObjectFormatterEnabled
| |
SetMaxCallStackSizeToCaptureAsync |
SetMaxCallStackSizeToCapture
| |
TerminateExecutionAsync |
Terminate current or next JavaScript execution.
Will cancel the termination when the outer-most script execution ends.
| |
ToBase64String | (Inherited from DevToolsDomainBase.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
BindingCalled |
Notification is issued every time when binding is called.
| |
ConsoleAPICalled |
Issued when console API was called.
| |
ExceptionRevoked |
Issued when unhandled exception was revoked.
| |
ExceptionThrown |
Issued when exception was thrown and unhandled.
| |
ExecutionContextCreated |
Issued when new execution context is created.
| |
ExecutionContextDestroyed |
Issued when execution context is destroyed.
| |
ExecutionContextsCleared |
Issued when all executionContexts were cleared in browser
| |
InspectRequested |
Issued when object should be inspected (for example, as a result of inspect() command line API
call).
|