7 references to DocTypeName
System.Private.Xml (7)
System\Xml\Core\XmlTextReaderImpl.cs (1)
8879_dtdInfo = dtdParser.ParseFreeFloatingDtd(_fragmentParserContext.BaseURI, _fragmentParserContext.DocTypeName, _fragmentParserContext.PublicId,
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
5260_dtdInfo = await dtdParser.ParseFreeFloatingDtdAsync(_fragmentParserContext.BaseURI, _fragmentParserContext.DocTypeName, _fragmentParserContext.PublicId, _fragmentParserContext.SystemId, _fragmentParserContext.InternalSubset, new DtdParserProxy(this)).ConfigureAwait(false);
System\Xml\Core\XmlValidatingReaderImpl.cs (2)
1016if (string.IsNullOrEmpty(_parserContext.DocTypeName)) 1023IDtdInfo dtdInfo = dtdParser.ParseFreeFloatingDtd(_parserContext.BaseURI, _parserContext.DocTypeName, _parserContext.PublicId,
System\Xml\Core\XmlValidatingReaderImplAsync.cs (2)
178if (string.IsNullOrEmpty(_parserContext.DocTypeName)) 185IDtdInfo dtdInfo = await dtdParser.ParseFreeFloatingDtdAsync(_parserContext.BaseURI, _parserContext.DocTypeName, _parserContext.PublicId, _parserContext.SystemId, _parserContext.InternalSubset, proxy).ConfigureAwait(false);
System\Xml\Dom\XmlLoader.cs (1)
959IDtdInfo dtdInfo = dtdParser.ParseFreeFloatingDtd(context.BaseURI, context.DocTypeName, context.PublicId, context.SystemId, context.InternalSubset, proxy);