Base:
property
Name
System.Xml.XmlNode.Name
4 references to Name
System.Xml (4)
System\Xml\Dom\XmlDocument.cs (1)
825newNode = CreateDocumentType( docType.Name, docType.PublicId, docType.SystemId, docType.InternalSubset );
System\Xml\Dom\XmlLoader.cs (2)
535IDtdInfo dtdInfo = dtdParser.ParseFreeFloatingDtd(this.doc.BaseURI, dtNode.Name, dtNode.PublicId, dtNode.SystemId, dtNode.InternalSubset, proxy ); 644( docType == null ) ? null : docType.Name,
System\Xml\Dom\XmlNode.cs (1)
1230result += ", Name=\"" + documentType.Name + "\", SYSTEM=\"" + documentType.SystemId + "\", PUBLIC=\"" + documentType.PublicId + "\", Value=\"" + XmlConvert.EscapeValueForDebuggerDisplay(documentType.InternalSubset) + "\"";