Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DtdParserProxy_PushEntity()

bool System.Xml.XmlTextReaderImpl.DtdParserProxy_PushEntity ( IDtdEntityInfo entity,
out int entityId )
inlinepackage

Definition at line 2832 of file XmlTextReaderImpl.cs.

2833 {
2834 bool result;
2835 if (entity.IsExternal)
2836 {
2837 if (IsResolverNull)
2838 {
2839 entityId = -1;
2840 return false;
2841 }
2842 result = PushExternalEntity(entity);
2843 }
2844 else
2845 {
2846 PushInternalEntity(entity);
2847 result = true;
2848 }
2849 entityId = _ps.entityId;
2850 return result;
2851 }
void PushInternalEntity(IDtdEntityInfo entity)
bool PushExternalEntity(IDtdEntityInfo entity)

References System.Xml.XmlTextReaderImpl._ps, System.Xml.XmlTextReaderImpl.ParsingState.entityId, System.Xml.IDtdEntityInfo.IsExternal, System.Xml.XmlTextReaderImpl.PushExternalEntity(), and System.Xml.XmlTextReaderImpl.PushInternalEntity().

Referenced by System.Xml.XmlTextReaderImpl.DtdParserProxy.PushEntity().