System.Xml.Serialization.XmlSerializationReader.GetXsiType C# (CSharp) 메소드

GetXsiType() 보호된 메소드

protected GetXsiType ( ) : XmlQualifiedName
리턴 XmlQualifiedName
        protected XmlQualifiedName GetXsiType()
        {
            string type = _r.GetAttribute(_typeID, _instanceNsID);
            if (type == null)
            {
                type = _r.GetAttribute(_typeID, _instanceNs2000ID);
                if (type == null)
                {
                    type = _r.GetAttribute(_typeID, _instanceNs1999ID);
                    if (type == null)
                        return null;
                }
            }
            return ToXmlQualifiedName(type, false);
        }