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

◆ TryGetByteArrayLength()

bool System.Xml.ValueHandle.TryGetByteArrayLength ( out int length)
inline

Definition at line 761 of file ValueHandle.cs.

762 {
763 if (_type == ValueHandleType.Base64)
764 {
765 length = _length;
766 return true;
767 }
768 length = 0;
769 return false;
770 }
ValueHandleType _type

References System.Xml.ValueHandle._length, System.Xml.ValueHandle._type, and System.length.

Referenced by System.Xml.XmlBaseReader.TryGetBase64ContentLength().