Base:
property
Name
Microsoft.Xml.XmlNode.Name
4 references to Name
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
935newNode = CreateDocumentType(docType.Name, docType.PublicId, docType.SystemId, docType.InternalSubset);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
610IDtdInfo dtdInfo = dtdParser.ParseFreeFloatingDtd(_doc.BaseURI, dtNode.Name, dtNode.PublicId, dtNode.SystemId, dtNode.InternalSubset, proxy); 741(docType == null) ? null : docType.Name,
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (1)
1457result += ", Name=\"" + documentType.Name + "\", SYSTEM=\"" + documentType.SystemId + "\", PUBLIC=\"" + documentType.PublicId + "\", Value=\"" + XmlConvert.EscapeValueForDebuggerDisplay(documentType.InternalSubset) + "\"";