Exemplo n.º 1
0
        public bool MoveNext()
        {
            int outCelt = 0;

            IAssocHandler handler = null;

            _current = null;

            try
            {
                ((IInstance)_initializer).Get.Next(1, out handler, out outCelt);
                if (outCelt > 0)
                {
                    _current = new AssocHandler(handler);
                    return(true);
                }
            }
            catch { }

            return(false);
        }
Exemplo n.º 2
0
 public void Dispose()
 {
     _current = null;
     _initializer.Dispose();
 }