9 references to DocTypeName
System.Xml (9)
System\Xml\Core\XmlTextReaderImpl.cs (1)
7936
dtdInfo = dtdParser.ParseFreeFloatingDtd(fragmentParserContext.BaseURI, fragmentParserContext.
DocTypeName
, fragmentParserContext.PublicId,
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
4891
dtdInfo = await dtdParser.ParseFreeFloatingDtdAsync(fragmentParserContext.BaseURI, fragmentParserContext.
DocTypeName
, fragmentParserContext.PublicId, fragmentParserContext.SystemId, fragmentParserContext.InternalSubset, new DtdParserProxy( this ) ).ConfigureAwait(false);
System\Xml\Core\XmlValidatingReaderImpl.cs (3)
848
if ( parserContext.
DocTypeName
== null || parserContext.
DocTypeName
.Length == 0 ) {
854
IDtdInfo dtdInfo = dtdParser.ParseFreeFloatingDtd( parserContext.BaseURI, parserContext.
DocTypeName
, parserContext.PublicId,
System\Xml\Core\XmlValidatingReaderImplAsync.cs (3)
216
if ( parserContext.
DocTypeName
== null || parserContext.
DocTypeName
.Length == 0 ) {
222
IDtdInfo dtdInfo = await dtdParser.ParseFreeFloatingDtdAsync( parserContext.BaseURI, parserContext.
DocTypeName
, parserContext.PublicId, parserContext.SystemId, parserContext.InternalSubset, proxy ).ConfigureAwait(false);
System\Xml\Dom\XmlLoader.cs (1)
834
IDtdInfo dtdInfo = dtdParser.ParseFreeFloatingDtd(context.BaseURI, context.
DocTypeName
, context.PublicId, context.SystemId, context.InternalSubset, proxy);