XmlPIToken
The processing instruction token that defines a processing instruction.
namespace AngleSharp.Parser.Xml
{
internal sealed class XmlPIToken : XmlToken
{
private string _target;
private string _content;
public string Target {
get { get; }
set {
_target = value;
}
}
public string Content {
get {
return _content;
}
set {
_content = value;
}
}
public XmlPIToken(TextPosition position)
: base(XmlTokenType.ProcessingInstruction, position)
{
_target = string.Empty;
_content = string.Empty;
}
}
}