AngleSharp by Florian Rappl

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

.NET API 371,712 bytes

 HTMLScriptElement

Represents an HTML script element.
public const string Tag = "script"

The script tag.

public bool Async { get; set; }

Gets or sets if script should execute asynchronously.

public string Charset { get; set; }

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

public CORSSettings CrossOrigin { get; set; }

Gets or sets how the element handles crossorigin requests.

public bool Defer { get; set; }

Gets or sets if the script should be deferred.

public string Src { 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.

Creates a new HTML script element.