示例#1
0
        public object ItemByName(string xtPath, string name)
        {
            RAIS rais = this.GetItemByXTPath(xtPath);

            if (rais != null)
            {
                return(rais.Item(name));
            }
            return(null);
        }
示例#2
0
        public object Item(string xtPath, object indexer)
        {
            RAIS rais = this.GetItemByXTPath(xtPath);

            if (rais != null)
            {
                return(rais.Item(indexer));
            }
            return(null);
        }