當前位置: 首頁>>代碼示例>>C#>>正文


C# Host.IsMaster方法代碼示例

本文整理匯總了C#中XenAPI.Host.IsMaster方法的典型用法代碼示例。如果您正苦於以下問題:C# Host.IsMaster方法的具體用法?C# Host.IsMaster怎麽用?C# Host.IsMaster使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XenAPI.Host的用法示例。


在下文中一共展示了Host.IsMaster方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: EnterMaintenanceMode

        private void EnterMaintenanceMode(Host host)
        {
            Pool pool = Helpers.GetPool(host.Connection);

            if (pool != null && pool.ha_enabled && host.IsMaster())
            {
                new ThreeButtonDialog(
                    new ThreeButtonDialog.Details(
                        SystemIcons.Error, 
                        String.Format(Messages.HA_CANNOT_EVACUATE_MASTER, 
                            Helpers.GetName(host).Ellipsise(Helpers.DEFAULT_NAME_TRIM_LENGTH)), 
                        Messages.XENCENTER)).ShowDialog(Parent);
            }
            else
            {
                MainWindowCommandInterface.ShowPerXenModelObjectWizard(host, new EvacuateHostDialog(host));
            }
        }
開發者ID:huizh,項目名稱:xenadmin,代碼行數:18,代碼來源:HostMaintenanceModeCommand.cs

示例2: HostCannotParticipateInPowerManagement

 private bool HostCannotParticipateInPowerManagement(Host host)
 {
     return host.IsMaster() || (string.IsNullOrEmpty(host.power_on_mode) && Helpers.MidnightRideOrGreater(_connection));
 }
開發者ID:agimofcarmen,項目名稱:xenadmin,代碼行數:4,代碼來源:WlbAutomationPage.cs

示例3: IsSlave

 protected static bool IsSlave(Host host)
 {
     return !host.IsMaster();
 }
開發者ID:ktz666,項目名稱:xenadmin,代碼行數:4,代碼來源:TabsAndMenus.cs

示例4: IsMaster

 protected static bool IsMaster(Host host)
 {
     return host.IsMaster();
 }
開發者ID:ktz666,項目名稱:xenadmin,代碼行數:4,代碼來源:TabsAndMenus.cs

示例5: DataGridViewRowUpgrade

 public DataGridViewRowUpgrade(Host host)
     : this()
 {
     Host = host;
     taskCell.Value = string.Format(Host.IsMaster() ? Messages.UPGRADE_POOL_MASTER : Messages.UPGRADE_SLAVE, host.Name);
     UpdateStatus(HostUpgradeState.NotUpgraded, Messages.NOT_UPGRADED);
 }
開發者ID:heiden-deng,項目名稱:xenadmin,代碼行數:7,代碼來源:RollingUpgradeUpgradePage.cs

示例6: CanExecute

 private static bool CanExecute(Host host)
 {
     bool disconnected = host.Connection != null && !host.Connection.IsConnected;
     return disconnected || host.IsMaster();
 }
開發者ID:ChrisH4rding,項目名稱:xenadmin,代碼行數:5,代碼來源:RemoveHostCommand.cs

示例7: HostCannotParticipateInPowerManagement

 private bool HostCannotParticipateInPowerManagement(Host host)
 {
     return host.IsMaster() || string.IsNullOrEmpty(host.power_on_mode);
 }
開發者ID:robhoes,項目名稱:xenadmin,代碼行數:4,代碼來源:WlbAutomationPage.cs


注:本文中的XenAPI.Host.IsMaster方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。