Exemplo n.º 1
0
        public virtual iFolderEntrySet GetEntriesByName(string ifolderID, string parentID, SearchOperation operation, string pattern, int index, int max)
        {
            iFolderEntrySet result = null;

            try
            {
                result = iFolderEntry.GetEntriesByName(ifolderID, parentID, operation, pattern, index, max, GetAccessID());
            }
            catch (Exception e)
            {
                SmartException.Throw(e);
            }

            return(result);
        }
Exemplo n.º 2
0
        public virtual iFolderEntrySet GetMatchedEntries(string ifolderID, string entryID, string[] folder)
        {
            iFolderEntrySet result = null;

            try
            {
                result = iFolderEntry.GetMatchedEntries(ifolderID, entryID, folder, GetAccessID());
            }
            catch (Exception e)
            {
                SmartException.Throw(e);
            }

            return(result);
        }
Exemplo n.º 3
0
        public virtual iFolderEntrySet GetEntries(string ifolderID, string entryID, int index, int max)
        {
            iFolderEntrySet result = null;

            try
            {
                result = iFolderEntry.GetEntries(ifolderID, entryID, index, max, GetAccessID());
            }
            catch (Exception e)
            {
                SmartException.Throw(e);
            }

            return(result);
        }