示例#1
0
 public void CreateDoctypePending()
 {
     _doctypePending = new Token.Doctype();
 }
示例#2
0
        public void Insert(Token.Doctype d)
        {
            DocumentType doctypeNode = new DocumentType(d.Name.ToString(), d.PublicIdentifier.ToString(), d.SystemIdentifier.ToString(), _baseUri);

            InsertNode(doctypeNode);
        }