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

◆ ParseAsync()

async Task System.Xml.DtdParser.ParseAsync ( bool saveInternalSubset)
inlineprivate

Definition at line 3178 of file DtdParser.cs.

3179 {
3180 if (!_freeFloatingDtd)
3181 {
3183 }
3184 else
3185 {
3187 }
3189 if (!_validate || _undeclaredNotations == null)
3190 {
3191 return;
3192 }
3193 foreach (UndeclaredNotation value in _undeclaredNotations.Values)
3194 {
3195 for (UndeclaredNotation undeclaredNotation = value; undeclaredNotation != null; undeclaredNotation = undeclaredNotation.next)
3196 {
3198 }
3199 }
3200 }
static string Sch_UndeclaredNotation
Definition SR.cs:416
Definition SR.cs:7
void SendValidationEvent(int pos, XmlSeverityType severity, string code, string arg)
Dictionary< string, UndeclaredNotation > _undeclaredNotations
Definition DtdParser.cs:200
SchemaInfo _schemaInfo
Definition DtdParser.cs:146
async Task ParseFreeFloatingDtdAsync()
async Task ParseInDocumentDtdAsync(bool saveInternalSubset)

References System.Xml.DtdParser._freeFloatingDtd, System.Xml.DtdParser._schemaInfo, System.Xml.DtdParser._undeclaredNotations, System.Xml.DtdParser._validate, System.Xml.DtdParser.BaseUriStr, System.Xml.Schema.SchemaInfo.Finish(), System.Xml.DtdParser.ParseFreeFloatingDtdAsync(), System.Xml.DtdParser.ParseInDocumentDtdAsync(), System.SR.Sch_UndeclaredNotation, System.Xml.DtdParser.SendValidationEvent(), System.value, and System.Collections.Generic.Dictionary< TKey, TValue >.Values.

Referenced by System.Xml.DtdParser.ParseFreeFloatingDtdAsync(), and System.Xml.DtdParser.ParseInternalDtdAsync().