6 references to SystemId
dotnet-svcutil-lib (6)
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); 743(docType == null) ? null : docType.SystemId,
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (1)
1457result += ", Name=\"" + documentType.Name + "\", SYSTEM=\"" + documentType.SystemId + "\", PUBLIC=\"" + documentType.PublicId + "\", Value=\"" + XmlConvert.EscapeValueForDebuggerDisplay(documentType.InternalSubset) + "\"";
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (2)
445strTemp = docType.SystemId; 461return docType.SystemId;