/// <summary> /// Executes the remove workflow command /// </summary> public override void ExecuteCmdlet() { base.ExecuteCmdlet(); ConfirmAction(Force.IsPresent, string.Format(CultureInfo.InvariantCulture, Properties.Resource.RemoveLogicAppWarning, this.Name), Properties.Resource.RemoveLogicAppMessage, Name, () => { LogicAppClient.RemoveWorkflow(ResourceGroupName, Name); }); }