Microsoft.Azure.Commands.Batch.RemoveBatchAccountCommand.DeleteAction C# (CSharp) Method

DeleteAction() private method

private DeleteAction ( string resGroupName, string accountName ) : void
resGroupName string
accountName string
return void
        private void DeleteAction(string resGroupName, string accountName)
        {
            WriteVerboseWithTimestamp(Resources.BeginMAMLCall, mamlCall);
            BatchClient.DeleteAccount(resGroupName, accountName);
            WriteVerboseWithTimestamp(Resources.EndMAMLCall, mamlCall);
        }
    }
RemoveBatchAccountCommand