Click or drag to resize

ScriptParsedEventArgs Class

Version 130.1.90
Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    CefSharp.DevToolsDevToolsDomainEventArgsBase
      CefSharp.DevTools.DebuggerScriptParsedEventArgs

Namespace: CefSharp.DevTools.Debugger
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public class ScriptParsedEventArgs : DevToolsDomainEventArgsBase

The ScriptParsedEventArgs type exposes the following members.

Constructors
 NameDescription
Public methodScriptParsedEventArgsInitializes a new instance of the ScriptParsedEventArgs class
Top
Properties
 NameDescription
Public propertyCodeOffset If the scriptLanguage is WebAssembly, the code section offset in the module.
Public propertyDebugSymbols If the scriptLanguage is WebASsembly, the source of debug symbols for the module.
Public propertyEmbedderName The name the embedder supplied for this script.
Public propertyEndColumn Length of the last line of the script.
Public propertyEndLine Last line of the script.
Public propertyExecutionContextAuxData Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
Public propertyExecutionContextId Specifies script creation context.
Public propertyHash Content hash of the script, SHA-256.
Public propertyHasSourceURL True, if this script has sourceURL.
Public propertyIsLiveEdit True, if this script is generated as a result of the live edit operation.
Public propertyIsModule True, if this script is ES6 module.
Public propertyLength This script length.
Public propertyScriptId Identifier of the script parsed.
Public propertyScriptLanguage The language of the script.
Public propertySourceMapURL URL of source map associated with script (if any).
Public propertyStackTrace JavaScript top stack frame of where the script parsed event was triggered if available.
Public propertyStartColumn Column offset of the script within the resource with given URL.
Public propertyStartLine Line offset of the script within the resource with given URL (for script tags).
Public propertyUrl URL or name of the script parsed (if any).
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also