DryIoc resolver tracing ? #2691
-
Is there a way to trace the steps of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
In short Prism does not have a "Trace" mechanism on the Container. I'm not sure if DryIoc itself contains such functionality, perhaps @dadhi could answer that one. |
Beta Was this translation helpful? Give feedback.
-
DryIoc itself does discover assembies, it just loads the Types from whatever is passed to it. Regarding Tracing it does not support it. But there are other things that may help with diagnostics. You may try to |
Beta Was this translation helpful? Give feedback.
DryIoc itself does discover assembies, it just loads the Types from whatever is passed to it.
Regarding Tracing it does not support it. But there are other things that may help with diagnostics. You may try to
Resolve<LambdaExpression>(yourType)
to examine the object graph. Or callValidate(ServiceInfo.Of<YouType1>(), ...)
.