예제 #1
0
 /// <summary>
 /// The DOMImplementation.createDocument() method creates and returns an XMLDocument.
 /// </summary>
 /// <param name="namespaceURI">Is a DOMString containing the namespace URI of the document to be created, or null if the document doesn't belong to one.</param>
 /// <param name="qualifiedName">Is a DOMString containing the qualified name, that is an optional prefix and colon plus the local root element name, of the document to be created.</param>
 /// <param name="documentType">Is the DocumentType of the document to be created. It defaults to null.</param>
 /// <returns></returns>
 public virtual DocumentInstance CreateDocument(string namespaceURI, string qualifiedName, DocumentType documentType)
 {
     return null;
 }
 /// <summary>
 /// The DOMImplementation.createDocument() method creates and returns an XMLDocument.
 /// </summary>
 /// <param name="namespaceURI">Is a DOMString containing the namespace URI of the document to be created, or null if the document doesn't belong to one.</param>
 /// <param name="qualifiedName">Is a DOMString containing the qualified name, that is an optional prefix and colon plus the local root element name, of the document to be created.</param>
 /// <param name="documentType">Is the DocumentType of the document to be created. It defaults to null.</param>
 /// <returns></returns>
 public virtual DocumentInstance CreateDocument(string namespaceURI, string qualifiedName, DocumentType documentType)
 {
     return(null);
 }