AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.4" />

.NET API 1,232,384 bytes

 HtmlScriptElement

Represents an HTML script element. http://www.w3.org/TR/html5/scripting-1.html#execute-the-script-block
public string CharacterSet { get; set; }

Gets or sets the character encoding of the external script resource.

public string CrossOrigin { get; set; }

Gets or sets how the element handles crossorigin requests.

public bool IsAsync { get; set; }

Gets or sets if script should execute asynchronously.

public bool IsDeferred { get; set; }

Gets or sets if the script should be deferred.

public string ScriptLanguage { get; }

Gets the language of the script.

public string Source { get; set; }

Gets or sets athe address of the resource.

public string Text { get; set; }

Gets or sets the text in the script element.

public string Type { get; set; }

Gets or sets the type of an embedded resource.

public HtmlScriptElement(Document owner, string prefix = null, bool parserInserted = false, bool started = false)

Creates a new HTML script element.