Пример #1
0
        /// <summary>
        /// Fetches updater information from the remote update service server. This method should run asynchronously.
        /// </summary>
        /// <returns></returns>
        private UpdaterInfo FetchUpdaterInfo()
        {
            RemoteServiceTasks service = new RemoteServiceTasks();

            return(service.FetchUpdaterInfo());
        }
Пример #2
0
        /// <summary>
        /// Fetches client information from the remote update service server. This method should
        /// run asynchronously.
        /// </summary>
        private ClientInfo[] FetchClients()
        {
            RemoteServiceTasks service = new RemoteServiceTasks();

            return(service.FetchClients());
        }