XmlDocumentType(String, String, String, String, XmlDocument) Constructor

Definition

Initializes a new instance of the XmlDocumentType class.

protected public:
 XmlDocumentType(System::String ^ name, System::String ^ publicId, System::String ^ systemId, System::String ^ internalSubset, System::Xml::XmlDocument ^ doc);
protected internal XmlDocumentType (string name, string? publicId, string? systemId, string? internalSubset, System.Xml.XmlDocument doc);
protected internal XmlDocumentType (string name, string publicId, string systemId, string internalSubset, System.Xml.XmlDocument doc);
new System.Xml.XmlDocumentType : string * string * string * string * System.Xml.XmlDocument -> System.Xml.XmlDocumentType
Protected Friend Sub New (name As String, publicId As String, systemId As String, internalSubset As String, doc As XmlDocument)

Parameters

name
String

The qualified name; see the Name property.

publicId
String

The public identifier; see the PublicId property.

systemId
String

The system identifier; see the SystemId property.

internalSubset
String

The DTD internal subset; see the InternalSubset property.

doc
XmlDocument

The parent document.

Remarks

Do not instantiate an XmlDocumentType directly; instead, use members such as DocumentType to obtain one.

Applies to