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

◆ GetAttribute() [3/4]

override string System.Xml.XsdCachingReader.GetAttribute ( string name,
string namespaceURI )
inline

Definition at line 160 of file XsdCachingReader.cs.

161 {
163 string strB = _coreReaderNameTable.Get(name);
164 for (int i = 0; i < _attributeCount; i++)
165 {
166 ValidatingReaderNodeData validatingReaderNodeData = _attributeEvents[i];
167 if (Ref.Equal(validatingReaderNodeData.LocalName, strB) && Ref.Equal(validatingReaderNodeData.Namespace, namespaceURI))
168 {
170 }
171 }
172 return null;
173 }
string? Get(char[] array, int offset, int length)
ValidatingReaderNodeData[] _attributeEvents

References System.Xml.XsdCachingReader._attributeCount, System.Xml.XsdCachingReader._attributeEvents, System.Xml.XsdCachingReader._coreReaderNameTable, System.Xml.Dictionary, System.Xml.Ref.Equal(), System.Xml.XmlNameTable.Get(), and System.Xml.ValidatingReaderNodeData.RawValue.