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); }