-
-
Notifications
You must be signed in to change notification settings - Fork 5
Description
This changelog should explain how to migrate
Originally posted by @ENikS in https://github.com/unitycontainer/unity/issues/313#issuecomment-617993501
Hi,
In reference to https://github.com/unitycontainer/unity/issues/313
That changelog did not help us. We've resolved one issue. However, we've not idea out addPolicies usage.
`
///
/// Called when [register].
///
/// The sender.
/// The instance containing the event data.
private void OnRegister(object sender, RegisterEventArgs e)
{
System.Diagnostics.Debug.Assert(false, "OnRegister");
if (e != null && e.TypeFrom != null && e.TypeFrom.IsInterface)
{
/*var interfaceInterceptor = new Interceptor();
interfaceInterceptor.AddPolicies(e.TypeFrom, e.TypeTo, e.Name, Context.Policies);
var interceptionBehavior = new InterceptionBehavior<LogMethodInterceptionBehavior>();
interceptionBehavior.AddPolicies(e.TypeFrom, e.TypeTo, e.Name, Context.Policies);*/
}
}
`
At the minute, AddPolicies is throwing compile time error stating Context.Policies is read-only.
Can you assist us in resolving the issue?
Thanks,
Amit