예제 #1
0
        /// <summary>
        /// Refreshes the cubes and dimensions of the server.
        /// </summary>
        /// <returns>True, if the data has been saved; false, otherwise.</returns>
        public bool Refresh()
        {
            if (NativeOlapApi.ServerRefresh(_store.ClientSlot, _serverHandle, _lastError))
            {
                _cubes.Invalid      = true;
                _dimensions.Invalid = true;
                return(true);
            }

            return(false);
        }