XenAdmin.Wizards.NewSRWizard_Pages.Frontends.LVMoHBA.NextText C# (CSharp) Method

NextText() public method

public NextText ( bool isLastPage ) : string
isLastPage bool
return string
        public override string NextText(bool isLastPage)
        {
            // for Dundee or greater connections, we have "Storage provisioning settings" page after this page, so the Next button should say "Next", not "Create"
            return Helpers.DundeeOrGreater(Connection) ?  Messages.WIZARD_BUTTON_NEXT : Messages.NEWSR_LVMOHBA_NEXT_TEXT;
        }