protected virtual void VisitDocumentType(DomDocumentType documentType) { if (documentType == null) { throw new ArgumentNullException(nameof(documentType)); } DefaultVisit(documentType); }
protected virtual void WriteDocumentType(DomDocumentType documentType) { if (documentType == null) { throw new ArgumentNullException(nameof(documentType)); } WriteDocumentType(documentType.Name, documentType.PublicId, documentType.SystemId); }
void IDomNodeVisitor.Visit(DomDocumentType documentType) { VisitDocumentType(documentType); }