Ejemplo n.º 1
0
        public object ItemByName(string xtPath, string name)
        {
            RAIS rais = this.GetItemByXTPath(xtPath);

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

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