示例#1
0
文件: Pool.cs 项目: waynz0r/xenadmin
        public bool IsMasterUpgraded()
        {
            Host master = Helpers.GetMaster(this);

            foreach (var host in this.Connection.Cache.Hosts)
            {
                if (host.LongProductVersion() != master.LongProductVersion())
                {
                    return(true);
                }
            }
            return(false);
        }