AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.0.4-alpha-311" />

.NET API 891,392 bytes

 IProcessingInstruction

A processing instruction provides an opportunity for application-specific instructions to be embedded within XML and which can be ignored by XML processors which do not support processing their instructions (outside of their having a place in the DOM).
using AngleSharp.Attributes; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [DomName("ProcessingInstruction")] public interface IProcessingInstruction : ICharacterData, INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode { [System.Runtime.CompilerServices.Nullable(1)] [DomName("target")] string Target { [System.Runtime.CompilerServices.NullableContext(1)] get; } } }