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

◆ Item()

virtual ? XmlNode System.Xml.XmlNamedNodeMap.Item ( int index)
inlinevirtual

Definition at line 233 of file XmlNamedNodeMap.cs.

234 {
236 {
237 return null;
238 }
239 try
240 {
241 return (XmlNode)nodes[index];
242 }
243 catch (ArgumentOutOfRangeException)
244 {
245 throw new IndexOutOfRangeException(System.SR.Xdom_IndexOutOfRange);
246 }
247 }
static string Xdom_IndexOutOfRange
Definition SR.cs:1312
Definition SR.cs:7

References System.Xml.XmlNamedNodeMap.SmallXmlNodeList.Count, System.index, System.Xml.XmlNamedNodeMap.nodes, and System.SR.Xdom_IndexOutOfRange.

Referenced by System.Xml.DataPointer.MoveToAttribute().