1 instantiation of UndeclaredNotation
System.Private.Xml (1)
System\Xml\Schema\DtdParser.cs (1)
1353UndeclaredNotation un = new UndeclaredNotation(notationName, LineNo, LinePos - notationName.Length);
9 references to UndeclaredNotation
System.Private.Xml (9)
System\Xml\Schema\DtdParser.cs (7)
123internal UndeclaredNotation? next; 195private Dictionary<string, UndeclaredNotation>? _undeclaredNotations; 416foreach (UndeclaredNotation un in _undeclaredNotations.Values) 418UndeclaredNotation? tmpUn = un; 1352_undeclaredNotations ??= new Dictionary<string, UndeclaredNotation>(); 1353UndeclaredNotation un = new UndeclaredNotation(notationName, LineNo, LinePos - notationName.Length); 1354UndeclaredNotation? loggedUn;
System\Xml\Schema\DtdParserAsync.cs (2)
58foreach (UndeclaredNotation un in _undeclaredNotations.Values) 60UndeclaredNotation? tmpUn = un;