UnityEditor.AndroidXmlDocument.AndroidXmlDocument C# (CSharp) Method

AndroidXmlDocument() public method

public AndroidXmlDocument ( string path ) : System
path string
return System
        public AndroidXmlDocument(string path)
        {
            this.m_Path = path;
            XmlTextReader reader = new XmlTextReader(this.m_Path);
            try
            {
                reader.Read();
                this.Load(reader);
            }
            finally
            {
                reader.Close();
            }
            this.nsMgr = new XmlNamespaceManager(base.NameTable);
            this.nsMgr.AddNamespace("android", "http://schemas.android.com/apk/res/android");
        }