Example #1
0
 public override void ExecuteCmdlet()
 {
     this.ConfirmAction(
         this.Force.IsPresent,
         string.Format(CultureInfo.CurrentCulture, Resources.RemoveDscNodeWarning),
         string.Format(CultureInfo.CurrentCulture, Resources.RemoveDscNodeDescription, this.Id.ToString()),
         this.Id.ToString(),
         () =>
     {
         AutomationClient.DeleteDscNode(this.ResourceGroupName, this.AutomationAccountName, this.Id);
     });
 }