Open jhudler opened 2 years ago
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
Thanks for contacting us and your willingness to send a PR. For now we're not sure whether this will be a useful feature for a large number of customers. Hence we would like to keep this issue on our backlog to accumulate more feedback. Depending on the feedback we receive here in the future we'll choose either to do something here or will close this.
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
No response
Describe the solution you'd like
DynamicComponent
already has theInstance
property, enabling access to the rendered component instance.Is there anything against having such feature in
RazorView
component as well? Code modification proposal would be:Additional context
In my case, I need to access the rendered component instance after all parameters were set (for our centralized state preservation implementation). Creating my own router is a possibility, but I'll need to fallback to reflection to mimic today's RouteView behavior (e.g.: the
QueryParameterValueSupplier
is internal and my approach will not be not future-safe).If suggestion approved, I can provide a pull request.