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

◆ AddUndeclaredNotation()

void System.Xml.DtdParser.AddUndeclaredNotation ( string notationName)
inlineprivate

Definition at line 1140 of file DtdParser.cs.

1141 {
1142 if (_undeclaredNotations == null)
1143 {
1145 }
1146 UndeclaredNotation undeclaredNotation = new UndeclaredNotation(notationName, LineNo, LinePos - notationName.Length);
1148 {
1151 }
1152 else
1153 {
1155 }
1156 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
void Add(TKey key, TValue value)
Dictionary< string, UndeclaredNotation > _undeclaredNotations
Definition DtdParser.cs:200

References System.Xml.DtdParser._undeclaredNotations, System.Collections.Generic.Dictionary< TKey, TValue >.Add(), System.Xml.Dictionary, System.Xml.DtdParser.LineNo, System.Xml.DtdParser.LinePos, System.Collections.Generic.Dictionary< TKey, TValue >.TryGetValue(), and System.value.

Referenced by System.Xml.DtdParser.ParseAttlistType(), System.Xml.DtdParser.ParseAttlistTypeAsync(), System.Xml.DtdParser.ParseEntityDecl(), and System.Xml.DtdParser.ParseEntityDeclAsync().