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