Dynamic Sliding Windows, dynamic window Id in DynamicWindowAttribute

Hi!,

I am using a generic function to execute remoting jobs, and I added a dynamic sliding window to that function. I am dynamically retrieving the configuration for the throttling from database so I need to
determine the dynamicWindowId in the DynamicWindowAttribute dynamically, like in the example bellow:

        [DynamicWindow("{0}", "{1} ")]
        public static async Task ExecuteRemoting(
               string dynamicWindowId,
               string tenantId,
                other parameters...
            );

Currently Hangfire allows to determine the tenant dynamically, but the same does not work for the dynamicWindowId ("{0}")

Is there a way to determine the dynamicWindowId dynamically?